ETH Price: $3,052.02 (+2.80%)
Gas: 16 Gwei

Token

 

Overview

Max Total Supply

105

Holders

105

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
joiito.eth
0x4de89162f766eeb2b0ed7dec561f91f87dd50dc9
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:
JoisNengajyo

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : JoisNengajyo.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Base64.sol";

contract JoisNengajyo is ERC1155, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    uint256 public immutable tokenAmount = 1;

    struct Item {
        bool mintable;
        bool transferable;
        uint256 maxSupply;
        string tokenURI;
        uint256 maxMintPerWallet; // 0 means user can mint how much they want. so no limitation with minting
    }

    string public contractURI;
    mapping(uint256 => Item) public items;
    mapping(uint256 => uint256) public totalSupply;
    event WithDraw(address indexed to, address token);
    event Mint(address indexed minter, uint256 indexed tokenId);
    event MintTo(
        address indexed minter,
        address indexed holder,
        uint256 indexed tokenId
    );
    event NewItem(uint256 indexed id, bool mintable);
    event UpdateItem(uint256 indexed id, bool mintable);
    event BurnItem(uint256 indexed id, address indexed holder);

    constructor() ERC1155("") {}

    function getItems() public view returns (Item[] memory) {
        Item[] memory ItemArray = new Item[](_tokenIds.current());
        for (uint256 i = 0; i < _tokenIds.current(); i++) {
            ItemArray[i] = items[i + 1];
        }
        return ItemArray;
    }

    modifier onlyExistItem(uint256 _tokenId) {
        require(
            _tokenId > 0 && _tokenId <= _tokenIds.current(),
            "Item Not Exists"
        );
        _;
    }

    modifier onlyHolder(address _of, uint256 _tokenId) {
        require(balanceOf(_of, _tokenId) > 0, "Invalid: NOT HOLDER");
        _;
    }

    modifier onlyBelowMaxMintPerWallet(address _of, uint256 _tokenId) {
        require(
            (balanceOf(_of, _tokenId) < items[_tokenId].maxMintPerWallet) ||
                items[_tokenId].maxMintPerWallet == 0,
            "Invalid: EXCEED MAX MINT PER WALLET"
        );
        _;
    }

    modifier notExceedMaxSupply(uint256 _tokenId) {
        require(
            items[_tokenId].maxSupply > totalSupply[_tokenId],
            "Invalid: Exceed Supply"
        );
        _;
    }

    modifier onlyMintable(uint256 _tokenId) {
        require(items[_tokenId].mintable, "Invalid: To mint");
        _;
    }

    function createItem(Item memory _Item) public onlyOwner {
        _tokenIds.increment();
        uint256 newItemId = _tokenIds.current();
        items[newItemId] = _Item;
        totalSupply[newItemId] = 0;
        emit NewItem(newItemId, _Item.mintable);
    }

    function setContractURI(string memory _contractUri) public onlyOwner {
        contractURI = _contractUri;
    }

    function makeSVGTokenURL(
        string memory title,
        string memory description,
        string memory _svg
    ) private pure returns (string memory) {
        string memory finalSvg = string(abi.encodePacked(_svg));
        string memory json = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{"name": "',
                        title,
                        '", "description": "',
                        description,
                        '", "image": "data:image/svg+xml;base64,',
                        Base64.encode(bytes(finalSvg)),
                        '"}'
                    )
                )
            )
        );

        string memory finalTokenUri = string(
            abi.encodePacked("data:application/json;base64,", json)
        );

        return finalTokenUri;
    }

    function createOnChainItem(
        bool mintable,
        bool transferable,
        uint256 maxSupply,
        uint256 maxMintPerWallet,
        string memory title,
        string memory description,
        string memory _svg
    ) public onlyOwner {
        _tokenIds.increment();
        uint256 newItemId = _tokenIds.current();
        string memory _uri = makeSVGTokenURL(title, description, _svg);
        items[newItemId] = Item(
            mintable,
            transferable,
            maxSupply,
            _uri,
            maxMintPerWallet
        );
        totalSupply[newItemId] = 0;
        emit NewItem(newItemId, mintable);
    }

    function updateItemAttr(
        uint256 _tokenId,
        bool _mintable,
        string memory _tokenURI
    ) public onlyOwner onlyExistItem(_tokenId) {
        items[_tokenId].mintable = _mintable;
        if (bytes(_tokenURI).length >= 5) {
            items[_tokenId].tokenURI = _tokenURI;
        }
        emit UpdateItem(_tokenId, _mintable);
    }

    function lockMinting(uint256 _tokenId)
        public
        onlyOwner
        onlyExistItem(_tokenId)
    {
        items[_tokenId].mintable = false;
        emit UpdateItem(_tokenId, false);
    }

    function mint(uint256 _tokenId)
        public
        onlyExistItem(_tokenId)
        notExceedMaxSupply(_tokenId)
        onlyBelowMaxMintPerWallet(msg.sender, _tokenId)
        onlyMintable(_tokenId)
    {
        _mint(msg.sender, _tokenId, tokenAmount, "");
        totalSupply[_tokenId] += 1;
        emit Mint(msg.sender, _tokenId);
    }

    function mintTo(address _to, uint256 _tokenId)
        public
        onlyExistItem(_tokenId)
        notExceedMaxSupply(_tokenId)
        onlyBelowMaxMintPerWallet(_to, _tokenId)
        onlyMintable(_tokenId)
    {
        _mint(_to, _tokenId, tokenAmount, "");
        totalSupply[_tokenId] += 1;
        emit MintTo(msg.sender, _to, _tokenId);
    }

    // or use before transfer
    function safeTransferFrom(
        address _from,
        address _to,
        uint256 _tokenId,
        uint256 _amount,
        bytes memory _data
    ) public virtual override onlyExistItem(_tokenId) {
        require(items[_tokenId].transferable, "TRANSFER FORBIDDEN");

        _safeTransferFrom(_from, _to, _tokenId, _amount, _data);
    }

    function uri(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return items[_tokenId].tokenURI;
    }
}

