ETH Price: $3,177.53 (-8.17%)
Gas: 2 Gwei

Token

Verse Works ()
 

Overview

Max Total Supply

97,445,076,321

Holders

203

Market

Volume (24H)

0.039 ETH

Min Price (24H)

$123.92 @ 0.039000 ETH

Max Price (24H)

$123.92 @ 0.039000 ETH

Other Info

Filtered by Token Holder
lason.eth
0x24c99c4f527559d4fefa735f5732f0a478864057
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Verse is NFT platform concentrating on curated exhibitions and simple user experience.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LondonToken

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : LondonToken.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

import "./Ownable.sol";
import "./ERC1155.sol";
import "./ERC2981PerTokenRoyalties.sol";

/// @custom:security-contact [email protected]
contract LondonToken is ERC1155, Ownable, ERC2981PerTokenRoyalties {
    constructor(string memory uri_) ERC1155(uri_) {}

    string public constant name = "Verse Works";

    uint256 public totalSupply;

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     * In additionit sets the royalties for `royaltyRecipient` of the value `royaltyValue`.
     *
     * 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 account,
        uint256 id,
        uint256 amount,
        string memory cid,
        address royaltyRecipient,
        uint256 royaltyValue
    ) public onlyOwner {
        _mint(account, id, amount, "");
        if (royaltyValue > 0) {
            _setTokenRoyalty(id, royaltyRecipient, royaltyValue);
        }
        cids[id] = cid;
        totalSupply += amount;
    }

    /**
     * @dev Batch 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,
        string[] memory tokenCids,
        address[] memory royaltyRecipients,
        uint256[] memory royaltyValues
    ) public onlyOwner {
        require(
            ids.length == royaltyRecipients.length &&
                ids.length == royaltyValues.length,
            "ERC1155: Arrays length mismatch"
        );
        _mintBatch(to, ids, amounts, "");

        for (uint256 i; i < ids.length; i++) {
            if (royaltyValues[i] > 0) {
                _setTokenRoyalty(
                    ids[i],
                    royaltyRecipients[i],
                    royaltyValues[i]
                );
            }

            // update IPFS CID
            cids[ids[i]] = tokenCids[i];
        }

        uint256 count;
        for (uint256 i = 0; i < ids.length; i++) {
            for (uint256 j = 0; j < amounts.length; j++) {
                count += ids[i] * amounts[j];
            }
        }
        totalSupply += count;
    }

    /**
     * @dev Checks for supported interface.
     *
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC1155, ERC2981Base)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     * In additionit sets the royalties for `royaltyRecipient` of the value `royaltyValue`.
     * Method emits two transfer events.
     *
     * 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 mintWithCreator(
        address creator,
        address to,
        uint256 tokenId,
        string memory cid,
        address royaltyRecipient,
        uint256 royaltyValue
    ) public onlyOwner {
        require(to != address(0), "mint to the zero address");

        balances[tokenId][to] += 1;
        totalSupply += 1;
        cids[tokenId] = cid;

        if (royaltyValue > 0) {
            _setTokenRoyalty(tokenId, royaltyRecipient, royaltyValue);
        }

        address operator = _msgSender();
        emit TransferSingle(operator, address(0), creator, tokenId, 1);
        emit TransferSingle(operator, creator, to, tokenId, 1);
    }

    /**
     * @dev Sets base URI for metadata.
     *
     */
    function setURI(string memory newuri) public onlyOwner {
        _setURI(newuri);
    }

    /**
     * @dev Sets royalties for `tokenId` and `tokenRecipient` with royalty value `royaltyValue`.
     *
     */
    function setRoyalties(
        uint256 tokenId,
        address royaltyRecipient,
        uint256 royaltyValue
    ) public onlyOwner {
        _setTokenRoyalty(tokenId, royaltyRecipient, royaltyValue);
    }

    /**
     * @dev Sets IPFS cid metadata hash for token id `tokenId`.
     *
     */
    function setCID(uint256 tokenId, string memory cid) public onlyOwner {
        cids[tokenId] = cid;
    }
}

File 2 of 14 : ERC2981PerTokenRoyalties.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

import "./ERC165.sol";

import "./ERC2981Base.sol";

/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
abstract contract ERC2981PerTokenRoyalties is ERC2981Base {
    mapping(uint256 => RoyaltyInfo) internal _royalties;

    /// @dev Sets token royalties
    /// @param tokenId the token id fir which we register the royalties
    /// @param recipient recipient of the royalties
    /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)
    function _setTokenRoyalty(
        uint256 tokenId,
        address recipient,
        uint256 value
    ) internal {
        require(value <= 10000, "ERC2981Royalties: Too high");
        _royalties[tokenId] = RoyaltyInfo(recipient, uint24(value));
    }

    /// @inheritdoc	IERC2981Royalties
    function royaltyInfo(uint256 tokenId, uint256 value)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        RoyaltyInfo memory royalties = _royalties[tokenId];
        receiver = royalties.recipient;
        royaltyAmount = (value * royalties.amount) / 10000;
    }
}

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

