ETH Price: $3,089.12 (+0.89%)
Gas: 6 Gwei

Token

 

Overview

Max Total Supply

803

Holders

210

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x60cebfa10c7eeb35ae1fdd01a4df7fad0a51f6f7
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:
EtchedNFT1155

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : EtchedNFT1155.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;

/// @title NFT contract for Etched based on OpenZeppelin's ERC1155 implementation
/// @author Linum Labs
/// @dev Includes implementation of ERC2981 (Royalty Standard)

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165Storage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "./interfaces/IERC2981.sol";

contract EtchedNFT1155 is ERC1155, ERC165Storage, Ownable, IERC2981 {
    using Counters for Counters.Counter;

    Counters.Counter private _id;

    // royalty rate vars
    // scale: how many zeroes should follow the royalty rate
    // in the default values, there would be a 10% tax on a 18 decimal asset
    uint256 private rate = 10_000;
    uint256 private scale = 1e5;

    mapping(uint256 => string) private _tokenURIs;
    mapping(uint256 => address) private _creators;
    mapping(uint256 => uint256) private _totalSupply;
    // id => user => if they're a minter
    mapping(address => bool) private minters;

    event TokenURI(
        uint256 indexed id,
        string tokenUri,
        uint256 amount,
        address creator,
        address owner
    );
    event RoyaltyRateSet(uint256 indexed rate, uint256 indexed scale);
    event MinterUpdated(
        address indexed minter,
        bool indexed canMint,
        string userIdentifier
    );
    event CapSet(uint256 indexed id, uint256 indexed cap);

    constructor() ERC1155("") {
        ERC165Storage._registerInterface(type(IERC2981).interfaceId);
        ERC165Storage._registerInterface(type(IERC1155).interfaceId);
        ERC165Storage._registerInterface(type(IERC1155MetadataURI).interfaceId);

        // ids 1,2 reserved for airdrop
        _id.increment();
        _id.increment();

        // hardcoding for HDA airdrop
        _creators[1] = address(0xeb7b2f62BFBac835CCb3e1ddE38CE79D89a8445C);
        _tokenURIs[1] = "QmT4RVQwvY8tghLa2HzZEFvEGxNRsZf3Fxb8byooMK6Ff4";

        // hardcoding for founder's key
        _creators[2] = address(0xeb7b2f62BFBac835CCb3e1ddE38CE79D89a8445C);
        _tokenURIs[2] = "QmWrhHtZLEkUg46MjjkyhYW8uuijPm89842CcRTeHxUJ6j";
    }

    /// @notice Queries the URI of an NFT
    /// @param id the index of the NFT to query
    /// @return the URI string of the NFT
    function uri(uint256 id) public view override returns (string memory) {
        return _tokenURIs[id];
    }

    /// @notice Queries the supply of a particular NFT
    /// @param id the index of the NFT to query the supply of
    /// @return the total number of NFTs in circulation for this NFT
    function totalSupply(uint256 id) external view returns (uint256) {
        require(id <= _id.current(), "id has not been minted");
        return _totalSupply[id];
    }

    /// @notice Given an NFT and the amount of a price, returns pertinent royalty information
    /// @dev This function is specified in EIP-2981
    /// @param id the index of the NFT to calculate royalties on
    /// @param _salePrice the amount the NFT is being sold for
    /// @return the address to send the royalties to, and the amount to send
    function royaltyInfo(uint256 id, uint256 _salePrice)
        external
        view
        override
        returns (address, uint256)
    {
        require(_exists(id), "royaltyInfo: nonexistent token");
        uint256 royaltyAmount = (_salePrice * rate) / scale;
        return (getCreator(id), royaltyAmount);
    }

    /// @notice gets the global royalty rate
    /// @dev divide rate by scale to get the percentage taken as royalties
    /// @return a tuple of (rate, scale)
    function getRoyaltyRate() external view returns (uint256, uint256) {
        return (rate, scale);
    }

    /// @notice Queries if an address is allowed to mint
    /// @param minter the address to check
    /// @return bool if the address is a minter or not
    function isMinter(address minter) external view returns (bool) {
        return minters[minter];
    }

    /// @notice gets the address of a creator for an NFT
    /// @dev The first 450 tokenIds are reserved for the HDA airdrop
    /// @param id the index of the NFT to return the creator of
    /// @return the address of the creator
    function getCreator(uint256 id) public view returns (address) {
        require(_exists(id), "getCreator: nonexistent token");
        return _creators[id];
    }

    /// @notice Sets the global variables relating to royalties
    /// @param _rate the amount, that when adjusted with the scale, represents the royalty rate
    /// @param _scale the amount of decimal places to scale the rate when applying
    /// example: given an 18-decimal currency, a rate of 5 with a scale of 1e16 would be 5%
    /// since this is 0.05 to an 18-decimal currency
    function setRoyaltyRate(uint256 _rate, uint256 _scale) external onlyOwner {
        rate = _rate;
        scale = _scale;
        emit RoyaltyRateSet(_rate, _scale);
    }

    /// @notice Allows contract owner to add or remove minters to a specific id
    /// @param minter the address to update
    /// @param canMint the status the address should be set to
    function setMinter(
        address minter,
        bool canMint,
        string calldata userIdentifier
    ) external onlyOwner {
        minters[minter] = canMint;
        emit MinterUpdated(minter, canMint, userIdentifier);
    }

    /// @notice Allows a whitelisted address to mint a single NFT
    /// @param creator the address to be recorded as the NFT's creator
    /// @param to the address to mint the NFT to
    /// @param amount the amount of NFTs to mint
    /// @param tokenUri the IPFS hash of the NFT metadata
    function mint(
        address creator,
        address to,
        uint256 amount,
        string memory tokenUri
    ) external {
        _id.increment();
        uint256 id = _id.current();
        require(
            minters[msg.sender] == true || msg.sender == owner(),
            "unauthorized minter"
        );
        _mint(to, id, amount, "");
        _totalSupply[id] = amount;
        _tokenURIs[id] = tokenUri;
        _creators[id] = creator;
        emit TokenURI(id, tokenUri, amount, creator, to);
    }

    /// @notice batch mint function
    /// @dev can only be called by owner, will mint all NFTs to one address for distribution
    /// @param to the address to mint all NFTs to
    /// @param creators an ordered array of the addresses to list as creators for each NFT
    /// @param amounts an ordered array of the amount of each NFT to mint
    /// @param uris the uri of each NFT being minted
    function mintBatch(
        address to,
        address[] memory creators,
        uint256[] memory amounts,
        string[] memory uris
    ) external onlyOwner {
        uint256 len = amounts.length;
        uint256[] memory ids = new uint256[](len);
        for (uint256 i = 0; i < len; i++) {
            _id.increment();
            uint256 tokenId = _id.current();
            ids[i] = tokenId;
        }
        _mintBatch(to, ids, amounts, "");
        for (uint256 i = 0; i < len; i++) {
            _tokenURIs[ids[i]] = uris[i];
            _creators[ids[i]] = creators[i];
            _totalSupply[ids[i]] = amounts[i];
            emit TokenURI(ids[i], uris[i], amounts[i], _creators[ids[i]], to);
        }
    }

    /// @notice Bespoke function for airdropping the HDA NFT and founder's key
    /// @dev Cycles through an array of addresses and mints
    /// @param id 1 (HDA) or 2(Founder's Key)
    /// @param to an array of addresses to send the NFT to
    /// @param amount the amount to send to the corresponding address in `to`
    function airdrop(
        uint256 id,
        address[] memory to,
        uint256[] memory amount
    ) external onlyOwner {
        require(id == 1 || id == 2, "only ids 1,2 can be airdropped");
        // HDA cap: 450, founder's key cap: 75
        uint256 cap = id == 1 ? 450 : 75;
        uint256 len = to.length;
        require(len == amount.length, "arrays must have equal length");
        for (uint256 i = 0; i < len; i++) {
            uint256 amt = amount[i];
            require(_totalSupply[id] + amt <= cap, "airdrop exceeds cap");
            address _to = to[i];
            _totalSupply[id] += amt;
            _mint(_to, id, amt, "");
        }
    }

    /// @dev returns true if this contract implements the interface defined by `interfaceId`
    /// @dev for more on interface ids, see https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165Storage, IERC165, ERC1155)
        returns (bool)
    {
        return ERC165Storage.supportsInterface(interfaceId);
    }

    function _exists(uint256 id) internal view returns (bool) {
        return
            _totalSupply[id] > 0 ||
            _creators[id] != address(0) ||
            keccak256(bytes(_tokenURIs[id])) != "";
    }
}