File 2 of 12 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/ERC1155.sol)

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 {
        _setApprovalForAll(_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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, 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);

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

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

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

        _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 `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

        _doSafeTransferAcceptanceCheck(operator, address(0), to, 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);

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

        address operator = _msgSender();

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

        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: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

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

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

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

    /**
     * @dev Hook that is called after 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 _afterTokenTransfer(
        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 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 6 of 12 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

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 7 of 12 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

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.
     *
     * NOTE: 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.
     *
     * NOTE: 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 8 of 12 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

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 9 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": 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":"address","name":"holder","type":"address"}],"name":"BurnItem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":true,"internalType":"address","name":"holder","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MintTo","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"bool","name":"mintable","type":"bool"}],"name":"NewItem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"bool","name":"mintable","type":"bool"}],"name":"UpdateItem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"}],"name":"WithDraw","type":"event"},{"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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bool","name":"mintable","type":"bool"},{"internalType":"bool","name":"transferable","type":"bool"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"uint256","name":"maxMintPerWallet","type":"uint256"}],"internalType":"struct JoisNengajyo.Item","name":"_Item","type":"tuple"}],"name":"createItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"mintable","type":"bool"},{"internalType":"bool","name":"transferable","type":"bool"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"maxMintPerWallet","type":"uint256"},{"internalType":"string","name":"title","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"_svg","type":"string"}],"name":"createOnChainItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getItems","outputs":[{"components":[{"internalType":"bool","name":"mintable","type":"bool"},{"internalType":"bool","name":"transferable","type":"bool"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"uint256","name":"maxMintPerWallet","type":"uint256"}],"internalType":"struct JoisNengajyo.Item[]","name":"","type":"tuple[]"}],"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":"uint256","name":"","type":"uint256"}],"name":"items","outputs":[{"internalType":"bool","name":"mintable","type":"bool"},{"internalType":"bool","name":"transferable","type":"bool"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"uint256","name":"maxMintPerWallet","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"lockMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mintTo","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":"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":"_tokenId","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":"string","name":"_contractUri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","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":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_mintable","type":"bool"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"updateItemAttr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60a060405260016080908152503480156200001957600080fd5b50604051806020016040528060008152506200003b816200006260201b60201c565b506200005c620000506200007e60201b60201c565b6200008660201b60201c565b62000261565b80600290805190602001906200007a9291906200014c565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200015a90620001fc565b90600052602060002090601f0160209004810192826200017e5760008555620001ca565b82601f106200019957805160ff1916838001178555620001ca565b82800160010185558215620001ca579182015b82811115620001c9578251825591602001919060010190620001ac565b5b509050620001d99190620001dd565b5090565b5b80821115620001f8576000816000905550600101620001de565b5090565b600060028204905060018216806200021557607f821691505b602082108114156200022c576200022b62000232565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b608051614b796200028b60003960008181610b05015281816114dd01526119270152614b796000f3fe608060405234801561001057600080fd5b506004361061014c5760003560e01c8063938e3d7b116100c3578063e398c28d1161007c578063e398c28d1461039b578063e8a3d485146103b7578063e985e9c5146103d5578063eec7faa114610405578063f242432a14610423578063f2fde38b1461043f5761014c565b8063938e3d7b146102c75780639b6ac50d146102e3578063a0712d68146102ff578063a22cb4651461031b578063bd85b03914610337578063bfb231d2146103675761014c565b8063449a52f811610115578063449a52f81461021b5780634c50f8af146102375780634e1273f414610253578063715018a6146102835780637d0f5df31461028d5780638da5cb5b146102a95761014c565b8062fdd58e1461015157806301ffc9a7146101815780630e89341c146101b15780632eb2c2d6146101e1578063410d59cc146101fd575b600080fd5b61016b60048036038101906101669190613240565b61045b565b6040516101789190613f75565b60405180910390f35b61019b600480360381019061019691906133ce565b610524565b6040516101a89190613cbe565b60405180910390f35b6101cb60048036038101906101c691906134a2565b610606565b6040516101d89190613d33565b60405180910390f35b6101fb60048036038101906101f691906130b6565b6106ae565b005b61020561074f565b6040516102129190613c43565b60405180910390f35b61023560048036038101906102309190613240565b610951565b005b610251600480360381019061024c91906134a2565b610bc8565b005b61026d6004803603810190610268919061327c565b610d09565b60405161027a9190613c65565b60405180910390f35b61028b610eba565b005b6102a760048036038101906102a291906134cb565b610f42565b005b6102b16110b8565b6040516102be9190613b66565b60405180910390f35b6102e160048036038101906102dc9190613420565b6110e2565b005b6102fd60048036038101906102f891906132e8565b611178565b005b610319600480360381019061031491906134a2565b611329565b005b61033560048036038101906103309190613204565b611588565b005b610351600480360381019061034c91906134a2565b61159e565b60405161035e9190613f75565b60405180910390f35b610381600480360381019061037c91906134a2565b6115b6565b604051610392959493929190613cd9565b60405180910390f35b6103b560048036038101906103b09190613461565b61168e565b005b6103bf611803565b6040516103cc9190613d33565b60405180910390f35b6103ef60048036038101906103ea919061307a565b611891565b6040516103fc9190613cbe565b60405180910390f35b61040d611925565b60405161041a9190613f75565b60405180910390f35b61043d60048036038101906104389190613175565b611949565b005b61045960048036038101906104549190613051565b611a1a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c390613d95565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ef57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105ff57506105fe82611b12565b5b9050919050565b6060600660008381526020019081526020016000206002018054610629906142f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610655906142f5565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b50505050509050919050565b6106b6611b7c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106fc57506106fb856106f6611b7c565b611891565b5b61073b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073290613e55565b60405180910390fd5b6107488585858585611b84565b5050505050565b6060600061075d6004611ef2565b67ffffffffffffffff81111561079c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156107d557816020015b6107c2612c76565b8152602001906001900390816107ba5790505b50905060005b6107e56004611ef2565b81101561094957600660006001836107fd919061415e565b81526020019081526020016000206040518060a00160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff1615151515815260200160018201548152602001600282018054610866906142f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610892906142f5565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050815260200160038201548152505082828151811061092b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181905250808061094190614358565b9150506107db565b508091505090565b8060008111801561096b57506109676004611ef2565b8111155b6109aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a190613ed5565b60405180910390fd5b816007600082815260200190815260200160002054600660008381526020019081526020016000206001015411610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90613e15565b60405180910390fd5b83836006600082815260200190815260200160002060030154610a39838361045b565b1080610a5b575060006006600083815260200190815260200160002060030154145b610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190613df5565b60405180910390fd5b846006600082815260200190815260200160002060000160009054906101000a900460ff16610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af590613dd5565b60405180910390fd5b610b3987877f000000000000000000000000000000000000000000000000000000000000000060405180602001604052806000815250611f00565b6001600760008881526020019081526020016000206000828254610b5d919061415e565b92505081905550858773ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f2c4bcf43eb88210e8a3c6430a36c6ad3cc23fd4cf41220906815eba0eac3b33c60405160405180910390a450505050505050565b610bd0611b7c565b73ffffffffffffffffffffffffffffffffffffffff16610bee6110b8565b73ffffffffffffffffffffffffffffffffffffffff1614610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90613eb5565b60405180910390fd5b80600081118015610c5e5750610c5a6004611ef2565b8111155b610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490613ed5565b60405180910390fd5b60006006600084815260200190815260200160002060000160006101000a81548160ff021916908315150217905550817f346e462bb0de757bbbf009b3aff0225ee5b327983add37410a8a0ad8982a377f6000604051610cfd9190613cbe565b60405180910390a25050565b60608151835114610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690613f15565b60405180910390fd5b6000835167ffffffffffffffff811115610d92577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610dc05781602001602082028036833780820191505090505b50905060005b8451811015610eaf57610e59858281518110610e0b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610e4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161045b565b828281518110610e92577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610ea890614358565b9050610dc6565b508091505092915050565b610ec2611b7c565b73ffffffffffffffffffffffffffffffffffffffff16610ee06110b8565b73ffffffffffffffffffffffffffffffffffffffff1614610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90613eb5565b60405180910390fd5b610f4060006120b1565b565b610f4a611b7c565b73ffffffffffffffffffffffffffffffffffffffff16610f686110b8565b73ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590613eb5565b60405180910390fd5b82600081118015610fd85750610fd46004611ef2565b8111155b611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90613ed5565b60405180910390fd5b826006600086815260200190815260200160002060000160006101000a81548160ff021916908315150217905550600582511061107a5781600660008681526020019081526020016000206002019080519060200190611078929190612ca9565b505b837f346e462bb0de757bbbf009b3aff0225ee5b327983add37410a8a0ad8982a377f846040516110aa9190613cbe565b60405180910390a250505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110ea611b7c565b73ffffffffffffffffffffffffffffffffffffffff166111086110b8565b73ffffffffffffffffffffffffffffffffffffffff161461115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590613eb5565b60405180910390fd5b8060059080519060200190611174929190612ca9565b5050565b611180611b7c565b73ffffffffffffffffffffffffffffffffffffffff1661119e6110b8565b73ffffffffffffffffffffffffffffffffffffffff16146111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90613eb5565b60405180910390fd5b6111fe6004612177565b600061120a6004611ef2565b9050600061121985858561218d565b90506040518060a001604052808a151581526020018915158152602001888152602001828152602001878152506006600084815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff0219169083151502179055506040820151816001015560608201518160020190805190602001906112bf929190612ca9565b506080820151816003015590505060006007600084815260200190815260200160002081905550817f840ca088e9c4dc22a1a3e4b0f59f269accefff185d7652b45f37178568523ea68a6040516113169190613cbe565b60405180910390a2505050505050505050565b80600081118015611343575061133f6004611ef2565b8111155b611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137990613ed5565b60405180910390fd5b8160076000828152602001908152602001600020546006600083815260200190815260200160002060010154116113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613e15565b60405180910390fd5b33836006600082815260200190815260200160002060030154611411838361045b565b1080611433575060006006600083815260200190815260200160002060030154145b611472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146990613df5565b60405180910390fd5b846006600082815260200190815260200160002060000160009054906101000a900460ff166114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd90613dd5565b60405180910390fd5b61151133877f000000000000000000000000000000000000000000000000000000000000000060405180602001604052806000815250611f00565b6001600760008881526020019081526020016000206000828254611535919061415e565b92505081905550853373ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a3505050505050565b61159a611593611b7c565b838361221c565b5050565b60076020528060005260406000206000915090505481565b60066020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff1690806001015490806002018054611605906142f5565b80601f0160208091040260200160405190810160405280929190818152602001828054611631906142f5565b801561167e5780601f106116535761010080835404028352916020019161167e565b820191906000526020600020905b81548152906001019060200180831161166157829003601f168201915b5050505050908060030154905085565b611696611b7c565b73ffffffffffffffffffffffffffffffffffffffff166116b46110b8565b73ffffffffffffffffffffffffffffffffffffffff161461170a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170190613eb5565b60405180910390fd5b6117146004612177565b60006117206004611ef2565b9050816006600083815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160010155606082015181600201908051906020019061179c929190612ca9565b506080820151816003015590505060006007600083815260200190815260200160002081905550807f840ca088e9c4dc22a1a3e4b0f59f269accefff185d7652b45f37178568523ea683600001516040516117f79190613cbe565b60405180910390a25050565b60058054611810906142f5565b80601f016020809104026020016040519081016040528092919081815260200182805461183c906142f5565b80156118895780601f1061185e57610100808354040283529160200191611889565b820191906000526020600020905b81548152906001019060200180831161186c57829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b82600081118015611963575061195f6004611ef2565b8111155b6119a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199990613ed5565b60405180910390fd5b6006600085815260200190815260200160002060000160019054906101000a900460ff16611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90613e95565b60405180910390fd5b611a128686868686612389565b505050505050565b611a22611b7c565b73ffffffffffffffffffffffffffffffffffffffff16611a406110b8565b73ffffffffffffffffffffffffffffffffffffffff1614611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d90613eb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90613db5565b60405180910390fd5b611b0f816120b1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90613f35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f90613e35565b60405180910390fd5b6000611c42611b7c565b9050611c52818787878787612625565b60005b8451811015611e4f576000858281518110611c99577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611cde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7690613e75565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e34919061415e565b9250508190555050505080611e4890614358565b9050611c55565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ec6929190613c87565b60405180910390a4611edc81878787878761262d565b611eea818787878787612635565b505050505050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6790613f55565b60405180910390fd5b6000611f7a611b7c565b90506000611f878561281c565b90506000611f948561281c565b9050611fa583600089858589612625565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612004919061415e565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612082929190613f90565b60405180910390a46120998360008985858961262d565b6120a8836000898989896128e2565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b60606000826040516020016121a29190613ad0565b604051602081830303815290604052905060006121e986866121c385612ac9565b6040516020016121d593929190613ae7565b604051602081830303815290604052612ac9565b90506000816040516020016121fe9190613b44565b60405160208183030381529060405290508093505050509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561228b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228290613ef5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161237c9190613cbe565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090613e35565b60405180910390fd5b6000612403611b7c565b905060006124108561281c565b9050600061241d8561281c565b905061242d838989858589612625565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb90613e75565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612579919061415e565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516125f6929190613f90565b60405180910390a461260c848a8a86868a61262d565b61261a848a8a8a8a8a6128e2565b505050505050505050565b505050505050565b505050505050565b6126548473ffffffffffffffffffffffffffffffffffffffff16612c53565b15612814578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161269a959493929190613b81565b602060405180830381600087803b1580156126b457600080fd5b505af19250505080156126e557506040513d601f19601f820116820180604052508101906126e291906133f7565b60015b61278b576126f161445d565b806308c379a0141561274e5750612706614a11565b806127115750612750565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127459190613d33565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278290613d55565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280990613d75565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612861577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561288f5781602001602082028036833780820191505090505b50905082816000815181106128cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6129018473ffffffffffffffffffffffffffffffffffffffff16612c53565b15612ac1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612947959493929190613be9565b602060405180830381600087803b15801561296157600080fd5b505af192505050801561299257506040513d601f19601f8201168201806040525081019061298f91906133f7565b60015b612a385761299e61445d565b806308c379a014156129fb57506129b3614a11565b806129be57506129fd565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f29190613d33565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f90613d55565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab690613d75565b60405180910390fd5b505b505050505050565b6060600082511415612aec57604051806020016040528060008152509050612c4e565b6000604051806060016040528060408152602001614b046040913990506000600360028551612b1b919061415e565b612b2591906141b4565b6004612b3191906141e5565b67ffffffffffffffff811115612b70577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ba25781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015612c0e576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845360018401935050612bb3565b5050600386510660018114612c2a5760028114612c3d57612c45565b603d6001830353603d6002830353612c45565b603d60018303535b50505080925050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060a001604052806000151581526020016000151581526020016000815260200160608152602001600081525090565b828054612cb5906142f5565b90600052602060002090601f016020900481019282612cd75760008555612d1e565b82601f10612cf057805160ff1916838001178555612d1e565b82800160010185558215612d1e579182015b82811115612d1d578251825591602001919060010190612d02565b5b509050612d2b9190612d2f565b5090565b5b80821115612d48576000816000905550600101612d30565b5090565b6000612d5f612d5a84613fde565b613fb9565b90508083825260208201905082856020860282011115612d7e57600080fd5b60005b85811015612dae5781612d948882612ea0565b845260208401935060208301925050600181019050612d81565b5050509392505050565b6000612dcb612dc68461400a565b613fb9565b90508083825260208201905082856020860282011115612dea57600080fd5b60005b85811015612e1a5781612e00888261303c565b845260208401935060208301925050600181019050612ded565b5050509392505050565b6000612e37612e3284614036565b613fb9565b905082815260208101848484011115612e4f57600080fd5b612e5a8482856142b3565b509392505050565b6000612e75612e7084614067565b613fb9565b905082815260208101848484011115612e8d57600080fd5b612e988482856142b3565b509392505050565b600081359050612eaf81614aa7565b92915050565b600082601f830112612ec657600080fd5b8135612ed6848260208601612d4c565b91505092915050565b600082601f830112612ef057600080fd5b8135612f00848260208601612db8565b91505092915050565b600081359050612f1881614abe565b92915050565b600081359050612f2d81614ad5565b92915050565b600081519050612f4281614ad5565b92915050565b600082601f830112612f5957600080fd5b8135612f69848260208601612e24565b91505092915050565b600082601f830112612f8357600080fd5b8135612f93848260208601612e62565b91505092915050565b600060a08284031215612fae57600080fd5b612fb860a0613fb9565b90506000612fc884828501612f09565b6000830152506020612fdc84828501612f09565b6020830152506040612ff08482850161303c565b604083015250606082013567ffffffffffffffff81111561301057600080fd5b61301c84828501612f72565b60608301525060806130308482850161303c565b60808301525092915050565b60008135905061304b81614aec565b92915050565b60006020828403121561306357600080fd5b600061307184828501612ea0565b91505092915050565b6000806040838503121561308d57600080fd5b600061309b85828601612ea0565b92505060206130ac85828601612ea0565b9150509250929050565b600080600080600060a086880312156130ce57600080fd5b60006130dc88828901612ea0565b95505060206130ed88828901612ea0565b945050604086013567ffffffffffffffff81111561310a57600080fd5b61311688828901612edf565b935050606086013567ffffffffffffffff81111561313357600080fd5b61313f88828901612edf565b925050608086013567ffffffffffffffff81111561315c57600080fd5b61316888828901612f48565b9150509295509295909350565b600080600080600060a0868803121561318d57600080fd5b600061319b88828901612ea0565b95505060206131ac88828901612ea0565b94505060406131bd8882890161303c565b93505060606131ce8882890161303c565b925050608086013567ffffffffffffffff8111156131eb57600080fd5b6131f788828901612f48565b9150509295509295909350565b6000806040838503121561321757600080fd5b600061322585828601612ea0565b925050602061323685828601612f09565b9150509250929050565b6000806040838503121561325357600080fd5b600061326185828601612ea0565b92505060206132728582860161303c565b9150509250929050565b6000806040838503121561328f57600080fd5b600083013567ffffffffffffffff8111156132a957600080fd5b6132b585828601612eb5565b925050602083013567ffffffffffffffff8111156132d257600080fd5b6132de85828601612edf565b9150509250929050565b600080600080600080600060e0888a03121561330357600080fd5b60006133118a828b01612f09565b97505060206133228a828b01612f09565b96505060406133338a828b0161303c565b95505060606133448a828b0161303c565b945050608088013567ffffffffffffffff81111561336157600080fd5b61336d8a828b01612f72565b93505060a088013567ffffffffffffffff81111561338a57600080fd5b6133968a828b01612f72565b92505060c088013567ffffffffffffffff8111156133b357600080fd5b6133bf8a828b01612f72565b91505092959891949750929550565b6000602082840312156133e057600080fd5b60006133ee84828501612f1e565b91505092915050565b60006020828403121561340957600080fd5b600061341784828501612f33565b91505092915050565b60006020828403121561343257600080fd5b600082013567ffffffffffffffff81111561344c57600080fd5b61345884828501612f72565b91505092915050565b60006020828403121561347357600080fd5b600082013567ffffffffffffffff81111561348d57600080fd5b61349984828501612f9c565b91505092915050565b6000602082840312156134b457600080fd5b60006134c28482850161303c565b91505092915050565b6000806000606084860312156134e057600080fd5b60006134ee8682870161303c565b93505060206134ff86828701612f09565b925050604084013567ffffffffffffffff81111561351c57600080fd5b61352886828701612f72565b9150509250925092565b600061353e8383613a3c565b905092915050565b60006135528383613ab2565b60208301905092915050565b6135678161423f565b82525050565b6000613578826140b8565b61358281856140fe565b93508360208202850161359485614098565b8060005b858110156135d057848403895281516135b18582613532565b94506135bc836140e4565b925060208a01995050600181019050613598565b50829750879550505050505092915050565b60006135ed826140c3565b6135f7818561410f565b9350613602836140a8565b8060005b8381101561363357815161361a8882613546565b9750613625836140f1565b925050600181019050613606565b5085935050505092915050565b61364981614251565b82525050565b61365881614251565b82525050565b6000613669826140ce565b6136738185614120565b93506136838185602086016142c2565b61368c8161447f565b840191505092915050565b60006136a2826140d9565b6136ac8185614131565b93506136bc8185602086016142c2565b6136c58161447f565b840191505092915050565b60006136db826140d9565b6136e58185614142565b93506136f58185602086016142c2565b6136fe8161447f565b840191505092915050565b6000613714826140d9565b61371e8185614153565b935061372e8185602086016142c2565b80840191505092915050565b6000613747603483614142565b91506137528261449d565b604082019050919050565b600061376a602883614142565b9150613775826144ec565b604082019050919050565b600061378d601383614153565b91506137988261453b565b601382019050919050565b60006137b0602b83614142565b91506137bb82614564565b604082019050919050565b60006137d3602683614142565b91506137de826145b3565b604082019050919050565b60006137f6601083614142565b915061380182614602565b602082019050919050565b6000613819602383614142565b91506138248261462b565b604082019050919050565b600061383c601683614142565b91506138478261467a565b602082019050919050565b600061385f602583614142565b915061386a826146a3565b604082019050919050565b6000613882603283614142565b915061388d826146f2565b604082019050919050565b60006138a5600283614153565b91506138b082614741565b600282019050919050565b60006138c8602a83614142565b91506138d38261476a565b604082019050919050565b60006138eb601283614142565b91506138f6826147b9565b602082019050919050565b600061390e602083614142565b9150613919826147e2565b602082019050919050565b6000613931602783614153565b915061393c8261480b565b602782019050919050565b6000613954600a83614153565b915061395f8261485a565b600a82019050919050565b6000613977601d83614153565b915061398282614883565b601d82019050919050565b600061399a600f83614142565b91506139a5826148ac565b602082019050919050565b60006139bd602983614142565b91506139c8826148d5565b604082019050919050565b60006139e0602983614142565b91506139eb82614924565b604082019050919050565b6000613a03602883614142565b9150613a0e82614973565b604082019050919050565b6000613a26602183614142565b9150613a31826149c2565b604082019050919050565b600060a083016000830151613a546000860182613640565b506020830151613a676020860182613640565b506040830151613a7a6040860182613ab2565b5060608301518482036060860152613a928282613697565b9150506080830151613aa76080860182613ab2565b508091505092915050565b613abb816142a9565b82525050565b613aca816142a9565b82525050565b6000613adc8284613709565b915081905092915050565b6000613af282613947565b9150613afe8286613709565b9150613b0982613780565b9150613b158285613709565b9150613b2082613924565b9150613b2c8284613709565b9150613b3782613898565b9150819050949350505050565b6000613b4f8261396a565b9150613b5b8284613709565b915081905092915050565b6000602082019050613b7b600083018461355e565b92915050565b600060a082019050613b96600083018861355e565b613ba3602083018761355e565b8181036040830152613bb581866135e2565b90508181036060830152613bc981856135e2565b90508181036080830152613bdd818461365e565b90509695505050505050565b600060a082019050613bfe600083018861355e565b613c0b602083018761355e565b613c186040830186613ac1565b613c256060830185613ac1565b8181036080830152613c37818461365e565b90509695505050505050565b60006020820190508181036000830152613c5d818461356d565b905092915050565b60006020820190508181036000830152613c7f81846135e2565b905092915050565b60006040820190508181036000830152613ca181856135e2565b90508181036020830152613cb581846135e2565b90509392505050565b6000602082019050613cd3600083018461364f565b92915050565b600060a082019050613cee600083018861364f565b613cfb602083018761364f565b613d086040830186613ac1565b8181036060830152613d1a81856136d0565b9050613d296080830184613ac1565b9695505050505050565b60006020820190508181036000830152613d4d81846136d0565b905092915050565b60006020820190508181036000830152613d6e8161373a565b9050919050565b60006020820190508181036000830152613d8e8161375d565b9050919050565b60006020820190508181036000830152613dae816137a3565b9050919050565b60006020820190508181036000830152613dce816137c6565b9050919050565b60006020820190508181036000830152613dee816137e9565b9050919050565b60006020820190508181036000830152613e0e8161380c565b9050919050565b60006020820190508181036000830152613e2e8161382f565b9050919050565b60006020820190508181036000830152613e4e81613852565b9050919050565b60006020820190508181036000830152613e6e81613875565b9050919050565b60006020820190508181036000830152613e8e816138bb565b9050919050565b60006020820190508181036000830152613eae816138de565b9050919050565b60006020820190508181036000830152613ece81613901565b9050919050565b60006020820190508181036000830152613eee8161398d565b9050919050565b60006020820190508181036000830152613f0e816139b0565b9050919050565b60006020820190508181036000830152613f2e816139d3565b9050919050565b60006020820190508181036000830152613f4e816139f6565b9050919050565b60006020820190508181036000830152613f6e81613a19565b9050919050565b6000602082019050613f8a6000830184613ac1565b92915050565b6000604082019050613fa56000830185613ac1565b613fb26020830184613ac1565b9392505050565b6000613fc3613fd4565b9050613fcf8282614327565b919050565b6000604051905090565b600067ffffffffffffffff821115613ff957613ff861442e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140255761402461442e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140515761405061442e565b5b61405a8261447f565b9050602081019050919050565b600067ffffffffffffffff8211156140825761408161442e565b5b61408b8261447f565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614169826142a9565b9150614174836142a9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141a9576141a86143a1565b5b828201905092915050565b60006141bf826142a9565b91506141ca836142a9565b9250826141da576141d96143d0565b5b828204905092915050565b60006141f0826142a9565b91506141fb836142a9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614234576142336143a1565b5b828202905092915050565b600061424a82614289565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142e05780820151818401526020810190506142c5565b838111156142ef576000848401525b50505050565b6000600282049050600182168061430d57607f821691505b60208210811415614321576143206143ff565b5b50919050565b6143308261447f565b810181811067ffffffffffffffff8211171561434f5761434e61442e565b5b80604052505050565b6000614363826142a9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614396576143956143a1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561447c5760046000803e614479600051614490565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a202200000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69643a20546f206d696e7400000000000000000000000000000000600082015250565b7f496e76616c69643a20455843454544204d4158204d494e54205045522057414c60008201527f4c45540000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69643a2045786365656420537570706c7900000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f5452414e5346455220464f5242494444454e0000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b60008201527f6261736536342c00000000000000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4974656d204e6f74204578697374730000000000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614a2157614aa4565b614a29613fd4565b60043d036004823e80513d602482011167ffffffffffffffff82111715614a51575050614aa4565b808201805167ffffffffffffffff811115614a6f5750505050614aa4565b80602083010160043d038501811115614a8c575050505050614aa4565b614a9b82602001850186614327565b82955050505050505b90565b614ab08161423f565b8114614abb57600080fd5b50565b614ac781614251565b8114614ad257600080fd5b50565b614ade8161425d565b8114614ae957600080fd5b50565b614af5816142a9565b8114614b0057600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220a4a06f6e48f6ec23c9de497c0458637ca7d6fcde4bfed1165ebcd0458286c65564736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014c5760003560e01c8063938e3d7b116100c3578063e398c28d1161007c578063e398c28d1461039b578063e8a3d485146103b7578063e985e9c5146103d5578063eec7faa114610405578063f242432a14610423578063f2fde38b1461043f5761014c565b8063938e3d7b146102c75780639b6ac50d146102e3578063a0712d68146102ff578063a22cb4651461031b578063bd85b03914610337578063bfb231d2146103675761014c565b8063449a52f811610115578063449a52f81461021b5780634c50f8af146102375780634e1273f414610253578063715018a6146102835780637d0f5df31461028d5780638da5cb5b146102a95761014c565b8062fdd58e1461015157806301ffc9a7146101815780630e89341c146101b15780632eb2c2d6146101e1578063410d59cc146101fd575b600080fd5b61016b60048036038101906101669190613240565b61045b565b6040516101789190613f75565b60405180910390f35b61019b600480360381019061019691906133ce565b610524565b6040516101a89190613cbe565b60405180910390f35b6101cb60048036038101906101c691906134a2565b610606565b6040516101d89190613d33565b60405180910390f35b6101fb60048036038101906101f691906130b6565b6106ae565b005b61020561074f565b6040516102129190613c43565b60405180910390f35b61023560048036038101906102309190613240565b610951565b005b610251600480360381019061024c91906134a2565b610bc8565b005b61026d6004803603810190610268919061327c565b610d09565b60405161027a9190613c65565b60405180910390f35b61028b610eba565b005b6102a760048036038101906102a291906134cb565b610f42565b005b6102b16110b8565b6040516102be9190613b66565b60405180910390f35b6102e160048036038101906102dc9190613420565b6110e2565b005b6102fd60048036038101906102f891906132e8565b611178565b005b610319600480360381019061031491906134a2565b611329565b005b61033560048036038101906103309190613204565b611588565b005b610351600480360381019061034c91906134a2565b61159e565b60405161035e9190613f75565b60405180910390f35b610381600480360381019061037c91906134a2565b6115b6565b604051610392959493929190613cd9565b60405180910390f35b6103b560048036038101906103b09190613461565b61168e565b005b6103bf611803565b6040516103cc9190613d33565b60405180910390f35b6103ef60048036038101906103ea919061307a565b611891565b6040516103fc9190613cbe565b60405180910390f35b61040d611925565b60405161041a9190613f75565b60405180910390f35b61043d60048036038101906104389190613175565b611949565b005b61045960048036038101906104549190613051565b611a1a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c390613d95565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ef57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105ff57506105fe82611b12565b5b9050919050565b6060600660008381526020019081526020016000206002018054610629906142f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610655906142f5565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b50505050509050919050565b6106b6611b7c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106fc57506106fb856106f6611b7c565b611891565b5b61073b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073290613e55565b60405180910390fd5b6107488585858585611b84565b5050505050565b6060600061075d6004611ef2565b67ffffffffffffffff81111561079c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156107d557816020015b6107c2612c76565b8152602001906001900390816107ba5790505b50905060005b6107e56004611ef2565b81101561094957600660006001836107fd919061415e565b81526020019081526020016000206040518060a00160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff1615151515815260200160018201548152602001600282018054610866906142f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610892906142f5565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050815260200160038201548152505082828151811061092b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181905250808061094190614358565b9150506107db565b508091505090565b8060008111801561096b57506109676004611ef2565b8111155b6109aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a190613ed5565b60405180910390fd5b816007600082815260200190815260200160002054600660008381526020019081526020016000206001015411610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90613e15565b60405180910390fd5b83836006600082815260200190815260200160002060030154610a39838361045b565b1080610a5b575060006006600083815260200190815260200160002060030154145b610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190613df5565b60405180910390fd5b846006600082815260200190815260200160002060000160009054906101000a900460ff16610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af590613dd5565b60405180910390fd5b610b3987877f000000000000000000000000000000000000000000000000000000000000000160405180602001604052806000815250611f00565b6001600760008881526020019081526020016000206000828254610b5d919061415e565b92505081905550858773ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f2c4bcf43eb88210e8a3c6430a36c6ad3cc23fd4cf41220906815eba0eac3b33c60405160405180910390a450505050505050565b610bd0611b7c565b73ffffffffffffffffffffffffffffffffffffffff16610bee6110b8565b73ffffffffffffffffffffffffffffffffffffffff1614610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90613eb5565b60405180910390fd5b80600081118015610c5e5750610c5a6004611ef2565b8111155b610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490613ed5565b60405180910390fd5b60006006600084815260200190815260200160002060000160006101000a81548160ff021916908315150217905550817f346e462bb0de757bbbf009b3aff0225ee5b327983add37410a8a0ad8982a377f6000604051610cfd9190613cbe565b60405180910390a25050565b60608151835114610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690613f15565b60405180910390fd5b6000835167ffffffffffffffff811115610d92577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610dc05781602001602082028036833780820191505090505b50905060005b8451811015610eaf57610e59858281518110610e0b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610e4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161045b565b828281518110610e92577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610ea890614358565b9050610dc6565b508091505092915050565b610ec2611b7c565b73ffffffffffffffffffffffffffffffffffffffff16610ee06110b8565b73ffffffffffffffffffffffffffffffffffffffff1614610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90613eb5565b60405180910390fd5b610f4060006120b1565b565b610f4a611b7c565b73ffffffffffffffffffffffffffffffffffffffff16610f686110b8565b73ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590613eb5565b60405180910390fd5b82600081118015610fd85750610fd46004611ef2565b8111155b611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90613ed5565b60405180910390fd5b826006600086815260200190815260200160002060000160006101000a81548160ff021916908315150217905550600582511061107a5781600660008681526020019081526020016000206002019080519060200190611078929190612ca9565b505b837f346e462bb0de757bbbf009b3aff0225ee5b327983add37410a8a0ad8982a377f846040516110aa9190613cbe565b60405180910390a250505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110ea611b7c565b73ffffffffffffffffffffffffffffffffffffffff166111086110b8565b73ffffffffffffffffffffffffffffffffffffffff161461115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590613eb5565b60405180910390fd5b8060059080519060200190611174929190612ca9565b5050565b611180611b7c565b73ffffffffffffffffffffffffffffffffffffffff1661119e6110b8565b73ffffffffffffffffffffffffffffffffffffffff16146111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90613eb5565b60405180910390fd5b6111fe6004612177565b600061120a6004611ef2565b9050600061121985858561218d565b90506040518060a001604052808a151581526020018915158152602001888152602001828152602001878152506006600084815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff0219169083151502179055506040820151816001015560608201518160020190805190602001906112bf929190612ca9565b506080820151816003015590505060006007600084815260200190815260200160002081905550817f840ca088e9c4dc22a1a3e4b0f59f269accefff185d7652b45f37178568523ea68a6040516113169190613cbe565b60405180910390a2505050505050505050565b80600081118015611343575061133f6004611ef2565b8111155b611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137990613ed5565b60405180910390fd5b8160076000828152602001908152602001600020546006600083815260200190815260200160002060010154116113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613e15565b60405180910390fd5b33836006600082815260200190815260200160002060030154611411838361045b565b1080611433575060006006600083815260200190815260200160002060030154145b611472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146990613df5565b60405180910390fd5b846006600082815260200190815260200160002060000160009054906101000a900460ff166114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd90613dd5565b60405180910390fd5b61151133877f000000000000000000000000000000000000000000000000000000000000000160405180602001604052806000815250611f00565b6001600760008881526020019081526020016000206000828254611535919061415e565b92505081905550853373ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a3505050505050565b61159a611593611b7c565b838361221c565b5050565b60076020528060005260406000206000915090505481565b60066020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff1690806001015490806002018054611605906142f5565b80601f0160208091040260200160405190810160405280929190818152602001828054611631906142f5565b801561167e5780601f106116535761010080835404028352916020019161167e565b820191906000526020600020905b81548152906001019060200180831161166157829003601f168201915b5050505050908060030154905085565b611696611b7c565b73ffffffffffffffffffffffffffffffffffffffff166116b46110b8565b73ffffffffffffffffffffffffffffffffffffffff161461170a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170190613eb5565b60405180910390fd5b6117146004612177565b60006117206004611ef2565b9050816006600083815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160010155606082015181600201908051906020019061179c929190612ca9565b506080820151816003015590505060006007600083815260200190815260200160002081905550807f840ca088e9c4dc22a1a3e4b0f59f269accefff185d7652b45f37178568523ea683600001516040516117f79190613cbe565b60405180910390a25050565b60058054611810906142f5565b80601f016020809104026020016040519081016040528092919081815260200182805461183c906142f5565b80156118895780601f1061185e57610100808354040283529160200191611889565b820191906000526020600020905b81548152906001019060200180831161186c57829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f000000000000000000000000000000000000000000000000000000000000000181565b82600081118015611963575061195f6004611ef2565b8111155b6119a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199990613ed5565b60405180910390fd5b6006600085815260200190815260200160002060000160019054906101000a900460ff16611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90613e95565b60405180910390fd5b611a128686868686612389565b505050505050565b611a22611b7c565b73ffffffffffffffffffffffffffffffffffffffff16611a406110b8565b73ffffffffffffffffffffffffffffffffffffffff1614611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d90613eb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90613db5565b60405180910390fd5b611b0f816120b1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90613f35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f90613e35565b60405180910390fd5b6000611c42611b7c565b9050611c52818787878787612625565b60005b8451811015611e4f576000858281518110611c99577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611cde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7690613e75565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e34919061415e565b9250508190555050505080611e4890614358565b9050611c55565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ec6929190613c87565b60405180910390a4611edc81878787878761262d565b611eea818787878787612635565b505050505050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6790613f55565b60405180910390fd5b6000611f7a611b7c565b90506000611f878561281c565b90506000611f948561281c565b9050611fa583600089858589612625565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612004919061415e565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612082929190613f90565b60405180910390a46120998360008985858961262d565b6120a8836000898989896128e2565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b60606000826040516020016121a29190613ad0565b604051602081830303815290604052905060006121e986866121c385612ac9565b6040516020016121d593929190613ae7565b604051602081830303815290604052612ac9565b90506000816040516020016121fe9190613b44565b60405160208183030381529060405290508093505050509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561228b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228290613ef5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161237c9190613cbe565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090613e35565b60405180910390fd5b6000612403611b7c565b905060006124108561281c565b9050600061241d8561281c565b905061242d838989858589612625565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb90613e75565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612579919061415e565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516125f6929190613f90565b60405180910390a461260c848a8a86868a61262d565b61261a848a8a8a8a8a6128e2565b505050505050505050565b505050505050565b505050505050565b6126548473ffffffffffffffffffffffffffffffffffffffff16612c53565b15612814578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161269a959493929190613b81565b602060405180830381600087803b1580156126b457600080fd5b505af19250505080156126e557506040513d601f19601f820116820180604052508101906126e291906133f7565b60015b61278b576126f161445d565b806308c379a0141561274e5750612706614a11565b806127115750612750565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127459190613d33565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278290613d55565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280990613d75565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612861577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561288f5781602001602082028036833780820191505090505b50905082816000815181106128cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6129018473ffffffffffffffffffffffffffffffffffffffff16612c53565b15612ac1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612947959493929190613be9565b602060405180830381600087803b15801561296157600080fd5b505af192505050801561299257506040513d601f19601f8201168201806040525081019061298f91906133f7565b60015b612a385761299e61445d565b806308c379a014156129fb57506129b3614a11565b806129be57506129fd565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f29190613d33565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f90613d55565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab690613d75565b60405180910390fd5b505b505050505050565b6060600082511415612aec57604051806020016040528060008152509050612c4e565b6000604051806060016040528060408152602001614b046040913990506000600360028551612b1b919061415e565b612b2591906141b4565b6004612b3191906141e5565b67ffffffffffffffff811115612b70577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ba25781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015612c0e576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845360018401935050612bb3565b5050600386510660018114612c2a5760028114612c3d57612c45565b603d6001830353603d6002830353612c45565b603d60018303535b50505080925050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060a001604052806000151581526020016000151581526020016000815260200160608152602001600081525090565b828054612cb5906142f5565b90600052602060002090601f016020900481019282612cd75760008555612d1e565b82601f10612cf057805160ff1916838001178555612d1e565b82800160010185558215612d1e579182015b82811115612d1d578251825591602001919060010190612d02565b5b509050612d2b9190612d2f565b5090565b5b80821115612d48576000816000905550600101612d30565b5090565b6000612d5f612d5a84613fde565b613fb9565b90508083825260208201905082856020860282011115612d7e57600080fd5b60005b85811015612dae5781612d948882612ea0565b845260208401935060208301925050600181019050612d81565b5050509392505050565b6000612dcb612dc68461400a565b613fb9565b90508083825260208201905082856020860282011115612dea57600080fd5b60005b85811015612e1a5781612e00888261303c565b845260208401935060208301925050600181019050612ded565b5050509392505050565b6000612e37612e3284614036565b613fb9565b905082815260208101848484011115612e4f57600080fd5b612e5a8482856142b3565b509392505050565b6000612e75612e7084614067565b613fb9565b905082815260208101848484011115612e8d57600080fd5b612e988482856142b3565b509392505050565b600081359050612eaf81614aa7565b92915050565b600082601f830112612ec657600080fd5b8135612ed6848260208601612d4c565b91505092915050565b600082601f830112612ef057600080fd5b8135612f00848260208601612db8565b91505092915050565b600081359050612f1881614abe565b92915050565b600081359050612f2d81614ad5565b92915050565b600081519050612f4281614ad5565b92915050565b600082601f830112612f5957600080fd5b8135612f69848260208601612e24565b91505092915050565b600082601f830112612f8357600080fd5b8135612f93848260208601612e62565b91505092915050565b600060a08284031215612fae57600080fd5b612fb860a0613fb9565b90506000612fc884828501612f09565b6000830152506020612fdc84828501612f09565b6020830152506040612ff08482850161303c565b604083015250606082013567ffffffffffffffff81111561301057600080fd5b61301c84828501612f72565b60608301525060806130308482850161303c565b60808301525092915050565b60008135905061304b81614aec565b92915050565b60006020828403121561306357600080fd5b600061307184828501612ea0565b91505092915050565b6000806040838503121561308d57600080fd5b600061309b85828601612ea0565b92505060206130ac85828601612ea0565b9150509250929050565b600080600080600060a086880312156130ce57600080fd5b60006130dc88828901612ea0565b95505060206130ed88828901612ea0565b945050604086013567ffffffffffffffff81111561310a57600080fd5b61311688828901612edf565b935050606086013567ffffffffffffffff81111561313357600080fd5b61313f88828901612edf565b925050608086013567ffffffffffffffff81111561315c57600080fd5b61316888828901612f48565b9150509295509295909350565b600080600080600060a0868803121561318d57600080fd5b600061319b88828901612ea0565b95505060206131ac88828901612ea0565b94505060406131bd8882890161303c565b93505060606131ce8882890161303c565b925050608086013567ffffffffffffffff8111156131eb57600080fd5b6131f788828901612f48565b9150509295509295909350565b6000806040838503121561321757600080fd5b600061322585828601612ea0565b925050602061323685828601612f09565b9150509250929050565b6000806040838503121561325357600080fd5b600061326185828601612ea0565b92505060206132728582860161303c565b9150509250929050565b6000806040838503121561328f57600080fd5b600083013567ffffffffffffffff8111156132a957600080fd5b6132b585828601612eb5565b925050602083013567ffffffffffffffff8111156132d257600080fd5b6132de85828601612edf565b9150509250929050565b600080600080600080600060e0888a03121561330357600080fd5b60006133118a828b01612f09565b97505060206133228a828b01612f09565b96505060406133338a828b0161303c565b95505060606133448a828b0161303c565b945050608088013567ffffffffffffffff81111561336157600080fd5b61336d8a828b01612f72565b93505060a088013567ffffffffffffffff81111561338a57600080fd5b6133968a828b01612f72565b92505060c088013567ffffffffffffffff8111156133b357600080fd5b6133bf8a828b01612f72565b91505092959891949750929550565b6000602082840312156133e057600080fd5b60006133ee84828501612f1e565b91505092915050565b60006020828403121561340957600080fd5b600061341784828501612f33565b91505092915050565b60006020828403121561343257600080fd5b600082013567ffffffffffffffff81111561344c57600080fd5b61345884828501612f72565b91505092915050565b60006020828403121561347357600080fd5b600082013567ffffffffffffffff81111561348d57600080fd5b61349984828501612f9c565b91505092915050565b6000602082840312156134b457600080fd5b60006134c28482850161303c565b91505092915050565b6000806000606084860312156134e057600080fd5b60006134ee8682870161303c565b93505060206134ff86828701612f09565b925050604084013567ffffffffffffffff81111561351c57600080fd5b61352886828701612f72565b9150509250925092565b600061353e8383613a3c565b905092915050565b60006135528383613ab2565b60208301905092915050565b6135678161423f565b82525050565b6000613578826140b8565b61358281856140fe565b93508360208202850161359485614098565b8060005b858110156135d057848403895281516135b18582613532565b94506135bc836140e4565b925060208a01995050600181019050613598565b50829750879550505050505092915050565b60006135ed826140c3565b6135f7818561410f565b9350613602836140a8565b8060005b8381101561363357815161361a8882613546565b9750613625836140f1565b925050600181019050613606565b5085935050505092915050565b61364981614251565b82525050565b61365881614251565b82525050565b6000613669826140ce565b6136738185614120565b93506136838185602086016142c2565b61368c8161447f565b840191505092915050565b60006136a2826140d9565b6136ac8185614131565b93506136bc8185602086016142c2565b6136c58161447f565b840191505092915050565b60006136db826140d9565b6136e58185614142565b93506136f58185602086016142c2565b6136fe8161447f565b840191505092915050565b6000613714826140d9565b61371e8185614153565b935061372e8185602086016142c2565b80840191505092915050565b6000613747603483614142565b91506137528261449d565b604082019050919050565b600061376a602883614142565b9150613775826144ec565b604082019050919050565b600061378d601383614153565b91506137988261453b565b601382019050919050565b60006137b0602b83614142565b91506137bb82614564565b604082019050919050565b60006137d3602683614142565b91506137de826145b3565b604082019050919050565b60006137f6601083614142565b915061380182614602565b602082019050919050565b6000613819602383614142565b91506138248261462b565b604082019050919050565b600061383c601683614142565b91506138478261467a565b602082019050919050565b600061385f602583614142565b915061386a826146a3565b604082019050919050565b6000613882603283614142565b915061388d826146f2565b604082019050919050565b60006138a5600283614153565b91506138b082614741565b600282019050919050565b60006138c8602a83614142565b91506138d38261476a565b604082019050919050565b60006138eb601283614142565b91506138f6826147b9565b602082019050919050565b600061390e602083614142565b9150613919826147e2565b602082019050919050565b6000613931602783614153565b915061393c8261480b565b602782019050919050565b6000613954600a83614153565b915061395f8261485a565b600a82019050919050565b6000613977601d83614153565b915061398282614883565b601d82019050919050565b600061399a600f83614142565b91506139a5826148ac565b602082019050919050565b60006139bd602983614142565b91506139c8826148d5565b604082019050919050565b60006139e0602983614142565b91506139eb82614924565b604082019050919050565b6000613a03602883614142565b9150613a0e82614973565b604082019050919050565b6000613a26602183614142565b9150613a31826149c2565b604082019050919050565b600060a083016000830151613a546000860182613640565b506020830151613a676020860182613640565b506040830151613a7a6040860182613ab2565b5060608301518482036060860152613a928282613697565b9150506080830151613aa76080860182613ab2565b508091505092915050565b613abb816142a9565b82525050565b613aca816142a9565b82525050565b6000613adc8284613709565b915081905092915050565b6000613af282613947565b9150613afe8286613709565b9150613b0982613780565b9150613b158285613709565b9150613b2082613924565b9150613b2c8284613709565b9150613b3782613898565b9150819050949350505050565b6000613b4f8261396a565b9150613b5b8284613709565b915081905092915050565b6000602082019050613b7b600083018461355e565b92915050565b600060a082019050613b96600083018861355e565b613ba3602083018761355e565b8181036040830152613bb581866135e2565b90508181036060830152613bc981856135e2565b90508181036080830152613bdd818461365e565b90509695505050505050565b600060a082019050613bfe600083018861355e565b613c0b602083018761355e565b613c186040830186613ac1565b613c256060830185613ac1565b8181036080830152613c37818461365e565b90509695505050505050565b60006020820190508181036000830152613c5d818461356d565b905092915050565b60006020820190508181036000830152613c7f81846135e2565b905092915050565b60006040820190508181036000830152613ca181856135e2565b90508181036020830152613cb581846135e2565b90509392505050565b6000602082019050613cd3600083018461364f565b92915050565b600060a082019050613cee600083018861364f565b613cfb602083018761364f565b613d086040830186613ac1565b8181036060830152613d1a81856136d0565b9050613d296080830184613ac1565b9695505050505050565b60006020820190508181036000830152613d4d81846136d0565b905092915050565b60006020820190508181036000830152613d6e8161373a565b9050919050565b60006020820190508181036000830152613d8e8161375d565b9050919050565b60006020820190508181036000830152613dae816137a3565b9050919050565b60006020820190508181036000830152613dce816137c6565b9050919050565b60006020820190508181036000830152613dee816137e9565b9050919050565b60006020820190508181036000830152613e0e8161380c565b9050919050565b60006020820190508181036000830152613e2e8161382f565b9050919050565b60006020820190508181036000830152613e4e81613852565b9050919050565b60006020820190508181036000830152613e6e81613875565b9050919050565b60006020820190508181036000830152613e8e816138bb565b9050919050565b60006020820190508181036000830152613eae816138de565b9050919050565b60006020820190508181036000830152613ece81613901565b9050919050565b60006020820190508181036000830152613eee8161398d565b9050919050565b60006020820190508181036000830152613f0e816139b0565b9050919050565b60006020820190508181036000830152613f2e816139d3565b9050919050565b60006020820190508181036000830152613f4e816139f6565b9050919050565b60006020820190508181036000830152613f6e81613a19565b9050919050565b6000602082019050613f8a6000830184613ac1565b92915050565b6000604082019050613fa56000830185613ac1565b613fb26020830184613ac1565b9392505050565b6000613fc3613fd4565b9050613fcf8282614327565b919050565b6000604051905090565b600067ffffffffffffffff821115613ff957613ff861442e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140255761402461442e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140515761405061442e565b5b61405a8261447f565b9050602081019050919050565b600067ffffffffffffffff8211156140825761408161442e565b5b61408b8261447f565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614169826142a9565b9150614174836142a9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141a9576141a86143a1565b5b828201905092915050565b60006141bf826142a9565b91506141ca836142a9565b9250826141da576141d96143d0565b5b828204905092915050565b60006141f0826142a9565b91506141fb836142a9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614234576142336143a1565b5b828202905092915050565b600061424a82614289565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142e05780820151818401526020810190506142c5565b838111156142ef576000848401525b50505050565b6000600282049050600182168061430d57607f821691505b60208210811415614321576143206143ff565b5b50919050565b6143308261447f565b810181811067ffffffffffffffff8211171561434f5761434e61442e565b5b80604052505050565b6000614363826142a9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614396576143956143a1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561447c5760046000803e614479600051614490565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a202200000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69643a20546f206d696e7400000000000000000000000000000000600082015250565b7f496e76616c69643a20455843454544204d4158204d494e54205045522057414c60008201527f4c45540000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69643a2045786365656420537570706c7900000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f5452414e5346455220464f5242494444454e0000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b60008201527f6261736536342c00000000000000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4974656d204e6f74204578697374730000000000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614a2157614aa4565b614a29613fd4565b60043d036004823e80513d602482011167ffffffffffffffff82111715614a51575050614aa4565b808201805167ffffffffffffffff811115614a6f5750505050614aa4565b80602083010160043d038501811115614a8c575050505050614aa4565b614a9b82602001850186614327565b82955050505050505b90565b614ab08161423f565b8114614abb57600080fd5b50565b614ac781614251565b8114614ad257600080fd5b50565b614ade8161425d565b8114614ae957600080fd5b50565b614af5816142a9565b8114614b0057600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220a4a06f6e48f6ec23c9de497c0458637ca7d6fcde4bfed1165ebcd0458286c65564736f6c63430008040033

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.