pragma solidity 0.8.13;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./IERC1155MetadataURI.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";
import "./Strings.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)) public balances;

    // Mapping from token ID to the IPFS cid
    mapping(uint256 => string) public cids;

    // 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.
    string public baseUri;

    /**
     * @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 id)
        public
        view
        virtual
        override
        returns (string memory)
    {
        return string(abi.encodePacked(baseUri, cids[id]));
    }

    /**
     * @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 {
        baseUri = 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 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 4 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 5 of 14 : 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 6 of 14 : ERC2981Base.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

import "./ERC165.sol";

import "./IERC2981Royalties.sol";

/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
abstract contract ERC2981Base is ERC165, IERC2981Royalties {
    struct RoyaltyInfo {
        address recipient;
        uint24 amount;
    }

    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IERC2981Royalties).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./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 12 of 14 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "./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 13 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 14 of 14 : IERC2981Royalties.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

/// @title IERC2981Royalties
/// @dev Interface for the ERC2981 - Token Royalty standard
interface IERC2981Royalties {
    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _value - the sale price of the NFT asset specified by _tokenId
    /// @return _receiver - address of who should be sent the royalty payment
    /// @return _royaltyAmount - the royalty payment amount for value sale price
    function royaltyInfo(uint256 _tokenId, uint256 _value)
        external
        view
        returns (address _receiver, uint256 _royaltyAmount);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"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":"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"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cids","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"cid","type":"string"},{"internalType":"address","name":"royaltyRecipient","type":"address"},{"internalType":"uint256","name":"royaltyValue","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"string[]","name":"tokenCids","type":"string[]"},{"internalType":"address[]","name":"royaltyRecipients","type":"address[]"},{"internalType":"uint256[]","name":"royaltyValues","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"creator","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"cid","type":"string"},{"internalType":"address","name":"royaltyRecipient","type":"address"},{"internalType":"uint256","name":"royaltyValue","type":"uint256"}],"name":"mintWithCreator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"cid","type":"string"}],"name":"setCID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"royaltyRecipient","type":"address"},{"internalType":"uint256","name":"royaltyValue","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620049f2380380620049f28339818101604052810190620000379190620003a8565b8062000049816200007160201b60201c565b506200006a6200005e6200008d60201b60201c565b6200009560201b60201c565b506200045d565b8060039080519060200190620000899291906200015b565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001699062000428565b90600052602060002090601f0160209004810192826200018d5760008555620001d9565b82601f10620001a857805160ff1916838001178555620001d9565b82800160010185558215620001d9579182015b82811115620001d8578251825591602001919060010190620001bb565b5b509050620001e89190620001ec565b5090565b5b8082111562000207576000816000905550600101620001ed565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002748262000229565b810181811067ffffffffffffffff821117156200029657620002956200023a565b5b80604052505050565b6000620002ab6200020b565b9050620002b9828262000269565b919050565b600067ffffffffffffffff821115620002dc57620002db6200023a565b5b620002e78262000229565b9050602081019050919050565b60005b8381101562000314578082015181840152602081019050620002f7565b8381111562000324576000848401525b50505050565b6000620003416200033b84620002be565b6200029f565b90508281526020810184848401111562000360576200035f62000224565b5b6200036d848285620002f4565b509392505050565b600082601f8301126200038d576200038c6200021f565b5b81516200039f8482602086016200032a565b91505092915050565b600060208284031215620003c157620003c062000215565b5b600082015167ffffffffffffffff811115620003e257620003e16200021a565b5b620003f08482850162000375565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044157607f821691505b602082108103620004575762000456620003f9565b5b50919050565b614585806200046d6000396000f3fe608060405234801561001057600080fd5b506004361061014c5760003560e01c8063704fe710116100c35780639abc83201161007c5780639abc8320146103ae578063a22cb465146103cc578063e2c7f338146103e8578063e985e9c514610404578063f242432a14610434578063f2fde38b146104505761014c565b8063704fe71014610302578063715018a61461033257806382295a2d1461033c5780638d2bb093146103585780638da5cb5b1461037457806398faf29b146103925761014c565b806318160ddd1161011557806318160ddd1461021b5780631f320331146102395780632a55205a146102695780632eb2c2d61461029a5780634e1273f4146102b657806369b52017146102e65761014c565b8062fdd58e1461015157806301ffc9a71461018157806302fe5305146101b157806306fdde03146101cd5780630e89341c146101eb575b600080fd5b61016b600480360381019061016691906128ec565b61046c565b604051610178919061293b565b60405180910390f35b61019b600480360381019061019691906129ae565b610534565b6040516101a891906129f6565b60405180910390f35b6101cb60048036038101906101c69190612b57565b610546565b005b6101d56105ce565b6040516101e29190612c28565b60405180910390f35b61020560048036038101906102009190612c4a565b610607565b6040516102129190612c28565b60405180910390f35b610223610645565b604051610230919061293b565b60405180910390f35b610253600480360381019061024e9190612c77565b61064b565b604051610260919061293b565b60405180910390f35b610283600480360381019061027e9190612cb7565b610670565b604051610291929190612d06565b60405180910390f35b6102b460048036038101906102af9190612e98565b610741565b005b6102d060048036038101906102cb919061302a565b6107e2565b6040516102dd9190613160565b60405180910390f35b61030060048036038101906102fb9190613263565b6108fb565b005b61031c60048036038101906103179190612c4a565b610b90565b6040516103299190612c28565b60405180910390f35b61033a610c30565b005b6103566004803603810190610351919061337c565b610cb8565b005b610372600480360381019061036d91906133d8565b610d60565b005b61037c61101d565b6040516103899190613481565b60405180910390f35b6103ac60048036038101906103a7919061349c565b611047565b005b6103b661113c565b6040516103c39190612c28565b60405180910390f35b6103e660048036038101906103e19190613571565b6111ca565b005b61040260048036038101906103fd91906135b1565b6111e0565b005b61041e60048036038101906104199190613604565b61126c565b60405161042b91906129f6565b60405180910390f35b61044e60048036038101906104499190613644565b611300565b005b61046a600480360381019061046591906136db565b6113a1565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d39061377a565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061053f82611498565b9050919050565b61054e611512565b73ffffffffffffffffffffffffffffffffffffffff1661056c61101d565b73ffffffffffffffffffffffffffffffffffffffff16146105c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b9906137e6565b60405180910390fd5b6105cb8161151a565b50565b6040518060400160405280600b81526020017f566572736520576f726b7300000000000000000000000000000000000000000081525081565b606060036001600084815260200190815260200160002060405160200161062f929190613905565b6040516020818303038152906040529050919050565b60065481565b6000602052816000526040600020602052806000526040600020600091509150505481565b6000806000600560008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900462ffffff1662ffffff1662ffffff1681525050905080600001519250612710816020015162ffffff168561072d9190613958565b61073791906139e1565b9150509250929050565b610749611512565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061078f575061078e85610789611512565b61126c565b5b6107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c590613a84565b60405180910390fd5b6107db8585858585611534565b5050505050565b60608151835114610828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081f90613b16565b60405180910390fd5b6000835167ffffffffffffffff81111561084557610844612a2c565b5b6040519080825280602002602001820160405280156108735781602001602082028036833780820191505090505b50905060005b84518110156108f0576108c085828151811061089857610897613b36565b5b60200260200101518583815181106108b3576108b2613b36565b5b602002602001015161046c565b8282815181106108d3576108d2613b36565b5b602002602001018181525050806108e990613b65565b9050610879565b508091505092915050565b610903611512565b73ffffffffffffffffffffffffffffffffffffffff1661092161101d565b73ffffffffffffffffffffffffffffffffffffffff1614610977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096e906137e6565b60405180910390fd5b81518551148015610989575080518551145b6109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf90613bf9565b60405180910390fd5b6109e386868660405180602001604052806000815250611855565b60005b8551811015610adb576000828281518110610a0457610a03613b36565b5b60200260200101511115610a6c57610a6b868281518110610a2857610a27613b36565b5b6020026020010151848381518110610a4357610a42613b36565b5b6020026020010151848481518110610a5e57610a5d613b36565b5b6020026020010151611a81565b5b838181518110610a7f57610a7e613b36565b5b602002602001015160016000888481518110610a9e57610a9d613b36565b5b602002602001015181526020019081526020016000209080519060200190610ac79291906127a1565b508080610ad390613b65565b9150506109e6565b50600080600090505b8651811015610b6d5760005b8651811015610b5957868181518110610b0c57610b0b613b36565b5b6020026020010151888381518110610b2757610b26613b36565b5b6020026020010151610b399190613958565b83610b449190613c19565b92508080610b5190613b65565b915050610af0565b508080610b6590613b65565b915050610ae4565b508060066000828254610b809190613c19565b9250508190555050505050505050565b60016020528060005260406000206000915090508054610baf90613835565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdb90613835565b8015610c285780601f10610bfd57610100808354040283529160200191610c28565b820191906000526020600020905b815481529060010190602001808311610c0b57829003601f168201915b505050505081565b610c38611512565b73ffffffffffffffffffffffffffffffffffffffff16610c5661101d565b73ffffffffffffffffffffffffffffffffffffffff1614610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906137e6565b60405180910390fd5b610cb66000611b7d565b565b610cc0611512565b73ffffffffffffffffffffffffffffffffffffffff16610cde61101d565b73ffffffffffffffffffffffffffffffffffffffff1614610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b906137e6565b60405180910390fd5b80600160008481526020019081526020016000209080519060200190610d5b9291906127a1565b505050565b610d68611512565b73ffffffffffffffffffffffffffffffffffffffff16610d8661101d565b73ffffffffffffffffffffffffffffffffffffffff1614610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd3906137e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290613cbb565b60405180910390fd5b600160008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610eab9190613c19565b92505081905550600160066000828254610ec59190613c19565b9250508190555082600160008681526020019081526020016000209080519060200190610ef39291906127a1565b506000811115610f0957610f08848383611a81565b5b6000610f13611512565b90508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62886001604051610f8d929190613d20565b60405180910390a48573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288600160405161100c929190613d20565b60405180910390a450505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61104f611512565b73ffffffffffffffffffffffffffffffffffffffff1661106d61101d565b73ffffffffffffffffffffffffffffffffffffffff16146110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba906137e6565b60405180910390fd5b6110de86868660405180602001604052806000815250611c43565b60008111156110f3576110f2858383611a81565b5b8260016000878152602001908152602001600020908051906020019061111a9291906127a1565b50836006600082825461112d9190613c19565b92505081905550505050505050565b6003805461114990613835565b80601f016020809104026020016040519081016040528092919081815260200182805461117590613835565b80156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b505050505081565b6111dc6111d5611512565b8383611df3565b5050565b6111e8611512565b73ffffffffffffffffffffffffffffffffffffffff1661120661101d565b73ffffffffffffffffffffffffffffffffffffffff161461125c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611253906137e6565b60405180910390fd5b611267838383611a81565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611308611512565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061134e575061134d85611348611512565b61126c565b5b61138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490613dbb565b60405180910390fd5b61139a8585858585611f5f565b5050505050565b6113a9611512565b73ffffffffffffffffffffffffffffffffffffffff166113c761101d565b73ffffffffffffffffffffffffffffffffffffffff161461141d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611414906137e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390613e4d565b60405180910390fd5b61149581611b7d565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061150b575061150a826121fa565b5b9050919050565b600033905090565b80600390805190602001906115309291906127a1565b5050565b8151835114611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90613edf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613f71565b60405180910390fd5b60006115f1611512565b90506116018187878787876122dc565b60005b84518110156117b257600085828151811061162257611621613b36565b5b60200260200101519050600085838151811061164157611640613b36565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990614003565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117979190613c19565b92505081905550505050806117ab90613b65565b9050611604565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611829929190614023565b60405180910390a461183f8187878787876122e4565b61184d8187878787876122ec565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb906140cc565b60405180910390fd5b8151835114611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90613edf565b60405180910390fd5b6000611912611512565b9050611923816000878787876122dc565b60005b84518110156119dc5783818151811061194257611941613b36565b5b60200260200101516000808784815181106119605761195f613b36565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119c29190613c19565b9250508190555080806119d490613b65565b915050611926565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a54929190614023565b60405180910390a4611a6b816000878787876122e4565b611a7a816000878787876122ec565b5050505050565b612710811115611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90614138565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff168152506005600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff160217905550905050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca9906140cc565b60405180910390fd5b6000611cbc611512565b90506000611cc9856124c3565b90506000611cd6856124c3565b9050611ce7836000898585896122dc565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d469190613c19565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611dc4929190614158565b60405180910390a4611ddb836000898585896122e4565b611dea8360008989898961253d565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e58906141f3565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f5291906129f6565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc590613f71565b60405180910390fd5b6000611fd8611512565b90506000611fe5856124c3565b90506000611ff2856124c3565b90506120028389898585896122dc565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209090614003565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214e9190613c19565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516121cb929190614158565b60405180910390a46121e1848a8a86868a6122e4565b6121ef848a8a8a8a8a61253d565b505050505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122c557507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122d557506122d482612714565b5b9050919050565b505050505050565b505050505050565b61230b8473ffffffffffffffffffffffffffffffffffffffff1661277e565b156124bb578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612351959493929190614268565b6020604051808303816000875af192505050801561238d57506040513d601f19601f8201168201806040525081019061238a91906142e5565b60015b6124325761239961431f565b806308c379a0036123f557506123ad614341565b806123b857506123f7565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ec9190612c28565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242990614443565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146124b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b0906144d5565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156124e2576124e1612a2c565b5b6040519080825280602002602001820160405280156125105781602001602082028036833780820191505090505b509050828160008151811061252857612527613b36565b5b60200260200101818152505080915050919050565b61255c8473ffffffffffffffffffffffffffffffffffffffff1661277e565b1561270c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016125a29594939291906144f5565b6020604051808303816000875af19250505080156125de57506040513d601f19601f820116820180604052508101906125db91906142e5565b60015b612683576125ea61431f565b806308c379a00361264657506125fe614341565b806126095750612648565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263d9190612c28565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267a90614443565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461270a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612701906144d5565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546127ad90613835565b90600052602060002090601f0160209004810192826127cf5760008555612816565b82601f106127e857805160ff1916838001178555612816565b82800160010185558215612816579182015b828111156128155782518255916020019190600101906127fa565b5b5090506128239190612827565b5090565b5b80821115612840576000816000905550600101612828565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061288382612858565b9050919050565b61289381612878565b811461289e57600080fd5b50565b6000813590506128b08161288a565b92915050565b6000819050919050565b6128c9816128b6565b81146128d457600080fd5b50565b6000813590506128e6816128c0565b92915050565b600080604083850312156129035761290261284e565b5b6000612911858286016128a1565b9250506020612922858286016128d7565b9150509250929050565b612935816128b6565b82525050565b6000602082019050612950600083018461292c565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61298b81612956565b811461299657600080fd5b50565b6000813590506129a881612982565b92915050565b6000602082840312156129c4576129c361284e565b5b60006129d284828501612999565b91505092915050565b60008115159050919050565b6129f0816129db565b82525050565b6000602082019050612a0b60008301846129e7565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a6482612a1b565b810181811067ffffffffffffffff82111715612a8357612a82612a2c565b5b80604052505050565b6000612a96612844565b9050612aa28282612a5b565b919050565b600067ffffffffffffffff821115612ac257612ac1612a2c565b5b612acb82612a1b565b9050602081019050919050565b82818337600083830152505050565b6000612afa612af584612aa7565b612a8c565b905082815260208101848484011115612b1657612b15612a16565b5b612b21848285612ad8565b509392505050565b600082601f830112612b3e57612b3d612a11565b5b8135612b4e848260208601612ae7565b91505092915050565b600060208284031215612b6d57612b6c61284e565b5b600082013567ffffffffffffffff811115612b8b57612b8a612853565b5b612b9784828501612b29565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bda578082015181840152602081019050612bbf565b83811115612be9576000848401525b50505050565b6000612bfa82612ba0565b612c048185612bab565b9350612c14818560208601612bbc565b612c1d81612a1b565b840191505092915050565b60006020820190508181036000830152612c428184612bef565b905092915050565b600060208284031215612c6057612c5f61284e565b5b6000612c6e848285016128d7565b91505092915050565b60008060408385031215612c8e57612c8d61284e565b5b6000612c9c858286016128d7565b9250506020612cad858286016128a1565b9150509250929050565b60008060408385031215612cce57612ccd61284e565b5b6000612cdc858286016128d7565b9250506020612ced858286016128d7565b9150509250929050565b612d0081612878565b82525050565b6000604082019050612d1b6000830185612cf7565b612d28602083018461292c565b9392505050565b600067ffffffffffffffff821115612d4a57612d49612a2c565b5b602082029050602081019050919050565b600080fd5b6000612d73612d6e84612d2f565b612a8c565b90508083825260208201905060208402830185811115612d9657612d95612d5b565b5b835b81811015612dbf5780612dab88826128d7565b845260208401935050602081019050612d98565b5050509392505050565b600082601f830112612dde57612ddd612a11565b5b8135612dee848260208601612d60565b91505092915050565b600067ffffffffffffffff821115612e1257612e11612a2c565b5b612e1b82612a1b565b9050602081019050919050565b6000612e3b612e3684612df7565b612a8c565b905082815260208101848484011115612e5757612e56612a16565b5b612e62848285612ad8565b509392505050565b600082601f830112612e7f57612e7e612a11565b5b8135612e8f848260208601612e28565b91505092915050565b600080600080600060a08688031215612eb457612eb361284e565b5b6000612ec2888289016128a1565b9550506020612ed3888289016128a1565b945050604086013567ffffffffffffffff811115612ef457612ef3612853565b5b612f0088828901612dc9565b935050606086013567ffffffffffffffff811115612f2157612f20612853565b5b612f2d88828901612dc9565b925050608086013567ffffffffffffffff811115612f4e57612f4d612853565b5b612f5a88828901612e6a565b9150509295509295909350565b600067ffffffffffffffff821115612f8257612f81612a2c565b5b602082029050602081019050919050565b6000612fa6612fa184612f67565b612a8c565b90508083825260208201905060208402830185811115612fc957612fc8612d5b565b5b835b81811015612ff25780612fde88826128a1565b845260208401935050602081019050612fcb565b5050509392505050565b600082601f83011261301157613010612a11565b5b8135613021848260208601612f93565b91505092915050565b600080604083850312156130415761304061284e565b5b600083013567ffffffffffffffff81111561305f5761305e612853565b5b61306b85828601612ffc565b925050602083013567ffffffffffffffff81111561308c5761308b612853565b5b61309885828601612dc9565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130d7816128b6565b82525050565b60006130e983836130ce565b60208301905092915050565b6000602082019050919050565b600061310d826130a2565b61311781856130ad565b9350613122836130be565b8060005b8381101561315357815161313a88826130dd565b9750613145836130f5565b925050600181019050613126565b5085935050505092915050565b6000602082019050818103600083015261317a8184613102565b905092915050565b600067ffffffffffffffff82111561319d5761319c612a2c565b5b602082029050602081019050919050565b60006131c16131bc84613182565b612a8c565b905080838252602082019050602084028301858111156131e4576131e3612d5b565b5b835b8181101561322b57803567ffffffffffffffff81111561320957613208612a11565b5b8086016132168982612b29565b855260208501945050506020810190506131e6565b5050509392505050565b600082601f83011261324a57613249612a11565b5b813561325a8482602086016131ae565b91505092915050565b60008060008060008060c087890312156132805761327f61284e565b5b600061328e89828a016128a1565b965050602087013567ffffffffffffffff8111156132af576132ae612853565b5b6132bb89828a01612dc9565b955050604087013567ffffffffffffffff8111156132dc576132db612853565b5b6132e889828a01612dc9565b945050606087013567ffffffffffffffff81111561330957613308612853565b5b61331589828a01613235565b935050608087013567ffffffffffffffff81111561333657613335612853565b5b61334289828a01612ffc565b92505060a087013567ffffffffffffffff81111561336357613362612853565b5b61336f89828a01612dc9565b9150509295509295509295565b600080604083850312156133935761339261284e565b5b60006133a1858286016128d7565b925050602083013567ffffffffffffffff8111156133c2576133c1612853565b5b6133ce85828601612b29565b9150509250929050565b60008060008060008060c087890312156133f5576133f461284e565b5b600061340389828a016128a1565b965050602061341489828a016128a1565b955050604061342589828a016128d7565b945050606087013567ffffffffffffffff81111561344657613445612853565b5b61345289828a01612b29565b935050608061346389828a016128a1565b92505060a061347489828a016128d7565b9150509295509295509295565b60006020820190506134966000830184612cf7565b92915050565b60008060008060008060c087890312156134b9576134b861284e565b5b60006134c789828a016128a1565b96505060206134d889828a016128d7565b95505060406134e989828a016128d7565b945050606087013567ffffffffffffffff81111561350a57613509612853565b5b61351689828a01612b29565b935050608061352789828a016128a1565b92505060a061353889828a016128d7565b9150509295509295509295565b61354e816129db565b811461355957600080fd5b50565b60008135905061356b81613545565b92915050565b600080604083850312156135885761358761284e565b5b6000613596858286016128a1565b92505060206135a78582860161355c565b9150509250929050565b6000806000606084860312156135ca576135c961284e565b5b60006135d8868287016128d7565b93505060206135e9868287016128a1565b92505060406135fa868287016128d7565b9150509250925092565b6000806040838503121561361b5761361a61284e565b5b6000613629858286016128a1565b925050602061363a858286016128a1565b9150509250929050565b600080600080600060a086880312156136605761365f61284e565b5b600061366e888289016128a1565b955050602061367f888289016128a1565b9450506040613690888289016128d7565b93505060606136a1888289016128d7565b925050608086013567ffffffffffffffff8111156136c2576136c1612853565b5b6136ce88828901612e6a565b9150509295509295909350565b6000602082840312156136f1576136f061284e565b5b60006136ff848285016128a1565b91505092915050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613764602b83612bab565b915061376f82613708565b604082019050919050565b6000602082019050818103600083015261379381613757565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137d0602083612bab565b91506137db8261379a565b602082019050919050565b600060208201905081810360008301526137ff816137c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061384d57607f821691505b6020821081036138605761385f613806565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461389381613835565b61389d8186613866565b945060018216600081146138b857600181146138c9576138fc565b60ff198316865281860193506138fc565b6138d285613871565b60005b838110156138f4578154818901526001820191506020810190506138d5565b838801955050505b50505092915050565b60006139118285613886565b915061391d8284613886565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613963826128b6565b915061396e836128b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139a7576139a6613929565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139ec826128b6565b91506139f7836128b6565b925082613a0757613a066139b2565b5b828204905092915050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613a6e603283612bab565b9150613a7982613a12565b604082019050919050565b60006020820190508181036000830152613a9d81613a61565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613b00602983612bab565b9150613b0b82613aa4565b604082019050919050565b60006020820190508181036000830152613b2f81613af3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613b70826128b6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ba257613ba1613929565b5b600182019050919050565b7f455243313135353a20417272617973206c656e677468206d69736d6174636800600082015250565b6000613be3601f83612bab565b9150613bee82613bad565b602082019050919050565b60006020820190508181036000830152613c1281613bd6565b9050919050565b6000613c24826128b6565b9150613c2f836128b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c6457613c63613929565b5b828201905092915050565b7f6d696e7420746f20746865207a65726f20616464726573730000000000000000600082015250565b6000613ca5601883612bab565b9150613cb082613c6f565b602082019050919050565b60006020820190508181036000830152613cd481613c98565b9050919050565b6000819050919050565b6000819050919050565b6000613d0a613d05613d0084613cdb565b613ce5565b6128b6565b9050919050565b613d1a81613cef565b82525050565b6000604082019050613d35600083018561292c565b613d426020830184613d11565b9392505050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000613da5602983612bab565b9150613db082613d49565b604082019050919050565b60006020820190508181036000830152613dd481613d98565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e37602683612bab565b9150613e4282613ddb565b604082019050919050565b60006020820190508181036000830152613e6681613e2a565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613ec9602883612bab565b9150613ed482613e6d565b604082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613f5b602583612bab565b9150613f6682613eff565b604082019050919050565b60006020820190508181036000830152613f8a81613f4e565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613fed602a83612bab565b9150613ff882613f91565b604082019050919050565b6000602082019050818103600083015261401c81613fe0565b9050919050565b6000604082019050818103600083015261403d8185613102565b905081810360208301526140518184613102565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006140b6602183612bab565b91506140c18261405a565b604082019050919050565b600060208201905081810360008301526140e5816140a9565b9050919050565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b6000614122601a83612bab565b915061412d826140ec565b602082019050919050565b6000602082019050818103600083015261415181614115565b9050919050565b600060408201905061416d600083018561292c565b61417a602083018461292c565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006141dd602983612bab565b91506141e882614181565b604082019050919050565b6000602082019050818103600083015261420c816141d0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061423a82614213565b614244818561421e565b9350614254818560208601612bbc565b61425d81612a1b565b840191505092915050565b600060a08201905061427d6000830188612cf7565b61428a6020830187612cf7565b818103604083015261429c8186613102565b905081810360608301526142b08185613102565b905081810360808301526142c4818461422f565b90509695505050505050565b6000815190506142df81612982565b92915050565b6000602082840312156142fb576142fa61284e565b5b6000614309848285016142d0565b91505092915050565b60008160e01c9050919050565b600060033d111561433e5760046000803e61433b600051614312565b90505b90565b600060443d106143ce57614353612844565b60043d036004823e80513d602482011167ffffffffffffffff8211171561437b5750506143ce565b808201805167ffffffffffffffff81111561439957505050506143ce565b80602083010160043d0385018111156143b65750505050506143ce565b6143c582602001850186612a5b565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600061442d603483612bab565b9150614438826143d1565b604082019050919050565b6000602082019050818103600083015261445c81614420565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006144bf602883612bab565b91506144ca82614463565b604082019050919050565b600060208201905081810360008301526144ee816144b2565b9050919050565b600060a08201905061450a6000830188612cf7565b6145176020830187612cf7565b614524604083018661292c565b614531606083018561292c565b8181036080830152614543818461422f565b9050969550505050505056fea2646970667358221220aacb8ef47df655b8e85994c24015e8aa13817da5152e6b9129f3e37042524dba64736f6c634300080d00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f3070726f642e696e667572612d697066732e696f2f697066732f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014c5760003560e01c8063704fe710116100c35780639abc83201161007c5780639abc8320146103ae578063a22cb465146103cc578063e2c7f338146103e8578063e985e9c514610404578063f242432a14610434578063f2fde38b146104505761014c565b8063704fe71014610302578063715018a61461033257806382295a2d1461033c5780638d2bb093146103585780638da5cb5b1461037457806398faf29b146103925761014c565b806318160ddd1161011557806318160ddd1461021b5780631f320331146102395780632a55205a146102695780632eb2c2d61461029a5780634e1273f4146102b657806369b52017146102e65761014c565b8062fdd58e1461015157806301ffc9a71461018157806302fe5305146101b157806306fdde03146101cd5780630e89341c146101eb575b600080fd5b61016b600480360381019061016691906128ec565b61046c565b604051610178919061293b565b60405180910390f35b61019b600480360381019061019691906129ae565b610534565b6040516101a891906129f6565b60405180910390f35b6101cb60048036038101906101c69190612b57565b610546565b005b6101d56105ce565b6040516101e29190612c28565b60405180910390f35b61020560048036038101906102009190612c4a565b610607565b6040516102129190612c28565b60405180910390f35b610223610645565b604051610230919061293b565b60405180910390f35b610253600480360381019061024e9190612c77565b61064b565b604051610260919061293b565b60405180910390f35b610283600480360381019061027e9190612cb7565b610670565b604051610291929190612d06565b60405180910390f35b6102b460048036038101906102af9190612e98565b610741565b005b6102d060048036038101906102cb919061302a565b6107e2565b6040516102dd9190613160565b60405180910390f35b61030060048036038101906102fb9190613263565b6108fb565b005b61031c60048036038101906103179190612c4a565b610b90565b6040516103299190612c28565b60405180910390f35b61033a610c30565b005b6103566004803603810190610351919061337c565b610cb8565b005b610372600480360381019061036d91906133d8565b610d60565b005b61037c61101d565b6040516103899190613481565b60405180910390f35b6103ac60048036038101906103a7919061349c565b611047565b005b6103b661113c565b6040516103c39190612c28565b60405180910390f35b6103e660048036038101906103e19190613571565b6111ca565b005b61040260048036038101906103fd91906135b1565b6111e0565b005b61041e60048036038101906104199190613604565b61126c565b60405161042b91906129f6565b60405180910390f35b61044e60048036038101906104499190613644565b611300565b005b61046a600480360381019061046591906136db565b6113a1565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d39061377a565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061053f82611498565b9050919050565b61054e611512565b73ffffffffffffffffffffffffffffffffffffffff1661056c61101d565b73ffffffffffffffffffffffffffffffffffffffff16146105c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b9906137e6565b60405180910390fd5b6105cb8161151a565b50565b6040518060400160405280600b81526020017f566572736520576f726b7300000000000000000000000000000000000000000081525081565b606060036001600084815260200190815260200160002060405160200161062f929190613905565b6040516020818303038152906040529050919050565b60065481565b6000602052816000526040600020602052806000526040600020600091509150505481565b6000806000600560008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900462ffffff1662ffffff1662ffffff1681525050905080600001519250612710816020015162ffffff168561072d9190613958565b61073791906139e1565b9150509250929050565b610749611512565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061078f575061078e85610789611512565b61126c565b5b6107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c590613a84565b60405180910390fd5b6107db8585858585611534565b5050505050565b60608151835114610828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081f90613b16565b60405180910390fd5b6000835167ffffffffffffffff81111561084557610844612a2c565b5b6040519080825280602002602001820160405280156108735781602001602082028036833780820191505090505b50905060005b84518110156108f0576108c085828151811061089857610897613b36565b5b60200260200101518583815181106108b3576108b2613b36565b5b602002602001015161046c565b8282815181106108d3576108d2613b36565b5b602002602001018181525050806108e990613b65565b9050610879565b508091505092915050565b610903611512565b73ffffffffffffffffffffffffffffffffffffffff1661092161101d565b73ffffffffffffffffffffffffffffffffffffffff1614610977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096e906137e6565b60405180910390fd5b81518551148015610989575080518551145b6109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf90613bf9565b60405180910390fd5b6109e386868660405180602001604052806000815250611855565b60005b8551811015610adb576000828281518110610a0457610a03613b36565b5b60200260200101511115610a6c57610a6b868281518110610a2857610a27613b36565b5b6020026020010151848381518110610a4357610a42613b36565b5b6020026020010151848481518110610a5e57610a5d613b36565b5b6020026020010151611a81565b5b838181518110610a7f57610a7e613b36565b5b602002602001015160016000888481518110610a9e57610a9d613b36565b5b602002602001015181526020019081526020016000209080519060200190610ac79291906127a1565b508080610ad390613b65565b9150506109e6565b50600080600090505b8651811015610b6d5760005b8651811015610b5957868181518110610b0c57610b0b613b36565b5b6020026020010151888381518110610b2757610b26613b36565b5b6020026020010151610b399190613958565b83610b449190613c19565b92508080610b5190613b65565b915050610af0565b508080610b6590613b65565b915050610ae4565b508060066000828254610b809190613c19565b9250508190555050505050505050565b60016020528060005260406000206000915090508054610baf90613835565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdb90613835565b8015610c285780601f10610bfd57610100808354040283529160200191610c28565b820191906000526020600020905b815481529060010190602001808311610c0b57829003601f168201915b505050505081565b610c38611512565b73ffffffffffffffffffffffffffffffffffffffff16610c5661101d565b73ffffffffffffffffffffffffffffffffffffffff1614610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906137e6565b60405180910390fd5b610cb66000611b7d565b565b610cc0611512565b73ffffffffffffffffffffffffffffffffffffffff16610cde61101d565b73ffffffffffffffffffffffffffffffffffffffff1614610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b906137e6565b60405180910390fd5b80600160008481526020019081526020016000209080519060200190610d5b9291906127a1565b505050565b610d68611512565b73ffffffffffffffffffffffffffffffffffffffff16610d8661101d565b73ffffffffffffffffffffffffffffffffffffffff1614610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd3906137e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290613cbb565b60405180910390fd5b600160008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610eab9190613c19565b92505081905550600160066000828254610ec59190613c19565b9250508190555082600160008681526020019081526020016000209080519060200190610ef39291906127a1565b506000811115610f0957610f08848383611a81565b5b6000610f13611512565b90508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62886001604051610f8d929190613d20565b60405180910390a48573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288600160405161100c929190613d20565b60405180910390a450505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61104f611512565b73ffffffffffffffffffffffffffffffffffffffff1661106d61101d565b73ffffffffffffffffffffffffffffffffffffffff16146110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba906137e6565b60405180910390fd5b6110de86868660405180602001604052806000815250611c43565b60008111156110f3576110f2858383611a81565b5b8260016000878152602001908152602001600020908051906020019061111a9291906127a1565b50836006600082825461112d9190613c19565b92505081905550505050505050565b6003805461114990613835565b80601f016020809104026020016040519081016040528092919081815260200182805461117590613835565b80156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b505050505081565b6111dc6111d5611512565b8383611df3565b5050565b6111e8611512565b73ffffffffffffffffffffffffffffffffffffffff1661120661101d565b73ffffffffffffffffffffffffffffffffffffffff161461125c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611253906137e6565b60405180910390fd5b611267838383611a81565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611308611512565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061134e575061134d85611348611512565b61126c565b5b61138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490613dbb565b60405180910390fd5b61139a8585858585611f5f565b5050505050565b6113a9611512565b73ffffffffffffffffffffffffffffffffffffffff166113c761101d565b73ffffffffffffffffffffffffffffffffffffffff161461141d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611414906137e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390613e4d565b60405180910390fd5b61149581611b7d565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061150b575061150a826121fa565b5b9050919050565b600033905090565b80600390805190602001906115309291906127a1565b5050565b8151835114611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90613edf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613f71565b60405180910390fd5b60006115f1611512565b90506116018187878787876122dc565b60005b84518110156117b257600085828151811061162257611621613b36565b5b60200260200101519050600085838151811061164157611640613b36565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990614003565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117979190613c19565b92505081905550505050806117ab90613b65565b9050611604565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611829929190614023565b60405180910390a461183f8187878787876122e4565b61184d8187878787876122ec565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb906140cc565b60405180910390fd5b8151835114611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90613edf565b60405180910390fd5b6000611912611512565b9050611923816000878787876122dc565b60005b84518110156119dc5783818151811061194257611941613b36565b5b60200260200101516000808784815181106119605761195f613b36565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119c29190613c19565b9250508190555080806119d490613b65565b915050611926565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a54929190614023565b60405180910390a4611a6b816000878787876122e4565b611a7a816000878787876122ec565b5050505050565b612710811115611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90614138565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff168152506005600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff160217905550905050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca9906140cc565b60405180910390fd5b6000611cbc611512565b90506000611cc9856124c3565b90506000611cd6856124c3565b9050611ce7836000898585896122dc565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d469190613c19565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611dc4929190614158565b60405180910390a4611ddb836000898585896122e4565b611dea8360008989898961253d565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e58906141f3565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f5291906129f6565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc590613f71565b60405180910390fd5b6000611fd8611512565b90506000611fe5856124c3565b90506000611ff2856124c3565b90506120028389898585896122dc565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209090614003565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214e9190613c19565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516121cb929190614158565b60405180910390a46121e1848a8a86868a6122e4565b6121ef848a8a8a8a8a61253d565b505050505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122c557507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122d557506122d482612714565b5b9050919050565b505050505050565b505050505050565b61230b8473ffffffffffffffffffffffffffffffffffffffff1661277e565b156124bb578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612351959493929190614268565b6020604051808303816000875af192505050801561238d57506040513d601f19601f8201168201806040525081019061238a91906142e5565b60015b6124325761239961431f565b806308c379a0036123f557506123ad614341565b806123b857506123f7565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ec9190612c28565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242990614443565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146124b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b0906144d5565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156124e2576124e1612a2c565b5b6040519080825280602002602001820160405280156125105781602001602082028036833780820191505090505b509050828160008151811061252857612527613b36565b5b60200260200101818152505080915050919050565b61255c8473ffffffffffffffffffffffffffffffffffffffff1661277e565b1561270c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016125a29594939291906144f5565b6020604051808303816000875af19250505080156125de57506040513d601f19601f820116820180604052508101906125db91906142e5565b60015b612683576125ea61431f565b806308c379a00361264657506125fe614341565b806126095750612648565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263d9190612c28565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267a90614443565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461270a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612701906144d5565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546127ad90613835565b90600052602060002090601f0160209004810192826127cf5760008555612816565b82601f106127e857805160ff1916838001178555612816565b82800160010185558215612816579182015b828111156128155782518255916020019190600101906127fa565b5b5090506128239190612827565b5090565b5b80821115612840576000816000905550600101612828565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061288382612858565b9050919050565b61289381612878565b811461289e57600080fd5b50565b6000813590506128b08161288a565b92915050565b6000819050919050565b6128c9816128b6565b81146128d457600080fd5b50565b6000813590506128e6816128c0565b92915050565b600080604083850312156129035761290261284e565b5b6000612911858286016128a1565b9250506020612922858286016128d7565b9150509250929050565b612935816128b6565b82525050565b6000602082019050612950600083018461292c565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61298b81612956565b811461299657600080fd5b50565b6000813590506129a881612982565b92915050565b6000602082840312156129c4576129c361284e565b5b60006129d284828501612999565b91505092915050565b60008115159050919050565b6129f0816129db565b82525050565b6000602082019050612a0b60008301846129e7565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a6482612a1b565b810181811067ffffffffffffffff82111715612a8357612a82612a2c565b5b80604052505050565b6000612a96612844565b9050612aa28282612a5b565b919050565b600067ffffffffffffffff821115612ac257612ac1612a2c565b5b612acb82612a1b565b9050602081019050919050565b82818337600083830152505050565b6000612afa612af584612aa7565b612a8c565b905082815260208101848484011115612b1657612b15612a16565b5b612b21848285612ad8565b509392505050565b600082601f830112612b3e57612b3d612a11565b5b8135612b4e848260208601612ae7565b91505092915050565b600060208284031215612b6d57612b6c61284e565b5b600082013567ffffffffffffffff811115612b8b57612b8a612853565b5b612b9784828501612b29565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bda578082015181840152602081019050612bbf565b83811115612be9576000848401525b50505050565b6000612bfa82612ba0565b612c048185612bab565b9350612c14818560208601612bbc565b612c1d81612a1b565b840191505092915050565b60006020820190508181036000830152612c428184612bef565b905092915050565b600060208284031215612c6057612c5f61284e565b5b6000612c6e848285016128d7565b91505092915050565b60008060408385031215612c8e57612c8d61284e565b5b6000612c9c858286016128d7565b9250506020612cad858286016128a1565b9150509250929050565b60008060408385031215612cce57612ccd61284e565b5b6000612cdc858286016128d7565b9250506020612ced858286016128d7565b9150509250929050565b612d0081612878565b82525050565b6000604082019050612d1b6000830185612cf7565b612d28602083018461292c565b9392505050565b600067ffffffffffffffff821115612d4a57612d49612a2c565b5b602082029050602081019050919050565b600080fd5b6000612d73612d6e84612d2f565b612a8c565b90508083825260208201905060208402830185811115612d9657612d95612d5b565b5b835b81811015612dbf5780612dab88826128d7565b845260208401935050602081019050612d98565b5050509392505050565b600082601f830112612dde57612ddd612a11565b5b8135612dee848260208601612d60565b91505092915050565b600067ffffffffffffffff821115612e1257612e11612a2c565b5b612e1b82612a1b565b9050602081019050919050565b6000612e3b612e3684612df7565b612a8c565b905082815260208101848484011115612e5757612e56612a16565b5b612e62848285612ad8565b509392505050565b600082601f830112612e7f57612e7e612a11565b5b8135612e8f848260208601612e28565b91505092915050565b600080600080600060a08688031215612eb457612eb361284e565b5b6000612ec2888289016128a1565b9550506020612ed3888289016128a1565b945050604086013567ffffffffffffffff811115612ef457612ef3612853565b5b612f0088828901612dc9565b935050606086013567ffffffffffffffff811115612f2157612f20612853565b5b612f2d88828901612dc9565b925050608086013567ffffffffffffffff811115612f4e57612f4d612853565b5b612f5a88828901612e6a565b9150509295509295909350565b600067ffffffffffffffff821115612f8257612f81612a2c565b5b602082029050602081019050919050565b6000612fa6612fa184612f67565b612a8c565b90508083825260208201905060208402830185811115612fc957612fc8612d5b565b5b835b81811015612ff25780612fde88826128a1565b845260208401935050602081019050612fcb565b5050509392505050565b600082601f83011261301157613010612a11565b5b8135613021848260208601612f93565b91505092915050565b600080604083850312156130415761304061284e565b5b600083013567ffffffffffffffff81111561305f5761305e612853565b5b61306b85828601612ffc565b925050602083013567ffffffffffffffff81111561308c5761308b612853565b5b61309885828601612dc9565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130d7816128b6565b82525050565b60006130e983836130ce565b60208301905092915050565b6000602082019050919050565b600061310d826130a2565b61311781856130ad565b9350613122836130be565b8060005b8381101561315357815161313a88826130dd565b9750613145836130f5565b925050600181019050613126565b5085935050505092915050565b6000602082019050818103600083015261317a8184613102565b905092915050565b600067ffffffffffffffff82111561319d5761319c612a2c565b5b602082029050602081019050919050565b60006131c16131bc84613182565b612a8c565b905080838252602082019050602084028301858111156131e4576131e3612d5b565b5b835b8181101561322b57803567ffffffffffffffff81111561320957613208612a11565b5b8086016132168982612b29565b855260208501945050506020810190506131e6565b5050509392505050565b600082601f83011261324a57613249612a11565b5b813561325a8482602086016131ae565b91505092915050565b60008060008060008060c087890312156132805761327f61284e565b5b600061328e89828a016128a1565b965050602087013567ffffffffffffffff8111156132af576132ae612853565b5b6132bb89828a01612dc9565b955050604087013567ffffffffffffffff8111156132dc576132db612853565b5b6132e889828a01612dc9565b945050606087013567ffffffffffffffff81111561330957613308612853565b5b61331589828a01613235565b935050608087013567ffffffffffffffff81111561333657613335612853565b5b61334289828a01612ffc565b92505060a087013567ffffffffffffffff81111561336357613362612853565b5b61336f89828a01612dc9565b9150509295509295509295565b600080604083850312156133935761339261284e565b5b60006133a1858286016128d7565b925050602083013567ffffffffffffffff8111156133c2576133c1612853565b5b6133ce85828601612b29565b9150509250929050565b60008060008060008060c087890312156133f5576133f461284e565b5b600061340389828a016128a1565b965050602061341489828a016128a1565b955050604061342589828a016128d7565b945050606087013567ffffffffffffffff81111561344657613445612853565b5b61345289828a01612b29565b935050608061346389828a016128a1565b92505060a061347489828a016128d7565b9150509295509295509295565b60006020820190506134966000830184612cf7565b92915050565b60008060008060008060c087890312156134b9576134b861284e565b5b60006134c789828a016128a1565b96505060206134d889828a016128d7565b95505060406134e989828a016128d7565b945050606087013567ffffffffffffffff81111561350a57613509612853565b5b61351689828a01612b29565b935050608061352789828a016128a1565b92505060a061353889828a016128d7565b9150509295509295509295565b61354e816129db565b811461355957600080fd5b50565b60008135905061356b81613545565b92915050565b600080604083850312156135885761358761284e565b5b6000613596858286016128a1565b92505060206135a78582860161355c565b9150509250929050565b6000806000606084860312156135ca576135c961284e565b5b60006135d8868287016128d7565b93505060206135e9868287016128a1565b92505060406135fa868287016128d7565b9150509250925092565b6000806040838503121561361b5761361a61284e565b5b6000613629858286016128a1565b925050602061363a858286016128a1565b9150509250929050565b600080600080600060a086880312156136605761365f61284e565b5b600061366e888289016128a1565b955050602061367f888289016128a1565b9450506040613690888289016128d7565b93505060606136a1888289016128d7565b925050608086013567ffffffffffffffff8111156136c2576136c1612853565b5b6136ce88828901612e6a565b9150509295509295909350565b6000602082840312156136f1576136f061284e565b5b60006136ff848285016128a1565b91505092915050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613764602b83612bab565b915061376f82613708565b604082019050919050565b6000602082019050818103600083015261379381613757565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137d0602083612bab565b91506137db8261379a565b602082019050919050565b600060208201905081810360008301526137ff816137c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061384d57607f821691505b6020821081036138605761385f613806565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461389381613835565b61389d8186613866565b945060018216600081146138b857600181146138c9576138fc565b60ff198316865281860193506138fc565b6138d285613871565b60005b838110156138f4578154818901526001820191506020810190506138d5565b838801955050505b50505092915050565b60006139118285613886565b915061391d8284613886565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613963826128b6565b915061396e836128b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139a7576139a6613929565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139ec826128b6565b91506139f7836128b6565b925082613a0757613a066139b2565b5b828204905092915050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613a6e603283612bab565b9150613a7982613a12565b604082019050919050565b60006020820190508181036000830152613a9d81613a61565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613b00602983612bab565b9150613b0b82613aa4565b604082019050919050565b60006020820190508181036000830152613b2f81613af3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613b70826128b6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ba257613ba1613929565b5b600182019050919050565b7f455243313135353a20417272617973206c656e677468206d69736d6174636800600082015250565b6000613be3601f83612bab565b9150613bee82613bad565b602082019050919050565b60006020820190508181036000830152613c1281613bd6565b9050919050565b6000613c24826128b6565b9150613c2f836128b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c6457613c63613929565b5b828201905092915050565b7f6d696e7420746f20746865207a65726f20616464726573730000000000000000600082015250565b6000613ca5601883612bab565b9150613cb082613c6f565b602082019050919050565b60006020820190508181036000830152613cd481613c98565b9050919050565b6000819050919050565b6000819050919050565b6000613d0a613d05613d0084613cdb565b613ce5565b6128b6565b9050919050565b613d1a81613cef565b82525050565b6000604082019050613d35600083018561292c565b613d426020830184613d11565b9392505050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000613da5602983612bab565b9150613db082613d49565b604082019050919050565b60006020820190508181036000830152613dd481613d98565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e37602683612bab565b9150613e4282613ddb565b604082019050919050565b60006020820190508181036000830152613e6681613e2a565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613ec9602883612bab565b9150613ed482613e6d565b604082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613f5b602583612bab565b9150613f6682613eff565b604082019050919050565b60006020820190508181036000830152613f8a81613f4e565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613fed602a83612bab565b9150613ff882613f91565b604082019050919050565b6000602082019050818103600083015261401c81613fe0565b9050919050565b6000604082019050818103600083015261403d8185613102565b905081810360208301526140518184613102565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006140b6602183612bab565b91506140c18261405a565b604082019050919050565b600060208201905081810360008301526140e5816140a9565b9050919050565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b6000614122601a83612bab565b915061412d826140ec565b602082019050919050565b6000602082019050818103600083015261415181614115565b9050919050565b600060408201905061416d600083018561292c565b61417a602083018461292c565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006141dd602983612bab565b91506141e882614181565b604082019050919050565b6000602082019050818103600083015261420c816141d0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061423a82614213565b614244818561421e565b9350614254818560208601612bbc565b61425d81612a1b565b840191505092915050565b600060a08201905061427d6000830188612cf7565b61428a6020830187612cf7565b818103604083015261429c8186613102565b905081810360608301526142b08185613102565b905081810360808301526142c4818461422f565b90509695505050505050565b6000815190506142df81612982565b92915050565b6000602082840312156142fb576142fa61284e565b5b6000614309848285016142d0565b91505092915050565b60008160e01c9050919050565b600060033d111561433e5760046000803e61433b600051614312565b90505b90565b600060443d106143ce57614353612844565b60043d036004823e80513d602482011167ffffffffffffffff8211171561437b5750506143ce565b808201805167ffffffffffffffff81111561439957505050506143ce565b80602083010160043d0385018111156143b65750505050506143ce565b6143c582602001850186612a5b565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600061442d603483612bab565b9150614438826143d1565b604082019050919050565b6000602082019050818103600083015261445c81614420565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006144bf602883612bab565b91506144ca82614463565b604082019050919050565b600060208201905081810360008301526144ee816144b2565b9050919050565b600060a08201905061450a6000830188612cf7565b6145176020830187612cf7565b614524604083018661292c565b614531606083018561292c565b8181036080830152614543818461422f565b9050969550505050505056fea2646970667358221220aacb8ef47df655b8e85994c24015e8aa13817da5152e6b9129f3e37042524dba64736f6c634300080d0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f3070726f642e696e667572612d697066732e696f2f697066732f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : uri_ (string): https://0prod.infura-ipfs.io/ipfs/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [2] : 68747470733a2f2f3070726f642e696e667572612d697066732e696f2f697066
Arg [3] : 732f000000000000000000000000000000000000000000000000000000000000


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.