File 2 of 13 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 3 of 13 : ERC165Storage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC165.sol";

/**
 * @dev Storage based implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165Storage is ERC165 {
    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return super.supportsInterface(interfaceId) || _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

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

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 13 : Counters.sol
// SPDX-License-Identifier: MIT

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 6 of 13 : IERC2981.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

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

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

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

File 7 of 13 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 8 of 13 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 13 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        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 11 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"cap","type":"uint256"}],"name":"CapSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":true,"internalType":"bool","name":"canMint","type":"bool"},{"indexed":false,"internalType":"string","name":"userIdentifier","type":"string"}],"name":"MinterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"scale","type":"uint256"}],"name":"RoyaltyRateSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"string","name":"tokenUri","type":"string"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"creator","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"TokenURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getCreator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRoyaltyRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"creator","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"tokenUri","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"address[]","name":"creators","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"string[]","name":"uris","type":"string[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"address","name":"minter","type":"address"},{"internalType":"bool","name":"canMint","type":"bool"},{"internalType":"string","name":"userIdentifier","type":"string"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rate","type":"uint256"},{"internalType":"uint256","name":"_scale","type":"uint256"}],"name":"setRoyaltyRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

6080604052612710600655620186a06007553480156200001e57600080fd5b506040518060200160405280600081525062000040816200028d60201b60201c565b506200006162000055620002a960201b60201c565b620002b160201b60201c565b620000977f2a55205a000000000000000000000000000000000000000000000000000000006200037760201b6200170a1760201c565b620000cd7fd9b67a26000000000000000000000000000000000000000000000000000000006200037760201b6200170a1760201c565b620001037f0e89341c000000000000000000000000000000000000000000000000000000006200037760201b6200170a1760201c565b6200011a60056200045060201b620017e01760201c565b6200013160056200045060201b620017e01760201c565b73eb7b2f62bfbac835ccb3e1dde38ce79d89a8445c600960006001815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280602e815260200162004e3d602e913960086000600181526020019081526020016000209080519060200190620001db92919062000466565b5073eb7b2f62bfbac835ccb3e1dde38ce79d89a8445c600960006002815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280602e815260200162004e0f602e9139600860006002815260200190815260200160002090805190602001906200028692919062000466565b50620005fe565b8060029080519060200190620002a592919062000466565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620003e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003da9062000577565b60405180910390fd5b600160036000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6001816000016000828254019250508190555050565b8280546200047490620005c8565b90600052602060002090601f016020900481019282620004985760008555620004e4565b82601f10620004b357805160ff1916838001178555620004e4565b82800160010185558215620004e4579182015b82811115620004e3578251825591602001919060010190620004c6565b5b509050620004f39190620004f7565b5090565b5b8082111562000512576000816000905550600101620004f8565b5090565b600082825260208201905092915050565b7f4552433136353a20696e76616c696420696e7465726661636520696400000000600082015250565b60006200055f601c8362000516565b91506200056c8262000527565b602082019050919050565b60006020820190508181036000830152620005928162000550565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005e157607f821691505b60208210811415620005f857620005f762000599565b5b50919050565b614801806200060e6000396000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c80638da5cb5b116100b8578063cc1c52411161007c578063cc1c52411461035f578063d48e638a1461037b578063d5516e7f146103ab578063e985e9c5146103c7578063f242432a146103f7578063f2fde38b1461041357610136565b80638da5cb5b146102a9578063a22cb465146102c7578063aa271e1a146102e3578063b85cbc7914610313578063bd85b0391461032f57610136565b80633adb52db116100ff5780633adb52db146102185780634e1273f4146102345780636c94ff1c14610264578063715018a61461028057806386cca6f81461028a57610136565b8062fdd58e1461013b57806301ffc9a71461016b5780630e89341c1461019b5780632a55205a146101cb5780632eb2c2d6146101fc575b600080fd5b61015560048036038101906101509190612a2d565b61042f565b6040516101629190612a7c565b60405180910390f35b61018560048036038101906101809190612aef565b6104f8565b6040516101929190612b37565b60405180910390f35b6101b560048036038101906101b09190612b52565b61050a565b6040516101c29190612c18565b60405180910390f35b6101e560048036038101906101e09190612c3a565b6105af565b6040516101f3929190612c89565b60405180910390f35b61021660048036038101906102119190612eaf565b61062f565b005b610232600480360381019061022d9190612c3a565b6106d0565b005b61024e60048036038101906102499190613041565b61078c565b60405161025b9190613177565b60405180910390f35b61027e60048036038101906102799190613220565b6108a5565b005b6102886109d1565b005b610292610a59565b6040516102a0929190613294565b60405180910390f35b6102b1610a6a565b6040516102be91906132bd565b60405180910390f35b6102e160048036038101906102dc91906132d8565b610a94565b005b6102fd60048036038101906102f89190613318565b610c15565b60405161030a9190612b37565b60405180910390f35b61032d600480360381019061032891906133e6565b610c6b565b005b61034960048036038101906103449190612b52565b610e45565b6040516103569190612a7c565b60405180910390f35b6103796004803603810190610374919061354a565b610eae565b005b61039560048036038101906103909190612b52565b61121e565b6040516103a291906132bd565b60405180910390f35b6103c560048036038101906103c09190613605565b6112a3565b005b6103e160048036038101906103dc9190613690565b6114dd565b6040516103ee9190612b37565b60405180910390f35b610411600480360381019061040c91906136d0565b611571565b005b61042d60048036038101906104289190613318565b611612565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610497906137d9565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610503826117f6565b9050919050565b606060086000838152602001908152602001600020805461052a90613828565b80601f016020809104026020016040519081016040528092919081815260200182805461055690613828565b80156105a35780601f10610578576101008083540402835291602001916105a3565b820191906000526020600020905b81548152906001019060200180831161058657829003601f168201915b50505050509050919050565b6000806105bb8461186e565b6105fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f1906138a6565b60405180910390fd5b60006007546006548561060d91906138f5565b610617919061397e565b90506106228561121e565b8192509250509250929050565b61063761192b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061067d575061067c8561067761192b565b6114dd565b5b6106bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b390613a21565b60405180910390fd5b6106c98585858585611933565b5050505050565b6106d861192b565b73ffffffffffffffffffffffffffffffffffffffff166106f6610a6a565b73ffffffffffffffffffffffffffffffffffffffff161461074c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074390613a8d565b60405180910390fd5b816006819055508060078190555080827faf2bf5ffa0f4710dd8f6649727669c31ed788a40649ac78c9bc9c775a2d2d02860405160405180910390a35050565b606081518351146107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990613b1f565b60405180910390fd5b6000835167ffffffffffffffff8111156107ef576107ee612cb7565b5b60405190808252806020026020018201604052801561081d5781602001602082028036833780820191505090505b50905060005b845181101561089a5761086a85828151811061084257610841613b3f565b5b602002602001015185838151811061085d5761085c613b3f565b5b602002602001015161042f565b82828151811061087d5761087c613b3f565b5b6020026020010181815250508061089390613b6e565b9050610823565b508091505092915050565b6108ad61192b565b73ffffffffffffffffffffffffffffffffffffffff166108cb610a6a565b73ffffffffffffffffffffffffffffffffffffffff1614610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890613a8d565b60405180910390fd5b82600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508215158473ffffffffffffffffffffffffffffffffffffffff167f71acd54c8414b6dfaf75890da1f8da4f00cb49e599b5892e56d7a809fe2b978384846040516109c3929190613be4565b60405180910390a350505050565b6109d961192b565b73ffffffffffffffffffffffffffffffffffffffff166109f7610a6a565b73ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490613a8d565b60405180910390fd5b610a576000611c47565b565b600080600654600754915091509091565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff16610ab361192b565b73ffffffffffffffffffffffffffffffffffffffff161415610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190613c7a565b60405180910390fd5b8060016000610b1761192b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610bc461192b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c099190612b37565b60405180910390a35050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610c7560056117e0565b6000610c816005611d0d565b905060011515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151480610d145750610ce5610a6a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90613ce6565b60405180910390fd5b610d6e84828560405180602001604052806000815250611d1b565b82600a60008381526020019081526020016000208190555081600860008381526020019081526020016000209080519060200190610dad9291906128e2565b50846009600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550807f07dbea1c6295f49f3aad2c62f7130320d989206faf79a4128cc6e1e11a5ba03d83858888604051610e369493929190613d06565b60405180910390a25050505050565b6000610e516005611d0d565b821115610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90613d9e565b60405180910390fd5b600a6000838152602001908152602001600020549050919050565b610eb661192b565b73ffffffffffffffffffffffffffffffffffffffff16610ed4610a6a565b73ffffffffffffffffffffffffffffffffffffffff1614610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190613a8d565b60405180910390fd5b60008251905060008167ffffffffffffffff811115610f4c57610f4b612cb7565b5b604051908082528060200260200182016040528015610f7a5781602001602082028036833780820191505090505b50905060005b82811015610fd457610f9260056117e0565b6000610f9e6005611d0d565b905080838381518110610fb457610fb3613b3f565b5b602002602001018181525050508080610fcc90613b6e565b915050610f80565b50610ff086828660405180602001604052806000815250611eb1565b60005b828110156112155783818151811061100e5761100d613b3f565b5b60200260200101516008600084848151811061102d5761102c613b3f565b5b6020026020010151815260200190815260200160002090805190602001906110569291906128e2565b5085818151811061106a57611069613b3f565b5b60200260200101516009600084848151811061108957611088613b3f565b5b6020026020010151815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508481815181106110f0576110ef613b3f565b5b6020026020010151600a600084848151811061110f5761110e613b3f565b5b602002602001015181526020019081526020016000208190555081818151811061113c5761113b613b3f565b5b60200260200101517f07dbea1c6295f49f3aad2c62f7130320d989206faf79a4128cc6e1e11a5ba03d85838151811061117857611177613b3f565b5b602002602001015187848151811061119357611192613b3f565b5b6020026020010151600960008787815181106111b2576111b1613b3f565b5b6020026020010151815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168b6040516111fa9493929190613d06565b60405180910390a2808061120d90613b6e565b915050610ff3565b50505050505050565b60006112298261186e565b611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90613e0a565b60405180910390fd5b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6112ab61192b565b73ffffffffffffffffffffffffffffffffffffffff166112c9610a6a565b73ffffffffffffffffffffffffffffffffffffffff161461131f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131690613a8d565b60405180910390fd5b600183148061132e5750600283145b61136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490613e76565b60405180910390fd5b60006001841461137e57604b611382565b6101c25b61ffff169050600083519050825181146113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890613ee2565b60405180910390fd5b60005b818110156114d55760008482815181106113f1576113f0613b3f565b5b602002602001015190508381600a60008a81526020019081526020016000205461141b9190613f02565b111561145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145390613fa4565b60405180910390fd5b600086838151811061147157611470613b3f565b5b6020026020010151905081600a60008a8152602001908152602001600020600082825461149e9190613f02565b925050819055506114c081898460405180602001604052806000815250611d1b565b505080806114cd90613b6e565b9150506113d4565b505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61157961192b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806115bf57506115be856115b961192b565b6114dd565b5b6115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590614036565b60405180910390fd5b61160b85858585856120cf565b5050505050565b61161a61192b565b73ffffffffffffffffffffffffffffffffffffffff16611638610a6a565b73ffffffffffffffffffffffffffffffffffffffff161461168e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168590613a8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f5906140c8565b60405180910390fd5b61170781611c47565b50565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a90614134565b60405180910390fd5b600160036000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6001816000016000828254019250508190555050565b600061180182612351565b80611867575060036000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff165b9050919050565b600080600a60008481526020019081526020016000205411806118f15750600073ffffffffffffffffffffffffffffffffffffffff166009600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80611924575060006008600084815260200190815260200160002060405161191991906141f3565b604051809103902014155b9050919050565b600033905090565b8151835114611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e9061427c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de9061430e565b60405180910390fd5b60006119f161192b565b9050611a01818787878787612433565b60005b8451811015611bb2576000858281518110611a2257611a21613b3f565b5b602002602001015190506000858381518110611a4157611a40613b3f565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad9906143a0565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b979190613f02565b9250508190555050505080611bab90613b6e565b9050611a04565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c299291906143c0565b60405180910390a4611c3f81878787878761243b565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290614469565b60405180910390fd5b6000611d9561192b565b9050611db681600087611da788612613565b611db088612613565b87612433565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e159190613f02565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611e93929190613294565b60405180910390a4611eaa8160008787878761268d565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890614469565b60405180910390fd5b8151835114611f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5c9061427c565b60405180910390fd5b6000611f6f61192b565b9050611f8081600087878787612433565b60005b845181101561203957838181518110611f9f57611f9e613b3f565b5b6020026020010151600080878481518110611fbd57611fbc613b3f565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461201f9190613f02565b92505081905550808061203190613b6e565b915050611f83565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516120b19291906143c0565b60405180910390a46120c88160008787878761243b565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561213f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121369061430e565b60405180910390fd5b600061214961192b565b905061216981878761215a88612613565b61216388612613565b87612433565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f7906143a0565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b59190613f02565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612332929190613294565b60405180910390a461234882888888888861268d565b50505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061241c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061242c575061242b82612865565b5b9050919050565b505050505050565b61245a8473ffffffffffffffffffffffffffffffffffffffff166128cf565b1561260b578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016124a09594939291906144de565b6020604051808303816000875af19250505080156124dc57506040513d601f19601f820116820180604052508101906124d9919061455b565b60015b612582576124e8614595565b806308c379a0141561254557506124fd6145b7565b806125085750612547565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c9190612c18565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612579906146bf565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090614751565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561263257612631612cb7565b5b6040519080825280602002602001820160405280156126605781602001602082028036833780820191505090505b509050828160008151811061267857612677613b3f565b5b60200260200101818152505080915050919050565b6126ac8473ffffffffffffffffffffffffffffffffffffffff166128cf565b1561285d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016126f2959493929190614771565b6020604051808303816000875af192505050801561272e57506040513d601f19601f8201168201806040525081019061272b919061455b565b60015b6127d45761273a614595565b806308c379a01415612797575061274f6145b7565b8061275a5750612799565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278e9190612c18565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cb906146bf565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461285b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285290614751565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080823b905060008111915050919050565b8280546128ee90613828565b90600052602060002090601f0160209004810192826129105760008555612957565b82601f1061292957805160ff1916838001178555612957565b82800160010185558215612957579182015b8281111561295657825182559160200191906001019061293b565b5b5090506129649190612968565b5090565b5b80821115612981576000816000905550600101612969565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129c482612999565b9050919050565b6129d4816129b9565b81146129df57600080fd5b50565b6000813590506129f1816129cb565b92915050565b6000819050919050565b612a0a816129f7565b8114612a1557600080fd5b50565b600081359050612a2781612a01565b92915050565b60008060408385031215612a4457612a4361298f565b5b6000612a52858286016129e2565b9250506020612a6385828601612a18565b9150509250929050565b612a76816129f7565b82525050565b6000602082019050612a916000830184612a6d565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612acc81612a97565b8114612ad757600080fd5b50565b600081359050612ae981612ac3565b92915050565b600060208284031215612b0557612b0461298f565b5b6000612b1384828501612ada565b91505092915050565b60008115159050919050565b612b3181612b1c565b82525050565b6000602082019050612b4c6000830184612b28565b92915050565b600060208284031215612b6857612b6761298f565b5b6000612b7684828501612a18565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bb9578082015181840152602081019050612b9e565b83811115612bc8576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bea82612b7f565b612bf48185612b8a565b9350612c04818560208601612b9b565b612c0d81612bce565b840191505092915050565b60006020820190508181036000830152612c328184612bdf565b905092915050565b60008060408385031215612c5157612c5061298f565b5b6000612c5f85828601612a18565b9250506020612c7085828601612a18565b9150509250929050565b612c83816129b9565b82525050565b6000604082019050612c9e6000830185612c7a565b612cab6020830184612a6d565b9392505050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612cef82612bce565b810181811067ffffffffffffffff82111715612d0e57612d0d612cb7565b5b80604052505050565b6000612d21612985565b9050612d2d8282612ce6565b919050565b600067ffffffffffffffff821115612d4d57612d4c612cb7565b5b602082029050602081019050919050565b600080fd5b6000612d76612d7184612d32565b612d17565b90508083825260208201905060208402830185811115612d9957612d98612d5e565b5b835b81811015612dc25780612dae8882612a18565b845260208401935050602081019050612d9b565b5050509392505050565b600082601f830112612de157612de0612cb2565b5b8135612df1848260208601612d63565b91505092915050565b600080fd5b600067ffffffffffffffff821115612e1a57612e19612cb7565b5b612e2382612bce565b9050602081019050919050565b82818337600083830152505050565b6000612e52612e4d84612dff565b612d17565b905082815260208101848484011115612e6e57612e6d612dfa565b5b612e79848285612e30565b509392505050565b600082601f830112612e9657612e95612cb2565b5b8135612ea6848260208601612e3f565b91505092915050565b600080600080600060a08688031215612ecb57612eca61298f565b5b6000612ed9888289016129e2565b9550506020612eea888289016129e2565b945050604086013567ffffffffffffffff811115612f0b57612f0a612994565b5b612f1788828901612dcc565b935050606086013567ffffffffffffffff811115612f3857612f37612994565b5b612f4488828901612dcc565b925050608086013567ffffffffffffffff811115612f6557612f64612994565b5b612f7188828901612e81565b9150509295509295909350565b600067ffffffffffffffff821115612f9957612f98612cb7565b5b602082029050602081019050919050565b6000612fbd612fb884612f7e565b612d17565b90508083825260208201905060208402830185811115612fe057612fdf612d5e565b5b835b818110156130095780612ff588826129e2565b845260208401935050602081019050612fe2565b5050509392505050565b600082601f83011261302857613027612cb2565b5b8135613038848260208601612faa565b91505092915050565b600080604083850312156130585761305761298f565b5b600083013567ffffffffffffffff81111561307657613075612994565b5b61308285828601613013565b925050602083013567ffffffffffffffff8111156130a3576130a2612994565b5b6130af85828601612dcc565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130ee816129f7565b82525050565b600061310083836130e5565b60208301905092915050565b6000602082019050919050565b6000613124826130b9565b61312e81856130c4565b9350613139836130d5565b8060005b8381101561316a57815161315188826130f4565b975061315c8361310c565b92505060018101905061313d565b5085935050505092915050565b600060208201905081810360008301526131918184613119565b905092915050565b6131a281612b1c565b81146131ad57600080fd5b50565b6000813590506131bf81613199565b92915050565b600080fd5b60008083601f8401126131e0576131df612cb2565b5b8235905067ffffffffffffffff8111156131fd576131fc6131c5565b5b60208301915083600182028301111561321957613218612d5e565b5b9250929050565b6000806000806060858703121561323a5761323961298f565b5b6000613248878288016129e2565b9450506020613259878288016131b0565b935050604085013567ffffffffffffffff81111561327a57613279612994565b5b613286878288016131ca565b925092505092959194509250565b60006040820190506132a96000830185612a6d565b6132b66020830184612a6d565b9392505050565b60006020820190506132d26000830184612c7a565b92915050565b600080604083850312156132ef576132ee61298f565b5b60006132fd858286016129e2565b925050602061330e858286016131b0565b9150509250929050565b60006020828403121561332e5761332d61298f565b5b600061333c848285016129e2565b91505092915050565b600067ffffffffffffffff8211156133605761335f612cb7565b5b61336982612bce565b9050602081019050919050565b600061338961338484613345565b612d17565b9050828152602081018484840111156133a5576133a4612dfa565b5b6133b0848285612e30565b509392505050565b600082601f8301126133cd576133cc612cb2565b5b81356133dd848260208601613376565b91505092915050565b60008060008060808587031215613400576133ff61298f565b5b600061340e878288016129e2565b945050602061341f878288016129e2565b935050604061343087828801612a18565b925050606085013567ffffffffffffffff81111561345157613450612994565b5b61345d878288016133b8565b91505092959194509250565b600067ffffffffffffffff82111561348457613483612cb7565b5b602082029050602081019050919050565b60006134a86134a384613469565b612d17565b905080838252602082019050602084028301858111156134cb576134ca612d5e565b5b835b8181101561351257803567ffffffffffffffff8111156134f0576134ef612cb2565b5b8086016134fd89826133b8565b855260208501945050506020810190506134cd565b5050509392505050565b600082601f83011261353157613530612cb2565b5b8135613541848260208601613495565b91505092915050565b600080600080608085870312156135645761356361298f565b5b6000613572878288016129e2565b945050602085013567ffffffffffffffff81111561359357613592612994565b5b61359f87828801613013565b935050604085013567ffffffffffffffff8111156135c0576135bf612994565b5b6135cc87828801612dcc565b925050606085013567ffffffffffffffff8111156135ed576135ec612994565b5b6135f98782880161351c565b91505092959194509250565b60008060006060848603121561361e5761361d61298f565b5b600061362c86828701612a18565b935050602084013567ffffffffffffffff81111561364d5761364c612994565b5b61365986828701613013565b925050604084013567ffffffffffffffff81111561367a57613679612994565b5b61368686828701612dcc565b9150509250925092565b600080604083850312156136a7576136a661298f565b5b60006136b5858286016129e2565b92505060206136c6858286016129e2565b9150509250929050565b600080600080600060a086880312156136ec576136eb61298f565b5b60006136fa888289016129e2565b955050602061370b888289016129e2565b945050604061371c88828901612a18565b935050606061372d88828901612a18565b925050608086013567ffffffffffffffff81111561374e5761374d612994565b5b61375a88828901612e81565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006137c3602b83612b8a565b91506137ce82613767565b604082019050919050565b600060208201905081810360008301526137f2816137b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061384057607f821691505b60208210811415613854576138536137f9565b5b50919050565b7f726f79616c7479496e666f3a206e6f6e6578697374656e7420746f6b656e0000600082015250565b6000613890601e83612b8a565b915061389b8261385a565b602082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613900826129f7565b915061390b836129f7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613944576139436138c6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613989826129f7565b9150613994836129f7565b9250826139a4576139a361394f565b5b828204905092915050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613a0b603283612b8a565b9150613a16826139af565b604082019050919050565b60006020820190508181036000830152613a3a816139fe565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a77602083612b8a565b9150613a8282613a41565b602082019050919050565b60006020820190508181036000830152613aa681613a6a565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613b09602983612b8a565b9150613b1482613aad565b604082019050919050565b60006020820190508181036000830152613b3881613afc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613b79826129f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bac57613bab6138c6565b5b600182019050919050565b6000613bc38385612b8a565b9350613bd0838584612e30565b613bd983612bce565b840190509392505050565b60006020820190508181036000830152613bff818486613bb7565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000613c64602983612b8a565b9150613c6f82613c08565b604082019050919050565b60006020820190508181036000830152613c9381613c57565b9050919050565b7f756e617574686f72697a6564206d696e74657200000000000000000000000000600082015250565b6000613cd0601383612b8a565b9150613cdb82613c9a565b602082019050919050565b60006020820190508181036000830152613cff81613cc3565b9050919050565b60006080820190508181036000830152613d208187612bdf565b9050613d2f6020830186612a6d565b613d3c6040830185612c7a565b613d496060830184612c7a565b95945050505050565b7f696420686173206e6f74206265656e206d696e74656400000000000000000000600082015250565b6000613d88601683612b8a565b9150613d9382613d52565b602082019050919050565b60006020820190508181036000830152613db781613d7b565b9050919050565b7f67657443726561746f723a206e6f6e6578697374656e7420746f6b656e000000600082015250565b6000613df4601d83612b8a565b9150613dff82613dbe565b602082019050919050565b60006020820190508181036000830152613e2381613de7565b9050919050565b7f6f6e6c792069647320312c322063616e2062652061697264726f707065640000600082015250565b6000613e60601e83612b8a565b9150613e6b82613e2a565b602082019050919050565b60006020820190508181036000830152613e8f81613e53565b9050919050565b7f617272617973206d757374206861766520657175616c206c656e677468000000600082015250565b6000613ecc601d83612b8a565b9150613ed782613e96565b602082019050919050565b60006020820190508181036000830152613efb81613ebf565b9050919050565b6000613f0d826129f7565b9150613f18836129f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f4d57613f4c6138c6565b5b828201905092915050565b7f61697264726f7020657863656564732063617000000000000000000000000000600082015250565b6000613f8e601383612b8a565b9150613f9982613f58565b602082019050919050565b60006020820190508181036000830152613fbd81613f81565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614020602983612b8a565b915061402b82613fc4565b604082019050919050565b6000602082019050818103600083015261404f81614013565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140b2602683612b8a565b91506140bd82614056565b604082019050919050565b600060208201905081810360008301526140e1816140a5565b9050919050565b7f4552433136353a20696e76616c696420696e7465726661636520696400000000600082015250565b600061411e601c83612b8a565b9150614129826140e8565b602082019050919050565b6000602082019050818103600083015261414d81614111565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461418181613828565b61418b8186614154565b945060018216600081146141a657600181146141b7576141ea565b60ff198316865281860193506141ea565b6141c08561415f565b60005b838110156141e2578154818901526001820191506020810190506141c3565b838801955050505b50505092915050565b60006141ff8284614174565b915081905092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614266602883612b8a565b91506142718261420a565b604082019050919050565b6000602082019050818103600083015261429581614259565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142f8602583612b8a565b91506143038261429c565b604082019050919050565b60006020820190508181036000830152614327816142eb565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061438a602a83612b8a565b91506143958261432e565b604082019050919050565b600060208201905081810360008301526143b98161437d565b9050919050565b600060408201905081810360008301526143da8185613119565b905081810360208301526143ee8184613119565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614453602183612b8a565b915061445e826143f7565b604082019050919050565b6000602082019050818103600083015261448281614446565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006144b082614489565b6144ba8185614494565b93506144ca818560208601612b9b565b6144d381612bce565b840191505092915050565b600060a0820190506144f36000830188612c7a565b6145006020830187612c7a565b81810360408301526145128186613119565b905081810360608301526145268185613119565b9050818103608083015261453a81846144a5565b90509695505050505050565b60008151905061455581612ac3565b92915050565b6000602082840312156145715761457061298f565b5b600061457f84828501614546565b91505092915050565b60008160e01c9050919050565b600060033d11156145b45760046000803e6145b1600051614588565b90505b90565b600060443d10156145c75761464a565b6145cf612985565b60043d036004823e80513d602482011167ffffffffffffffff821117156145f757505061464a565b808201805167ffffffffffffffff811115614615575050505061464a565b80602083010160043d03850181111561463257505050505061464a565b61464182602001850186612ce6565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006146a9603483612b8a565b91506146b48261464d565b604082019050919050565b600060208201905081810360008301526146d88161469c565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061473b602883612b8a565b9150614746826146df565b604082019050919050565b6000602082019050818103600083015261476a8161472e565b9050919050565b600060a0820190506147866000830188612c7a565b6147936020830187612c7a565b6147a06040830186612a6d565b6147ad6060830185612a6d565b81810360808301526147bf81846144a5565b9050969550505050505056fea26469706673582212203fd692cb045f6c773b86f16e27fd521080cc4fdaf81510756c0585c895d2210e64736f6c634300080a0033516d57726848745a4c456b556734364d6a6a6b79685957387575696a506d383938343243635254654878554a366a516d5434525651777659387467684c6132487a5a4546764547784e52735a66334678623862796f6f4d4b36466634

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101365760003560e01c80638da5cb5b116100b8578063cc1c52411161007c578063cc1c52411461035f578063d48e638a1461037b578063d5516e7f146103ab578063e985e9c5146103c7578063f242432a146103f7578063f2fde38b1461041357610136565b80638da5cb5b146102a9578063a22cb465146102c7578063aa271e1a146102e3578063b85cbc7914610313578063bd85b0391461032f57610136565b80633adb52db116100ff5780633adb52db146102185780634e1273f4146102345780636c94ff1c14610264578063715018a61461028057806386cca6f81461028a57610136565b8062fdd58e1461013b57806301ffc9a71461016b5780630e89341c1461019b5780632a55205a146101cb5780632eb2c2d6146101fc575b600080fd5b61015560048036038101906101509190612a2d565b61042f565b6040516101629190612a7c565b60405180910390f35b61018560048036038101906101809190612aef565b6104f8565b6040516101929190612b37565b60405180910390f35b6101b560048036038101906101b09190612b52565b61050a565b6040516101c29190612c18565b60405180910390f35b6101e560048036038101906101e09190612c3a565b6105af565b6040516101f3929190612c89565b60405180910390f35b61021660048036038101906102119190612eaf565b61062f565b005b610232600480360381019061022d9190612c3a565b6106d0565b005b61024e60048036038101906102499190613041565b61078c565b60405161025b9190613177565b60405180910390f35b61027e60048036038101906102799190613220565b6108a5565b005b6102886109d1565b005b610292610a59565b6040516102a0929190613294565b60405180910390f35b6102b1610a6a565b6040516102be91906132bd565b60405180910390f35b6102e160048036038101906102dc91906132d8565b610a94565b005b6102fd60048036038101906102f89190613318565b610c15565b60405161030a9190612b37565b60405180910390f35b61032d600480360381019061032891906133e6565b610c6b565b005b61034960048036038101906103449190612b52565b610e45565b6040516103569190612a7c565b60405180910390f35b6103796004803603810190610374919061354a565b610eae565b005b61039560048036038101906103909190612b52565b61121e565b6040516103a291906132bd565b60405180910390f35b6103c560048036038101906103c09190613605565b6112a3565b005b6103e160048036038101906103dc9190613690565b6114dd565b6040516103ee9190612b37565b60405180910390f35b610411600480360381019061040c91906136d0565b611571565b005b61042d60048036038101906104289190613318565b611612565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610497906137d9565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610503826117f6565b9050919050565b606060086000838152602001908152602001600020805461052a90613828565b80601f016020809104026020016040519081016040528092919081815260200182805461055690613828565b80156105a35780601f10610578576101008083540402835291602001916105a3565b820191906000526020600020905b81548152906001019060200180831161058657829003601f168201915b50505050509050919050565b6000806105bb8461186e565b6105fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f1906138a6565b60405180910390fd5b60006007546006548561060d91906138f5565b610617919061397e565b90506106228561121e565b8192509250509250929050565b61063761192b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061067d575061067c8561067761192b565b6114dd565b5b6106bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b390613a21565b60405180910390fd5b6106c98585858585611933565b5050505050565b6106d861192b565b73ffffffffffffffffffffffffffffffffffffffff166106f6610a6a565b73ffffffffffffffffffffffffffffffffffffffff161461074c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074390613a8d565b60405180910390fd5b816006819055508060078190555080827faf2bf5ffa0f4710dd8f6649727669c31ed788a40649ac78c9bc9c775a2d2d02860405160405180910390a35050565b606081518351146107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990613b1f565b60405180910390fd5b6000835167ffffffffffffffff8111156107ef576107ee612cb7565b5b60405190808252806020026020018201604052801561081d5781602001602082028036833780820191505090505b50905060005b845181101561089a5761086a85828151811061084257610841613b3f565b5b602002602001015185838151811061085d5761085c613b3f565b5b602002602001015161042f565b82828151811061087d5761087c613b3f565b5b6020026020010181815250508061089390613b6e565b9050610823565b508091505092915050565b6108ad61192b565b73ffffffffffffffffffffffffffffffffffffffff166108cb610a6a565b73ffffffffffffffffffffffffffffffffffffffff1614610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890613a8d565b60405180910390fd5b82600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508215158473ffffffffffffffffffffffffffffffffffffffff167f71acd54c8414b6dfaf75890da1f8da4f00cb49e599b5892e56d7a809fe2b978384846040516109c3929190613be4565b60405180910390a350505050565b6109d961192b565b73ffffffffffffffffffffffffffffffffffffffff166109f7610a6a565b73ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490613a8d565b60405180910390fd5b610a576000611c47565b565b600080600654600754915091509091565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff16610ab361192b565b73ffffffffffffffffffffffffffffffffffffffff161415610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190613c7a565b60405180910390fd5b8060016000610b1761192b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610bc461192b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c099190612b37565b60405180910390a35050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610c7560056117e0565b6000610c816005611d0d565b905060011515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151480610d145750610ce5610a6a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90613ce6565b60405180910390fd5b610d6e84828560405180602001604052806000815250611d1b565b82600a60008381526020019081526020016000208190555081600860008381526020019081526020016000209080519060200190610dad9291906128e2565b50846009600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550807f07dbea1c6295f49f3aad2c62f7130320d989206faf79a4128cc6e1e11a5ba03d83858888604051610e369493929190613d06565b60405180910390a25050505050565b6000610e516005611d0d565b821115610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90613d9e565b60405180910390fd5b600a6000838152602001908152602001600020549050919050565b610eb661192b565b73ffffffffffffffffffffffffffffffffffffffff16610ed4610a6a565b73ffffffffffffffffffffffffffffffffffffffff1614610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190613a8d565b60405180910390fd5b60008251905060008167ffffffffffffffff811115610f4c57610f4b612cb7565b5b604051908082528060200260200182016040528015610f7a5781602001602082028036833780820191505090505b50905060005b82811015610fd457610f9260056117e0565b6000610f9e6005611d0d565b905080838381518110610fb457610fb3613b3f565b5b602002602001018181525050508080610fcc90613b6e565b915050610f80565b50610ff086828660405180602001604052806000815250611eb1565b60005b828110156112155783818151811061100e5761100d613b3f565b5b60200260200101516008600084848151811061102d5761102c613b3f565b5b6020026020010151815260200190815260200160002090805190602001906110569291906128e2565b5085818151811061106a57611069613b3f565b5b60200260200101516009600084848151811061108957611088613b3f565b5b6020026020010151815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508481815181106110f0576110ef613b3f565b5b6020026020010151600a600084848151811061110f5761110e613b3f565b5b602002602001015181526020019081526020016000208190555081818151811061113c5761113b613b3f565b5b60200260200101517f07dbea1c6295f49f3aad2c62f7130320d989206faf79a4128cc6e1e11a5ba03d85838151811061117857611177613b3f565b5b602002602001015187848151811061119357611192613b3f565b5b6020026020010151600960008787815181106111b2576111b1613b3f565b5b6020026020010151815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168b6040516111fa9493929190613d06565b60405180910390a2808061120d90613b6e565b915050610ff3565b50505050505050565b60006112298261186e565b611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90613e0a565b60405180910390fd5b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6112ab61192b565b73ffffffffffffffffffffffffffffffffffffffff166112c9610a6a565b73ffffffffffffffffffffffffffffffffffffffff161461131f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131690613a8d565b60405180910390fd5b600183148061132e5750600283145b61136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490613e76565b60405180910390fd5b60006001841461137e57604b611382565b6101c25b61ffff169050600083519050825181146113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890613ee2565b60405180910390fd5b60005b818110156114d55760008482815181106113f1576113f0613b3f565b5b602002602001015190508381600a60008a81526020019081526020016000205461141b9190613f02565b111561145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145390613fa4565b60405180910390fd5b600086838151811061147157611470613b3f565b5b6020026020010151905081600a60008a8152602001908152602001600020600082825461149e9190613f02565b925050819055506114c081898460405180602001604052806000815250611d1b565b505080806114cd90613b6e565b9150506113d4565b505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61157961192b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806115bf57506115be856115b961192b565b6114dd565b5b6115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590614036565b60405180910390fd5b61160b85858585856120cf565b5050505050565b61161a61192b565b73ffffffffffffffffffffffffffffffffffffffff16611638610a6a565b73ffffffffffffffffffffffffffffffffffffffff161461168e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168590613a8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f5906140c8565b60405180910390fd5b61170781611c47565b50565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a90614134565b60405180910390fd5b600160036000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6001816000016000828254019250508190555050565b600061180182612351565b80611867575060036000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff165b9050919050565b600080600a60008481526020019081526020016000205411806118f15750600073ffffffffffffffffffffffffffffffffffffffff166009600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80611924575060006008600084815260200190815260200160002060405161191991906141f3565b604051809103902014155b9050919050565b600033905090565b8151835114611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e9061427c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de9061430e565b60405180910390fd5b60006119f161192b565b9050611a01818787878787612433565b60005b8451811015611bb2576000858281518110611a2257611a21613b3f565b5b602002602001015190506000858381518110611a4157611a40613b3f565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad9906143a0565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b979190613f02565b9250508190555050505080611bab90613b6e565b9050611a04565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c299291906143c0565b60405180910390a4611c3f81878787878761243b565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290614469565b60405180910390fd5b6000611d9561192b565b9050611db681600087611da788612613565b611db088612613565b87612433565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e159190613f02565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611e93929190613294565b60405180910390a4611eaa8160008787878761268d565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890614469565b60405180910390fd5b8151835114611f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5c9061427c565b60405180910390fd5b6000611f6f61192b565b9050611f8081600087878787612433565b60005b845181101561203957838181518110611f9f57611f9e613b3f565b5b6020026020010151600080878481518110611fbd57611fbc613b3f565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461201f9190613f02565b92505081905550808061203190613b6e565b915050611f83565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516120b19291906143c0565b60405180910390a46120c88160008787878761243b565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561213f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121369061430e565b60405180910390fd5b600061214961192b565b905061216981878761215a88612613565b61216388612613565b87612433565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f7906143a0565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b59190613f02565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612332929190613294565b60405180910390a461234882888888888861268d565b50505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061241c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061242c575061242b82612865565b5b9050919050565b505050505050565b61245a8473ffffffffffffffffffffffffffffffffffffffff166128cf565b1561260b578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016124a09594939291906144de565b6020604051808303816000875af19250505080156124dc57506040513d601f19601f820116820180604052508101906124d9919061455b565b60015b612582576124e8614595565b806308c379a0141561254557506124fd6145b7565b806125085750612547565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c9190612c18565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612579906146bf565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090614751565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561263257612631612cb7565b5b6040519080825280602002602001820160405280156126605781602001602082028036833780820191505090505b509050828160008151811061267857612677613b3f565b5b60200260200101818152505080915050919050565b6126ac8473ffffffffffffffffffffffffffffffffffffffff166128cf565b1561285d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016126f2959493929190614771565b6020604051808303816000875af192505050801561272e57506040513d601f19601f8201168201806040525081019061272b919061455b565b60015b6127d45761273a614595565b806308c379a01415612797575061274f6145b7565b8061275a5750612799565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278e9190612c18565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cb906146bf565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461285b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285290614751565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080823b905060008111915050919050565b8280546128ee90613828565b90600052602060002090601f0160209004810192826129105760008555612957565b82601f1061292957805160ff1916838001178555612957565b82800160010185558215612957579182015b8281111561295657825182559160200191906001019061293b565b5b5090506129649190612968565b5090565b5b80821115612981576000816000905550600101612969565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129c482612999565b9050919050565b6129d4816129b9565b81146129df57600080fd5b50565b6000813590506129f1816129cb565b92915050565b6000819050919050565b612a0a816129f7565b8114612a1557600080fd5b50565b600081359050612a2781612a01565b92915050565b60008060408385031215612a4457612a4361298f565b5b6000612a52858286016129e2565b9250506020612a6385828601612a18565b9150509250929050565b612a76816129f7565b82525050565b6000602082019050612a916000830184612a6d565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612acc81612a97565b8114612ad757600080fd5b50565b600081359050612ae981612ac3565b92915050565b600060208284031215612b0557612b0461298f565b5b6000612b1384828501612ada565b91505092915050565b60008115159050919050565b612b3181612b1c565b82525050565b6000602082019050612b4c6000830184612b28565b92915050565b600060208284031215612b6857612b6761298f565b5b6000612b7684828501612a18565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bb9578082015181840152602081019050612b9e565b83811115612bc8576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bea82612b7f565b612bf48185612b8a565b9350612c04818560208601612b9b565b612c0d81612bce565b840191505092915050565b60006020820190508181036000830152612c328184612bdf565b905092915050565b60008060408385031215612c5157612c5061298f565b5b6000612c5f85828601612a18565b9250506020612c7085828601612a18565b9150509250929050565b612c83816129b9565b82525050565b6000604082019050612c9e6000830185612c7a565b612cab6020830184612a6d565b9392505050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612cef82612bce565b810181811067ffffffffffffffff82111715612d0e57612d0d612cb7565b5b80604052505050565b6000612d21612985565b9050612d2d8282612ce6565b919050565b600067ffffffffffffffff821115612d4d57612d4c612cb7565b5b602082029050602081019050919050565b600080fd5b6000612d76612d7184612d32565b612d17565b90508083825260208201905060208402830185811115612d9957612d98612d5e565b5b835b81811015612dc25780612dae8882612a18565b845260208401935050602081019050612d9b565b5050509392505050565b600082601f830112612de157612de0612cb2565b5b8135612df1848260208601612d63565b91505092915050565b600080fd5b600067ffffffffffffffff821115612e1a57612e19612cb7565b5b612e2382612bce565b9050602081019050919050565b82818337600083830152505050565b6000612e52612e4d84612dff565b612d17565b905082815260208101848484011115612e6e57612e6d612dfa565b5b612e79848285612e30565b509392505050565b600082601f830112612e9657612e95612cb2565b5b8135612ea6848260208601612e3f565b91505092915050565b600080600080600060a08688031215612ecb57612eca61298f565b5b6000612ed9888289016129e2565b9550506020612eea888289016129e2565b945050604086013567ffffffffffffffff811115612f0b57612f0a612994565b5b612f1788828901612dcc565b935050606086013567ffffffffffffffff811115612f3857612f37612994565b5b612f4488828901612dcc565b925050608086013567ffffffffffffffff811115612f6557612f64612994565b5b612f7188828901612e81565b9150509295509295909350565b600067ffffffffffffffff821115612f9957612f98612cb7565b5b602082029050602081019050919050565b6000612fbd612fb884612f7e565b612d17565b90508083825260208201905060208402830185811115612fe057612fdf612d5e565b5b835b818110156130095780612ff588826129e2565b845260208401935050602081019050612fe2565b5050509392505050565b600082601f83011261302857613027612cb2565b5b8135613038848260208601612faa565b91505092915050565b600080604083850312156130585761305761298f565b5b600083013567ffffffffffffffff81111561307657613075612994565b5b61308285828601613013565b925050602083013567ffffffffffffffff8111156130a3576130a2612994565b5b6130af85828601612dcc565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130ee816129f7565b82525050565b600061310083836130e5565b60208301905092915050565b6000602082019050919050565b6000613124826130b9565b61312e81856130c4565b9350613139836130d5565b8060005b8381101561316a57815161315188826130f4565b975061315c8361310c565b92505060018101905061313d565b5085935050505092915050565b600060208201905081810360008301526131918184613119565b905092915050565b6131a281612b1c565b81146131ad57600080fd5b50565b6000813590506131bf81613199565b92915050565b600080fd5b60008083601f8401126131e0576131df612cb2565b5b8235905067ffffffffffffffff8111156131fd576131fc6131c5565b5b60208301915083600182028301111561321957613218612d5e565b5b9250929050565b6000806000806060858703121561323a5761323961298f565b5b6000613248878288016129e2565b9450506020613259878288016131b0565b935050604085013567ffffffffffffffff81111561327a57613279612994565b5b613286878288016131ca565b925092505092959194509250565b60006040820190506132a96000830185612a6d565b6132b66020830184612a6d565b9392505050565b60006020820190506132d26000830184612c7a565b92915050565b600080604083850312156132ef576132ee61298f565b5b60006132fd858286016129e2565b925050602061330e858286016131b0565b9150509250929050565b60006020828403121561332e5761332d61298f565b5b600061333c848285016129e2565b91505092915050565b600067ffffffffffffffff8211156133605761335f612cb7565b5b61336982612bce565b9050602081019050919050565b600061338961338484613345565b612d17565b9050828152602081018484840111156133a5576133a4612dfa565b5b6133b0848285612e30565b509392505050565b600082601f8301126133cd576133cc612cb2565b5b81356133dd848260208601613376565b91505092915050565b60008060008060808587031215613400576133ff61298f565b5b600061340e878288016129e2565b945050602061341f878288016129e2565b935050604061343087828801612a18565b925050606085013567ffffffffffffffff81111561345157613450612994565b5b61345d878288016133b8565b91505092959194509250565b600067ffffffffffffffff82111561348457613483612cb7565b5b602082029050602081019050919050565b60006134a86134a384613469565b612d17565b905080838252602082019050602084028301858111156134cb576134ca612d5e565b5b835b8181101561351257803567ffffffffffffffff8111156134f0576134ef612cb2565b5b8086016134fd89826133b8565b855260208501945050506020810190506134cd565b5050509392505050565b600082601f83011261353157613530612cb2565b5b8135613541848260208601613495565b91505092915050565b600080600080608085870312156135645761356361298f565b5b6000613572878288016129e2565b945050602085013567ffffffffffffffff81111561359357613592612994565b5b61359f87828801613013565b935050604085013567ffffffffffffffff8111156135c0576135bf612994565b5b6135cc87828801612dcc565b925050606085013567ffffffffffffffff8111156135ed576135ec612994565b5b6135f98782880161351c565b91505092959194509250565b60008060006060848603121561361e5761361d61298f565b5b600061362c86828701612a18565b935050602084013567ffffffffffffffff81111561364d5761364c612994565b5b61365986828701613013565b925050604084013567ffffffffffffffff81111561367a57613679612994565b5b61368686828701612dcc565b9150509250925092565b600080604083850312156136a7576136a661298f565b5b60006136b5858286016129e2565b92505060206136c6858286016129e2565b9150509250929050565b600080600080600060a086880312156136ec576136eb61298f565b5b60006136fa888289016129e2565b955050602061370b888289016129e2565b945050604061371c88828901612a18565b935050606061372d88828901612a18565b925050608086013567ffffffffffffffff81111561374e5761374d612994565b5b61375a88828901612e81565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006137c3602b83612b8a565b91506137ce82613767565b604082019050919050565b600060208201905081810360008301526137f2816137b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061384057607f821691505b60208210811415613854576138536137f9565b5b50919050565b7f726f79616c7479496e666f3a206e6f6e6578697374656e7420746f6b656e0000600082015250565b6000613890601e83612b8a565b915061389b8261385a565b602082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613900826129f7565b915061390b836129f7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613944576139436138c6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613989826129f7565b9150613994836129f7565b9250826139a4576139a361394f565b5b828204905092915050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613a0b603283612b8a565b9150613a16826139af565b604082019050919050565b60006020820190508181036000830152613a3a816139fe565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a77602083612b8a565b9150613a8282613a41565b602082019050919050565b60006020820190508181036000830152613aa681613a6a565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613b09602983612b8a565b9150613b1482613aad565b604082019050919050565b60006020820190508181036000830152613b3881613afc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613b79826129f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bac57613bab6138c6565b5b600182019050919050565b6000613bc38385612b8a565b9350613bd0838584612e30565b613bd983612bce565b840190509392505050565b60006020820190508181036000830152613bff818486613bb7565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000613c64602983612b8a565b9150613c6f82613c08565b604082019050919050565b60006020820190508181036000830152613c9381613c57565b9050919050565b7f756e617574686f72697a6564206d696e74657200000000000000000000000000600082015250565b6000613cd0601383612b8a565b9150613cdb82613c9a565b602082019050919050565b60006020820190508181036000830152613cff81613cc3565b9050919050565b60006080820190508181036000830152613d208187612bdf565b9050613d2f6020830186612a6d565b613d3c6040830185612c7a565b613d496060830184612c7a565b95945050505050565b7f696420686173206e6f74206265656e206d696e74656400000000000000000000600082015250565b6000613d88601683612b8a565b9150613d9382613d52565b602082019050919050565b60006020820190508181036000830152613db781613d7b565b9050919050565b7f67657443726561746f723a206e6f6e6578697374656e7420746f6b656e000000600082015250565b6000613df4601d83612b8a565b9150613dff82613dbe565b602082019050919050565b60006020820190508181036000830152613e2381613de7565b9050919050565b7f6f6e6c792069647320312c322063616e2062652061697264726f707065640000600082015250565b6000613e60601e83612b8a565b9150613e6b82613e2a565b602082019050919050565b60006020820190508181036000830152613e8f81613e53565b9050919050565b7f617272617973206d757374206861766520657175616c206c656e677468000000600082015250565b6000613ecc601d83612b8a565b9150613ed782613e96565b602082019050919050565b60006020820190508181036000830152613efb81613ebf565b9050919050565b6000613f0d826129f7565b9150613f18836129f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f4d57613f4c6138c6565b5b828201905092915050565b7f61697264726f7020657863656564732063617000000000000000000000000000600082015250565b6000613f8e601383612b8a565b9150613f9982613f58565b602082019050919050565b60006020820190508181036000830152613fbd81613f81565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614020602983612b8a565b915061402b82613fc4565b604082019050919050565b6000602082019050818103600083015261404f81614013565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140b2602683612b8a565b91506140bd82614056565b604082019050919050565b600060208201905081810360008301526140e1816140a5565b9050919050565b7f4552433136353a20696e76616c696420696e7465726661636520696400000000600082015250565b600061411e601c83612b8a565b9150614129826140e8565b602082019050919050565b6000602082019050818103600083015261414d81614111565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461418181613828565b61418b8186614154565b945060018216600081146141a657600181146141b7576141ea565b60ff198316865281860193506141ea565b6141c08561415f565b60005b838110156141e2578154818901526001820191506020810190506141c3565b838801955050505b50505092915050565b60006141ff8284614174565b915081905092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614266602883612b8a565b91506142718261420a565b604082019050919050565b6000602082019050818103600083015261429581614259565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142f8602583612b8a565b91506143038261429c565b604082019050919050565b60006020820190508181036000830152614327816142eb565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061438a602a83612b8a565b91506143958261432e565b604082019050919050565b600060208201905081810360008301526143b98161437d565b9050919050565b600060408201905081810360008301526143da8185613119565b905081810360208301526143ee8184613119565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614453602183612b8a565b915061445e826143f7565b604082019050919050565b6000602082019050818103600083015261448281614446565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006144b082614489565b6144ba8185614494565b93506144ca818560208601612b9b565b6144d381612bce565b840191505092915050565b600060a0820190506144f36000830188612c7a565b6145006020830187612c7a565b81810360408301526145128186613119565b905081810360608301526145268185613119565b9050818103608083015261453a81846144a5565b90509695505050505050565b60008151905061455581612ac3565b92915050565b6000602082840312156145715761457061298f565b5b600061457f84828501614546565b91505092915050565b60008160e01c9050919050565b600060033d11156145b45760046000803e6145b1600051614588565b90505b90565b600060443d10156145c75761464a565b6145cf612985565b60043d036004823e80513d602482011167ffffffffffffffff821117156145f757505061464a565b808201805167ffffffffffffffff811115614615575050505061464a565b80602083010160043d03850181111561463257505050505061464a565b61464182602001850186612ce6565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006146a9603483612b8a565b91506146b48261464d565b604082019050919050565b600060208201905081810360008301526146d88161469c565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061473b602883612b8a565b9150614746826146df565b604082019050919050565b6000602082019050818103600083015261476a8161472e565b9050919050565b600060a0820190506147866000830188612c7a565b6147936020830187612c7a565b6147a06040830186612a6d565b6147ad6060830185612a6d565b81810360808301526147bf81846144a5565b9050969550505050505056fea26469706673582212203fd692cb045f6c773b86f16e27fd521080cc4fdaf81510756c0585c895d2210e64736f6c634300080a0033

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.