ETH Price: $2,976.22 (-8.19%)
 

Overview

Max Total Supply

867 WANNABOT

Holders

145

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
WannabotLnft

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : WannabotLnft.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.19;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";

interface IERC721 {
    function balanceOf(address owner) external view returns (uint256 balance);
}

contract WannabotLnft is ERC1155Supply, Ownable, Pausable {
    mapping(uint256 => uint256) public tokenPrices;
    mapping(uint => string) public tokenURI;
    address public d3NftAddress;

    mapping(address => uint256) private mintedAmount;
    uint256 public combinedTotalSupply=0;

    string public name;
    string public symbol;

    constructor(address _d3NftAddress) ERC1155("") {
        name = "Wanna.bot";
        symbol = "WANNABOT";
        tokenPrices[1] = 0.1 ether;
        tokenPrices[2] = 0.066 ether;
        setURI(1, "ipfs://QmcgJyjCgGVpcQGXJeJgCGFUFttrbYAziDi9tadYPA93LF");
        setURI(2, "ipfs://QmNtHdKGRrq8PmbVXHHDD8oLec5f8YhWgfUXeRsDq7WMaY");
        d3NftAddress = _d3NftAddress;
        pause();
    }

    function mint(uint256 tokenID, uint256 amount) whenNotPaused public payable {
        uint256 price = tokenPrices[tokenID];
        require(price > 0, "Token not available for minting");
        require(msg.value >= price * amount, "Insufficient funds to mint");

        uint256 totalMinted = mintedAmount[msg.sender] + amount;
        require(
            totalMinted <= checkERC721Balance(msg.sender),
            "Total mint amount exceeds balance of D3 NFT"
        );

        combinedTotalSupply+=amount;
        mintedAmount[msg.sender] = totalMinted;
        _mint(msg.sender, tokenID, amount, "");
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        (bool os, ) = payable(owner()).call{value: balance}("");
        require(os, "Failed to send Ether");
    }

    function setTokenPrice(uint256 tokenID, uint256 price) public onlyOwner {
        tokenPrices[tokenID] = price;
    }

    function setURI(uint _id, string memory _uri) public onlyOwner {
        tokenURI[_id] = _uri;
        emit URI(_uri, _id);
    }

    function uri(uint _id) public view override returns (string memory) {
        return tokenURI[_id];
    }

    function checkERC721Balance(address owner) public view returns (uint256) {
        IERC721 erc721 = IERC721(d3NftAddress);
        return erc721.balanceOf(owner);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }
}

File 2 of 12 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        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 token owner or 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: caller is not token owner or approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * 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 _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {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 `ids` and `amounts` 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 5 of 12 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_d3NftAddress","type":"address"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"address","name":"owner","type":"address"}],"name":"checkERC721Balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"combinedTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"d3NftAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"uint256","name":"price","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_uri","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenPrices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006009553480156200001657600080fd5b5060405162004bb738038062004bb783398181016040528101906200003c919062000594565b604051806020016040528060008152506200005d816200021860201b60201c565b506200007e620000726200022d60201b60201c565b6200023560201b60201c565b6000600460146101000a81548160ff0219169083151502179055506040518060400160405280600981526020017f57616e6e612e626f740000000000000000000000000000000000000000000000815250600a9081620000df919062000840565b506040518060400160405280600881526020017f57414e4e41424f54000000000000000000000000000000000000000000000000815250600b908162000126919062000840565b5067016345785d8a000060056000600181526020019081526020016000208190555066ea7aa67b2d000060056000600281526020019081526020016000208190555062000194600160405180606001604052806035815260200162004b4d60359139620002fb60201b60201c565b620001c0600260405180606001604052806035815260200162004b8260359139620002fb60201b60201c565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002116200036c60201b60201c565b5062000aec565b806002908162000229919062000840565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200030b6200038e60201b60201c565b806006600084815260200190815260200160002090816200032d919062000840565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051620003609190620009b6565b60405180910390a25050565b6200037c6200038e60201b60201c565b6200038c6200041f60201b60201c565b565b6200039e6200022d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003c46200049460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200041d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004149062000a2a565b60405180910390fd5b565b6200042f620004be60201b60201c565b6001600460146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200047b6200022d60201b60201c565b6040516200048a919062000a5d565b60405180910390a1565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004ce6200051360201b60201c565b1562000511576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005089062000aca565b60405180910390fd5b565b6000600460149054906101000a900460ff16905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200055c826200052f565b9050919050565b6200056e816200054f565b81146200057a57600080fd5b50565b6000815190506200058e8162000563565b92915050565b600060208284031215620005ad57620005ac6200052a565b5b6000620005bd848285016200057d565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200064857607f821691505b6020821081036200065e576200065d62000600565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006c87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000689565b620006d4868362000689565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007216200071b6200071584620006ec565b620006f6565b620006ec565b9050919050565b6000819050919050565b6200073d8362000700565b620007556200074c8262000728565b84845462000696565b825550505050565b600090565b6200076c6200075d565b6200077981848462000732565b505050565b5b81811015620007a1576200079560008262000762565b6001810190506200077f565b5050565b601f821115620007f057620007ba8162000664565b620007c58462000679565b81016020851015620007d5578190505b620007ed620007e48562000679565b8301826200077e565b50505b505050565b600082821c905092915050565b60006200081560001984600802620007f5565b1980831691505092915050565b600062000830838362000802565b9150826002028217905092915050565b6200084b82620005c6565b67ffffffffffffffff811115620008675762000866620005d1565b5b6200087382546200062f565b62000880828285620007a5565b600060209050601f831160018114620008b85760008415620008a3578287015190505b620008af858262000822565b8655506200091f565b601f198416620008c88662000664565b60005b82811015620008f257848901518255600182019150602085019450602081019050620008cb565b868310156200091257848901516200090e601f89168262000802565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b60005b83811015620009585780820151818401526020810190506200093b565b60008484015250505050565b6000601f19601f8301169050919050565b60006200098282620005c6565b6200098e818562000927565b9350620009a081856020860162000938565b620009ab8162000964565b840191505092915050565b60006020820190508181036000830152620009d2818462000975565b905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000a1260208362000927565b915062000a1f82620009da565b602082019050919050565b6000602082019050818103600083015262000a458162000a03565b9050919050565b62000a57816200054f565b82525050565b600060208201905062000a74600083018462000a4c565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000ab260108362000927565b915062000abf8262000a7a565b602082019050919050565b6000602082019050818103600083015262000ae58162000aa3565b9050919050565b6140518062000afc6000396000f3fe60806040526004361061019b5760003560e01c8063862440e2116100ec578063e37942341161008a578063e985e9c511610064578063e985e9c5146105ba578063eb685c47146105f7578063f242432a14610620578063f2fde38b146106495761019b565b8063e379423414610515578063e465bb3314610540578063e5afe3e61461057d5761019b565b806395d89b41116100c657806395d89b4114610447578063a22cb46514610472578063bd85b0391461049b578063c87b56dd146104d85761019b565b8063862440e2146103c85780638da5cb5b146103f15780638de1024a1461041c5761019b565b80633ccfd60b116101595780634f558e79116101335780634f558e79146103325780635c975abb1461036f578063715018a61461039a5780638456cb59146103b15761019b565b80633ccfd60b146102c75780633f4ba83a146102de5780634e1273f4146102f55761019b565b8062fdd58e146101a057806301ffc9a7146101dd57806306fdde031461021a5780630e89341c146102455780631b2ef1ca146102825780632eb2c2d61461029e575b600080fd5b3480156101ac57600080fd5b506101c760048036038101906101c2919061256d565b610672565b6040516101d491906125bc565b60405180910390f35b3480156101e957600080fd5b5061020460048036038101906101ff919061262f565b61073a565b6040516102119190612677565b60405180910390f35b34801561022657600080fd5b5061022f61081c565b60405161023c9190612722565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612744565b6108aa565b6040516102799190612722565b60405180910390f35b61029c60048036038101906102979190612771565b61094f565b005b3480156102aa57600080fd5b506102c560048036038101906102c091906129ae565b610b18565b005b3480156102d357600080fd5b506102dc610bb9565b005b3480156102ea57600080fd5b506102f3610c7d565b005b34801561030157600080fd5b5061031c60048036038101906103179190612b40565b610c8f565b6040516103299190612c76565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190612744565b610da8565b6040516103669190612677565b60405180910390f35b34801561037b57600080fd5b50610384610dbc565b6040516103919190612677565b60405180910390f35b3480156103a657600080fd5b506103af610dd3565b005b3480156103bd57600080fd5b506103c6610de7565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612d39565b610df9565b005b3480156103fd57600080fd5b50610406610e5e565b6040516104139190612da4565b60405180910390f35b34801561042857600080fd5b50610431610e88565b60405161043e9190612da4565b60405180910390f35b34801561045357600080fd5b5061045c610eae565b6040516104699190612722565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190612deb565b610f3c565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190612744565b610f52565b6040516104cf91906125bc565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190612744565b610f6f565b60405161050c9190612722565b60405180910390f35b34801561052157600080fd5b5061052a61100f565b60405161053791906125bc565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190612e2b565b611015565b60405161057491906125bc565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190612744565b6110bf565b6040516105b191906125bc565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc9190612e58565b6110d7565b6040516105ee9190612677565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190612771565b61116b565b005b34801561062c57600080fd5b5061064760048036038101906106429190612e98565b61118f565b005b34801561065557600080fd5b50610670600480360381019061066b9190612e2b565b611230565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d990612fa1565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080557507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108155750610814826112b3565b5b9050919050565b600a805461082990612ff0565b80601f016020809104026020016040519081016040528092919081815260200182805461085590612ff0565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b505050505081565b60606006600083815260200190815260200160002080546108ca90612ff0565b80601f01602080910402602001604051908101604052809291908181526020018280546108f690612ff0565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b50505050509050919050565b61095761131d565b600060056000848152602001908152602001600020549050600081116109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a99061306d565b60405180910390fd5b81816109be91906130bc565b341015610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f79061314a565b60405180910390fd5b600082600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a4d919061316a565b9050610a5833611015565b811115610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190613210565b60405180910390fd5b8260096000828254610aac919061316a565b9250508190555080600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b1233858560405180602001604052806000815250611367565b50505050565b610b20611517565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b665750610b6585610b60611517565b6110d7565b5b610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c906132a2565b60405180910390fd5b610bb2858585858561151f565b5050505050565b610bc1611840565b60004790506000610bd0610e5e565b73ffffffffffffffffffffffffffffffffffffffff1682604051610bf3906132f3565b60006040518083038185875af1925050503d8060008114610c30576040519150601f19603f3d011682016040523d82523d6000602084013e610c35565b606091505b5050905080610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090613354565b60405180910390fd5b5050565b610c85611840565b610c8d6118be565b565b60608151835114610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc906133e6565b60405180910390fd5b6000835167ffffffffffffffff811115610cf257610cf16127b6565b5b604051908082528060200260200182016040528015610d205781602001602082028036833780820191505090505b50905060005b8451811015610d9d57610d6d858281518110610d4557610d44613406565b5b6020026020010151858381518110610d6057610d5f613406565b5b6020026020010151610672565b828281518110610d8057610d7f613406565b5b60200260200101818152505080610d9690613435565b9050610d26565b508091505092915050565b600080610db483610f52565b119050919050565b6000600460149054906101000a900460ff16905090565b610ddb611840565b610de56000611921565b565b610def611840565b610df76119e7565b565b610e01611840565b80600660008481526020019081526020016000209081610e219190613629565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610e529190612722565b60405180910390a25050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b8054610ebb90612ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee790612ff0565b8015610f345780601f10610f0957610100808354040283529160200191610f34565b820191906000526020600020905b815481529060010190602001808311610f1757829003601f168201915b505050505081565b610f4e610f47611517565b8383611a4a565b5050565b600060036000838152602001908152602001600020549050919050565b60066020528060005260406000206000915090508054610f8e90612ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054610fba90612ff0565b80156110075780601f10610fdc57610100808354040283529160200191611007565b820191906000526020600020905b815481529060010190602001808311610fea57829003601f168201915b505050505081565b60095481565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016110769190612da4565b602060405180830381865afa158015611093573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b79190613710565b915050919050565b60056020528060005260406000206000915090505481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611173611840565b8060056000848152602001908152602001600020819055505050565b611197611517565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111dd57506111dc856111d7611517565b6110d7565b5b61121c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611213906132a2565b60405180910390fd5b6112298585858585611bb6565b5050505050565b611238611840565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e906137af565b60405180910390fd5b6112b081611921565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611325610dbc565b15611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c9061381b565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd906138ad565b60405180910390fd5b60006113e0611517565b905060006113ed85611e51565b905060006113fa85611e51565b905061140b83600089858589611ecb565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461146a919061316a565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516114e89291906138cd565b60405180910390a46114ff8360008985858961209b565b61150e836000898989896120a3565b50505050505050565b600033905090565b8151835114611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90613968565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c9906139fa565b60405180910390fd5b60006115dc611517565b90506115ec818787878787611ecb565b60005b845181101561179d57600085828151811061160d5761160c613406565b5b60200260200101519050600085838151811061162c5761162b613406565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613a8c565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611782919061316a565b925050819055505050508061179690613435565b90506115ef565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611814929190613aac565b60405180910390a461182a81878787878761209b565b61183881878787878761227a565b505050505050565b611848611517565b73ffffffffffffffffffffffffffffffffffffffff16611866610e5e565b73ffffffffffffffffffffffffffffffffffffffff16146118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613b2f565b60405180910390fd5b565b6118c6612451565b6000600460146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61190a611517565b6040516119179190612da4565b60405180910390a1565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119ef61131d565b6001600460146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a33611517565b604051611a409190612da4565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613bc1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ba99190612677565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c906139fa565b60405180910390fd5b6000611c2f611517565b90506000611c3c85611e51565b90506000611c4985611e51565b9050611c59838989858589611ecb565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce790613a8c565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611da5919061316a565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611e229291906138cd565b60405180910390a4611e38848a8a86868a61209b565b611e46848a8a8a8a8a6120a3565b505050505050505050565b60606000600167ffffffffffffffff811115611e7057611e6f6127b6565b5b604051908082528060200260200182016040528015611e9e5781602001602082028036833780820191505090505b5090508281600081518110611eb657611eb5613406565b5b60200260200101818152505080915050919050565b611ed986868686868661249a565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611f8a5760005b8351811015611f8857828181518110611f2c57611f2b613406565b5b602002602001015160036000868481518110611f4b57611f4a613406565b5b602002602001015181526020019081526020016000206000828254611f70919061316a565b9250508190555080611f8190613435565b9050611f10565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036120935760005b8351811015612091576000848281518110611fdf57611fde613406565b5b602002602001015190506000848381518110611ffe57611ffd613406565b5b6020026020010151905060006003600084815260200190815260200160002054905081811015612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90613c53565b60405180910390fd5b81810360036000858152602001908152602001600020819055505050508061208a90613435565b9050611fc1565b505b505050505050565b505050505050565b6120c28473ffffffffffffffffffffffffffffffffffffffff166124a2565b15612272578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612108959493929190613cc8565b6020604051808303816000875af192505050801561214457506040513d601f19601f820116820180604052508101906121419190613d37565b60015b6121e957612150613d71565b806308c379a0036121ac5750612164613d93565b8061216f57506121ae565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a39190612722565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e090613e95565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790613f27565b60405180910390fd5b505b505050505050565b6122998473ffffffffffffffffffffffffffffffffffffffff166124a2565b15612449578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016122df959493929190613f47565b6020604051808303816000875af192505050801561231b57506040513d601f19601f820116820180604052508101906123189190613d37565b60015b6123c057612327613d71565b806308c379a003612383575061233b613d93565b806123465750612385565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237a9190612722565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b790613e95565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243e90613f27565b60405180910390fd5b505b505050505050565b612459610dbc565b612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f90613ffb565b60405180910390fd5b565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612504826124d9565b9050919050565b612514816124f9565b811461251f57600080fd5b50565b6000813590506125318161250b565b92915050565b6000819050919050565b61254a81612537565b811461255557600080fd5b50565b60008135905061256781612541565b92915050565b60008060408385031215612584576125836124cf565b5b600061259285828601612522565b92505060206125a385828601612558565b9150509250929050565b6125b681612537565b82525050565b60006020820190506125d160008301846125ad565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61260c816125d7565b811461261757600080fd5b50565b60008135905061262981612603565b92915050565b600060208284031215612645576126446124cf565b5b60006126538482850161261a565b91505092915050565b60008115159050919050565b6126718161265c565b82525050565b600060208201905061268c6000830184612668565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126cc5780820151818401526020810190506126b1565b60008484015250505050565b6000601f19601f8301169050919050565b60006126f482612692565b6126fe818561269d565b935061270e8185602086016126ae565b612717816126d8565b840191505092915050565b6000602082019050818103600083015261273c81846126e9565b905092915050565b60006020828403121561275a576127596124cf565b5b600061276884828501612558565b91505092915050565b60008060408385031215612788576127876124cf565b5b600061279685828601612558565b92505060206127a785828601612558565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127ee826126d8565b810181811067ffffffffffffffff8211171561280d5761280c6127b6565b5b80604052505050565b60006128206124c5565b905061282c82826127e5565b919050565b600067ffffffffffffffff82111561284c5761284b6127b6565b5b602082029050602081019050919050565b600080fd5b600061287561287084612831565b612816565b905080838252602082019050602084028301858111156128985761289761285d565b5b835b818110156128c157806128ad8882612558565b84526020840193505060208101905061289a565b5050509392505050565b600082601f8301126128e0576128df6127b1565b5b81356128f0848260208601612862565b91505092915050565b600080fd5b600067ffffffffffffffff821115612919576129186127b6565b5b612922826126d8565b9050602081019050919050565b82818337600083830152505050565b600061295161294c846128fe565b612816565b90508281526020810184848401111561296d5761296c6128f9565b5b61297884828561292f565b509392505050565b600082601f830112612995576129946127b1565b5b81356129a584826020860161293e565b91505092915050565b600080600080600060a086880312156129ca576129c96124cf565b5b60006129d888828901612522565b95505060206129e988828901612522565b945050604086013567ffffffffffffffff811115612a0a57612a096124d4565b5b612a16888289016128cb565b935050606086013567ffffffffffffffff811115612a3757612a366124d4565b5b612a43888289016128cb565b925050608086013567ffffffffffffffff811115612a6457612a636124d4565b5b612a7088828901612980565b9150509295509295909350565b600067ffffffffffffffff821115612a9857612a976127b6565b5b602082029050602081019050919050565b6000612abc612ab784612a7d565b612816565b90508083825260208201905060208402830185811115612adf57612ade61285d565b5b835b81811015612b085780612af48882612522565b845260208401935050602081019050612ae1565b5050509392505050565b600082601f830112612b2757612b266127b1565b5b8135612b37848260208601612aa9565b91505092915050565b60008060408385031215612b5757612b566124cf565b5b600083013567ffffffffffffffff811115612b7557612b746124d4565b5b612b8185828601612b12565b925050602083013567ffffffffffffffff811115612ba257612ba16124d4565b5b612bae858286016128cb565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612bed81612537565b82525050565b6000612bff8383612be4565b60208301905092915050565b6000602082019050919050565b6000612c2382612bb8565b612c2d8185612bc3565b9350612c3883612bd4565b8060005b83811015612c69578151612c508882612bf3565b9750612c5b83612c0b565b925050600181019050612c3c565b5085935050505092915050565b60006020820190508181036000830152612c908184612c18565b905092915050565b600067ffffffffffffffff821115612cb357612cb26127b6565b5b612cbc826126d8565b9050602081019050919050565b6000612cdc612cd784612c98565b612816565b905082815260208101848484011115612cf857612cf76128f9565b5b612d0384828561292f565b509392505050565b600082601f830112612d2057612d1f6127b1565b5b8135612d30848260208601612cc9565b91505092915050565b60008060408385031215612d5057612d4f6124cf565b5b6000612d5e85828601612558565b925050602083013567ffffffffffffffff811115612d7f57612d7e6124d4565b5b612d8b85828601612d0b565b9150509250929050565b612d9e816124f9565b82525050565b6000602082019050612db96000830184612d95565b92915050565b612dc88161265c565b8114612dd357600080fd5b50565b600081359050612de581612dbf565b92915050565b60008060408385031215612e0257612e016124cf565b5b6000612e1085828601612522565b9250506020612e2185828601612dd6565b9150509250929050565b600060208284031215612e4157612e406124cf565b5b6000612e4f84828501612522565b91505092915050565b60008060408385031215612e6f57612e6e6124cf565b5b6000612e7d85828601612522565b9250506020612e8e85828601612522565b9150509250929050565b600080600080600060a08688031215612eb457612eb36124cf565b5b6000612ec288828901612522565b9550506020612ed388828901612522565b9450506040612ee488828901612558565b9350506060612ef588828901612558565b925050608086013567ffffffffffffffff811115612f1657612f156124d4565b5b612f2288828901612980565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000612f8b602a8361269d565b9150612f9682612f2f565b604082019050919050565b60006020820190508181036000830152612fba81612f7e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061300857607f821691505b60208210810361301b5761301a612fc1565b5b50919050565b7f546f6b656e206e6f7420617661696c61626c6520666f72206d696e74696e6700600082015250565b6000613057601f8361269d565b915061306282613021565b602082019050919050565b600060208201905081810360008301526130868161304a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130c782612537565b91506130d283612537565b92508282026130e081612537565b915082820484148315176130f7576130f661308d565b5b5092915050565b7f496e73756666696369656e742066756e647320746f206d696e74000000000000600082015250565b6000613134601a8361269d565b915061313f826130fe565b602082019050919050565b6000602082019050818103600083015261316381613127565b9050919050565b600061317582612537565b915061318083612537565b92508282019050808211156131985761319761308d565b5b92915050565b7f546f74616c206d696e7420616d6f756e7420657863656564732062616c616e6360008201527f65206f66204433204e4654000000000000000000000000000000000000000000602082015250565b60006131fa602b8361269d565b91506132058261319e565b604082019050919050565b60006020820190508181036000830152613229816131ed565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b600061328c602e8361269d565b915061329782613230565b604082019050919050565b600060208201905081810360008301526132bb8161327f565b9050919050565b600081905092915050565b50565b60006132dd6000836132c2565b91506132e8826132cd565b600082019050919050565b60006132fe826132d0565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b600061333e60148361269d565b915061334982613308565b602082019050919050565b6000602082019050818103600083015261336d81613331565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006133d060298361269d565b91506133db82613374565b604082019050919050565b600060208201905081810360008301526133ff816133c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061344082612537565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134725761347161308d565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134df7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134a2565b6134e986836134a2565b95508019841693508086168417925050509392505050565b6000819050919050565b600061352661352161351c84612537565b613501565b612537565b9050919050565b6000819050919050565b6135408361350b565b61355461354c8261352d565b8484546134af565b825550505050565b600090565b61356961355c565b613574818484613537565b505050565b5b818110156135985761358d600082613561565b60018101905061357a565b5050565b601f8211156135dd576135ae8161347d565b6135b784613492565b810160208510156135c6578190505b6135da6135d285613492565b830182613579565b50505b505050565b600082821c905092915050565b6000613600600019846008026135e2565b1980831691505092915050565b600061361983836135ef565b9150826002028217905092915050565b61363282612692565b67ffffffffffffffff81111561364b5761364a6127b6565b5b6136558254612ff0565b61366082828561359c565b600060209050601f8311600181146136935760008415613681578287015190505b61368b858261360d565b8655506136f3565b601f1984166136a18661347d565b60005b828110156136c9578489015182556001820191506020850194506020810190506136a4565b868310156136e657848901516136e2601f8916826135ef565b8355505b6001600288020188555050505b505050505050565b60008151905061370a81612541565b92915050565b600060208284031215613726576137256124cf565b5b6000613734848285016136fb565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061379960268361269d565b91506137a48261373d565b604082019050919050565b600060208201905081810360008301526137c88161378c565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061380560108361269d565b9150613810826137cf565b602082019050919050565b60006020820190508181036000830152613834816137f8565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061389760218361269d565b91506138a28261383b565b604082019050919050565b600060208201905081810360008301526138c68161388a565b9050919050565b60006040820190506138e260008301856125ad565b6138ef60208301846125ad565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061395260288361269d565b915061395d826138f6565b604082019050919050565b6000602082019050818103600083015261398181613945565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139e460258361269d565b91506139ef82613988565b604082019050919050565b60006020820190508181036000830152613a13816139d7565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613a76602a8361269d565b9150613a8182613a1a565b604082019050919050565b60006020820190508181036000830152613aa581613a69565b9050919050565b60006040820190508181036000830152613ac68185612c18565b90508181036020830152613ada8184612c18565b90509392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b1960208361269d565b9150613b2482613ae3565b602082019050919050565b60006020820190508181036000830152613b4881613b0c565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000613bab60298361269d565b9150613bb682613b4f565b604082019050919050565b60006020820190508181036000830152613bda81613b9e565b9050919050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000613c3d60288361269d565b9150613c4882613be1565b604082019050919050565b60006020820190508181036000830152613c6c81613c30565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c9a82613c73565b613ca48185613c7e565b9350613cb48185602086016126ae565b613cbd816126d8565b840191505092915050565b600060a082019050613cdd6000830188612d95565b613cea6020830187612d95565b613cf760408301866125ad565b613d0460608301856125ad565b8181036080830152613d168184613c8f565b90509695505050505050565b600081519050613d3181612603565b92915050565b600060208284031215613d4d57613d4c6124cf565b5b6000613d5b84828501613d22565b91505092915050565b60008160e01c9050919050565b600060033d1115613d905760046000803e613d8d600051613d64565b90505b90565b600060443d10613e2057613da56124c5565b60043d036004823e80513d602482011167ffffffffffffffff82111715613dcd575050613e20565b808201805167ffffffffffffffff811115613deb5750505050613e20565b80602083010160043d038501811115613e08575050505050613e20565b613e17826020018501866127e5565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613e7f60348361269d565b9150613e8a82613e23565b604082019050919050565b60006020820190508181036000830152613eae81613e72565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613f1160288361269d565b9150613f1c82613eb5565b604082019050919050565b60006020820190508181036000830152613f4081613f04565b9050919050565b600060a082019050613f5c6000830188612d95565b613f696020830187612d95565b8181036040830152613f7b8186612c18565b90508181036060830152613f8f8185612c18565b90508181036080830152613fa38184613c8f565b90509695505050505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613fe560148361269d565b9150613ff082613faf565b602082019050919050565b6000602082019050818103600083015261401481613fd8565b905091905056fea26469706673582212202493ab8da60166d7416c705c253dc8178e3b9d31f82b760adfec5987492271fa64736f6c63430008130033697066733a2f2f516d63674a796a4367475670635147584a654a6743474655467474726259417a6944693974616459504139334c46697066733a2f2f516d4e7448644b4752727138506d62565848484444386f4c656335663859685767665558655273447137574d615900000000000000000000000009e8c457aedb06c2830c4be9805d1b20675eded8

Deployed Bytecode

0x60806040526004361061019b5760003560e01c8063862440e2116100ec578063e37942341161008a578063e985e9c511610064578063e985e9c5146105ba578063eb685c47146105f7578063f242432a14610620578063f2fde38b146106495761019b565b8063e379423414610515578063e465bb3314610540578063e5afe3e61461057d5761019b565b806395d89b41116100c657806395d89b4114610447578063a22cb46514610472578063bd85b0391461049b578063c87b56dd146104d85761019b565b8063862440e2146103c85780638da5cb5b146103f15780638de1024a1461041c5761019b565b80633ccfd60b116101595780634f558e79116101335780634f558e79146103325780635c975abb1461036f578063715018a61461039a5780638456cb59146103b15761019b565b80633ccfd60b146102c75780633f4ba83a146102de5780634e1273f4146102f55761019b565b8062fdd58e146101a057806301ffc9a7146101dd57806306fdde031461021a5780630e89341c146102455780631b2ef1ca146102825780632eb2c2d61461029e575b600080fd5b3480156101ac57600080fd5b506101c760048036038101906101c2919061256d565b610672565b6040516101d491906125bc565b60405180910390f35b3480156101e957600080fd5b5061020460048036038101906101ff919061262f565b61073a565b6040516102119190612677565b60405180910390f35b34801561022657600080fd5b5061022f61081c565b60405161023c9190612722565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612744565b6108aa565b6040516102799190612722565b60405180910390f35b61029c60048036038101906102979190612771565b61094f565b005b3480156102aa57600080fd5b506102c560048036038101906102c091906129ae565b610b18565b005b3480156102d357600080fd5b506102dc610bb9565b005b3480156102ea57600080fd5b506102f3610c7d565b005b34801561030157600080fd5b5061031c60048036038101906103179190612b40565b610c8f565b6040516103299190612c76565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190612744565b610da8565b6040516103669190612677565b60405180910390f35b34801561037b57600080fd5b50610384610dbc565b6040516103919190612677565b60405180910390f35b3480156103a657600080fd5b506103af610dd3565b005b3480156103bd57600080fd5b506103c6610de7565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612d39565b610df9565b005b3480156103fd57600080fd5b50610406610e5e565b6040516104139190612da4565b60405180910390f35b34801561042857600080fd5b50610431610e88565b60405161043e9190612da4565b60405180910390f35b34801561045357600080fd5b5061045c610eae565b6040516104699190612722565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190612deb565b610f3c565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190612744565b610f52565b6040516104cf91906125bc565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190612744565b610f6f565b60405161050c9190612722565b60405180910390f35b34801561052157600080fd5b5061052a61100f565b60405161053791906125bc565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190612e2b565b611015565b60405161057491906125bc565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190612744565b6110bf565b6040516105b191906125bc565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc9190612e58565b6110d7565b6040516105ee9190612677565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190612771565b61116b565b005b34801561062c57600080fd5b5061064760048036038101906106429190612e98565b61118f565b005b34801561065557600080fd5b50610670600480360381019061066b9190612e2b565b611230565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d990612fa1565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080557507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108155750610814826112b3565b5b9050919050565b600a805461082990612ff0565b80601f016020809104026020016040519081016040528092919081815260200182805461085590612ff0565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b505050505081565b60606006600083815260200190815260200160002080546108ca90612ff0565b80601f01602080910402602001604051908101604052809291908181526020018280546108f690612ff0565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b50505050509050919050565b61095761131d565b600060056000848152602001908152602001600020549050600081116109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a99061306d565b60405180910390fd5b81816109be91906130bc565b341015610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f79061314a565b60405180910390fd5b600082600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a4d919061316a565b9050610a5833611015565b811115610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190613210565b60405180910390fd5b8260096000828254610aac919061316a565b9250508190555080600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b1233858560405180602001604052806000815250611367565b50505050565b610b20611517565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b665750610b6585610b60611517565b6110d7565b5b610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c906132a2565b60405180910390fd5b610bb2858585858561151f565b5050505050565b610bc1611840565b60004790506000610bd0610e5e565b73ffffffffffffffffffffffffffffffffffffffff1682604051610bf3906132f3565b60006040518083038185875af1925050503d8060008114610c30576040519150601f19603f3d011682016040523d82523d6000602084013e610c35565b606091505b5050905080610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090613354565b60405180910390fd5b5050565b610c85611840565b610c8d6118be565b565b60608151835114610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc906133e6565b60405180910390fd5b6000835167ffffffffffffffff811115610cf257610cf16127b6565b5b604051908082528060200260200182016040528015610d205781602001602082028036833780820191505090505b50905060005b8451811015610d9d57610d6d858281518110610d4557610d44613406565b5b6020026020010151858381518110610d6057610d5f613406565b5b6020026020010151610672565b828281518110610d8057610d7f613406565b5b60200260200101818152505080610d9690613435565b9050610d26565b508091505092915050565b600080610db483610f52565b119050919050565b6000600460149054906101000a900460ff16905090565b610ddb611840565b610de56000611921565b565b610def611840565b610df76119e7565b565b610e01611840565b80600660008481526020019081526020016000209081610e219190613629565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610e529190612722565b60405180910390a25050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b8054610ebb90612ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee790612ff0565b8015610f345780601f10610f0957610100808354040283529160200191610f34565b820191906000526020600020905b815481529060010190602001808311610f1757829003601f168201915b505050505081565b610f4e610f47611517565b8383611a4a565b5050565b600060036000838152602001908152602001600020549050919050565b60066020528060005260406000206000915090508054610f8e90612ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054610fba90612ff0565b80156110075780601f10610fdc57610100808354040283529160200191611007565b820191906000526020600020905b815481529060010190602001808311610fea57829003601f168201915b505050505081565b60095481565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016110769190612da4565b602060405180830381865afa158015611093573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b79190613710565b915050919050565b60056020528060005260406000206000915090505481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611173611840565b8060056000848152602001908152602001600020819055505050565b611197611517565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111dd57506111dc856111d7611517565b6110d7565b5b61121c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611213906132a2565b60405180910390fd5b6112298585858585611bb6565b5050505050565b611238611840565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e906137af565b60405180910390fd5b6112b081611921565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611325610dbc565b15611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c9061381b565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd906138ad565b60405180910390fd5b60006113e0611517565b905060006113ed85611e51565b905060006113fa85611e51565b905061140b83600089858589611ecb565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461146a919061316a565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516114e89291906138cd565b60405180910390a46114ff8360008985858961209b565b61150e836000898989896120a3565b50505050505050565b600033905090565b8151835114611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90613968565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c9906139fa565b60405180910390fd5b60006115dc611517565b90506115ec818787878787611ecb565b60005b845181101561179d57600085828151811061160d5761160c613406565b5b60200260200101519050600085838151811061162c5761162b613406565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613a8c565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611782919061316a565b925050819055505050508061179690613435565b90506115ef565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611814929190613aac565b60405180910390a461182a81878787878761209b565b61183881878787878761227a565b505050505050565b611848611517565b73ffffffffffffffffffffffffffffffffffffffff16611866610e5e565b73ffffffffffffffffffffffffffffffffffffffff16146118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613b2f565b60405180910390fd5b565b6118c6612451565b6000600460146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61190a611517565b6040516119179190612da4565b60405180910390a1565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119ef61131d565b6001600460146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a33611517565b604051611a409190612da4565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613bc1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ba99190612677565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c906139fa565b60405180910390fd5b6000611c2f611517565b90506000611c3c85611e51565b90506000611c4985611e51565b9050611c59838989858589611ecb565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce790613a8c565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611da5919061316a565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611e229291906138cd565b60405180910390a4611e38848a8a86868a61209b565b611e46848a8a8a8a8a6120a3565b505050505050505050565b60606000600167ffffffffffffffff811115611e7057611e6f6127b6565b5b604051908082528060200260200182016040528015611e9e5781602001602082028036833780820191505090505b5090508281600081518110611eb657611eb5613406565b5b60200260200101818152505080915050919050565b611ed986868686868661249a565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611f8a5760005b8351811015611f8857828181518110611f2c57611f2b613406565b5b602002602001015160036000868481518110611f4b57611f4a613406565b5b602002602001015181526020019081526020016000206000828254611f70919061316a565b9250508190555080611f8190613435565b9050611f10565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036120935760005b8351811015612091576000848281518110611fdf57611fde613406565b5b602002602001015190506000848381518110611ffe57611ffd613406565b5b6020026020010151905060006003600084815260200190815260200160002054905081811015612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90613c53565b60405180910390fd5b81810360036000858152602001908152602001600020819055505050508061208a90613435565b9050611fc1565b505b505050505050565b505050505050565b6120c28473ffffffffffffffffffffffffffffffffffffffff166124a2565b15612272578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612108959493929190613cc8565b6020604051808303816000875af192505050801561214457506040513d601f19601f820116820180604052508101906121419190613d37565b60015b6121e957612150613d71565b806308c379a0036121ac5750612164613d93565b8061216f57506121ae565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a39190612722565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e090613e95565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790613f27565b60405180910390fd5b505b505050505050565b6122998473ffffffffffffffffffffffffffffffffffffffff166124a2565b15612449578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016122df959493929190613f47565b6020604051808303816000875af192505050801561231b57506040513d601f19601f820116820180604052508101906123189190613d37565b60015b6123c057612327613d71565b806308c379a003612383575061233b613d93565b806123465750612385565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237a9190612722565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b790613e95565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243e90613f27565b60405180910390fd5b505b505050505050565b612459610dbc565b612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f90613ffb565b60405180910390fd5b565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612504826124d9565b9050919050565b612514816124f9565b811461251f57600080fd5b50565b6000813590506125318161250b565b92915050565b6000819050919050565b61254a81612537565b811461255557600080fd5b50565b60008135905061256781612541565b92915050565b60008060408385031215612584576125836124cf565b5b600061259285828601612522565b92505060206125a385828601612558565b9150509250929050565b6125b681612537565b82525050565b60006020820190506125d160008301846125ad565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61260c816125d7565b811461261757600080fd5b50565b60008135905061262981612603565b92915050565b600060208284031215612645576126446124cf565b5b60006126538482850161261a565b91505092915050565b60008115159050919050565b6126718161265c565b82525050565b600060208201905061268c6000830184612668565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126cc5780820151818401526020810190506126b1565b60008484015250505050565b6000601f19601f8301169050919050565b60006126f482612692565b6126fe818561269d565b935061270e8185602086016126ae565b612717816126d8565b840191505092915050565b6000602082019050818103600083015261273c81846126e9565b905092915050565b60006020828403121561275a576127596124cf565b5b600061276884828501612558565b91505092915050565b60008060408385031215612788576127876124cf565b5b600061279685828601612558565b92505060206127a785828601612558565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127ee826126d8565b810181811067ffffffffffffffff8211171561280d5761280c6127b6565b5b80604052505050565b60006128206124c5565b905061282c82826127e5565b919050565b600067ffffffffffffffff82111561284c5761284b6127b6565b5b602082029050602081019050919050565b600080fd5b600061287561287084612831565b612816565b905080838252602082019050602084028301858111156128985761289761285d565b5b835b818110156128c157806128ad8882612558565b84526020840193505060208101905061289a565b5050509392505050565b600082601f8301126128e0576128df6127b1565b5b81356128f0848260208601612862565b91505092915050565b600080fd5b600067ffffffffffffffff821115612919576129186127b6565b5b612922826126d8565b9050602081019050919050565b82818337600083830152505050565b600061295161294c846128fe565b612816565b90508281526020810184848401111561296d5761296c6128f9565b5b61297884828561292f565b509392505050565b600082601f830112612995576129946127b1565b5b81356129a584826020860161293e565b91505092915050565b600080600080600060a086880312156129ca576129c96124cf565b5b60006129d888828901612522565b95505060206129e988828901612522565b945050604086013567ffffffffffffffff811115612a0a57612a096124d4565b5b612a16888289016128cb565b935050606086013567ffffffffffffffff811115612a3757612a366124d4565b5b612a43888289016128cb565b925050608086013567ffffffffffffffff811115612a6457612a636124d4565b5b612a7088828901612980565b9150509295509295909350565b600067ffffffffffffffff821115612a9857612a976127b6565b5b602082029050602081019050919050565b6000612abc612ab784612a7d565b612816565b90508083825260208201905060208402830185811115612adf57612ade61285d565b5b835b81811015612b085780612af48882612522565b845260208401935050602081019050612ae1565b5050509392505050565b600082601f830112612b2757612b266127b1565b5b8135612b37848260208601612aa9565b91505092915050565b60008060408385031215612b5757612b566124cf565b5b600083013567ffffffffffffffff811115612b7557612b746124d4565b5b612b8185828601612b12565b925050602083013567ffffffffffffffff811115612ba257612ba16124d4565b5b612bae858286016128cb565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612bed81612537565b82525050565b6000612bff8383612be4565b60208301905092915050565b6000602082019050919050565b6000612c2382612bb8565b612c2d8185612bc3565b9350612c3883612bd4565b8060005b83811015612c69578151612c508882612bf3565b9750612c5b83612c0b565b925050600181019050612c3c565b5085935050505092915050565b60006020820190508181036000830152612c908184612c18565b905092915050565b600067ffffffffffffffff821115612cb357612cb26127b6565b5b612cbc826126d8565b9050602081019050919050565b6000612cdc612cd784612c98565b612816565b905082815260208101848484011115612cf857612cf76128f9565b5b612d0384828561292f565b509392505050565b600082601f830112612d2057612d1f6127b1565b5b8135612d30848260208601612cc9565b91505092915050565b60008060408385031215612d5057612d4f6124cf565b5b6000612d5e85828601612558565b925050602083013567ffffffffffffffff811115612d7f57612d7e6124d4565b5b612d8b85828601612d0b565b9150509250929050565b612d9e816124f9565b82525050565b6000602082019050612db96000830184612d95565b92915050565b612dc88161265c565b8114612dd357600080fd5b50565b600081359050612de581612dbf565b92915050565b60008060408385031215612e0257612e016124cf565b5b6000612e1085828601612522565b9250506020612e2185828601612dd6565b9150509250929050565b600060208284031215612e4157612e406124cf565b5b6000612e4f84828501612522565b91505092915050565b60008060408385031215612e6f57612e6e6124cf565b5b6000612e7d85828601612522565b9250506020612e8e85828601612522565b9150509250929050565b600080600080600060a08688031215612eb457612eb36124cf565b5b6000612ec288828901612522565b9550506020612ed388828901612522565b9450506040612ee488828901612558565b9350506060612ef588828901612558565b925050608086013567ffffffffffffffff811115612f1657612f156124d4565b5b612f2288828901612980565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000612f8b602a8361269d565b9150612f9682612f2f565b604082019050919050565b60006020820190508181036000830152612fba81612f7e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061300857607f821691505b60208210810361301b5761301a612fc1565b5b50919050565b7f546f6b656e206e6f7420617661696c61626c6520666f72206d696e74696e6700600082015250565b6000613057601f8361269d565b915061306282613021565b602082019050919050565b600060208201905081810360008301526130868161304a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130c782612537565b91506130d283612537565b92508282026130e081612537565b915082820484148315176130f7576130f661308d565b5b5092915050565b7f496e73756666696369656e742066756e647320746f206d696e74000000000000600082015250565b6000613134601a8361269d565b915061313f826130fe565b602082019050919050565b6000602082019050818103600083015261316381613127565b9050919050565b600061317582612537565b915061318083612537565b92508282019050808211156131985761319761308d565b5b92915050565b7f546f74616c206d696e7420616d6f756e7420657863656564732062616c616e6360008201527f65206f66204433204e4654000000000000000000000000000000000000000000602082015250565b60006131fa602b8361269d565b91506132058261319e565b604082019050919050565b60006020820190508181036000830152613229816131ed565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b600061328c602e8361269d565b915061329782613230565b604082019050919050565b600060208201905081810360008301526132bb8161327f565b9050919050565b600081905092915050565b50565b60006132dd6000836132c2565b91506132e8826132cd565b600082019050919050565b60006132fe826132d0565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b600061333e60148361269d565b915061334982613308565b602082019050919050565b6000602082019050818103600083015261336d81613331565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006133d060298361269d565b91506133db82613374565b604082019050919050565b600060208201905081810360008301526133ff816133c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061344082612537565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134725761347161308d565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134df7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134a2565b6134e986836134a2565b95508019841693508086168417925050509392505050565b6000819050919050565b600061352661352161351c84612537565b613501565b612537565b9050919050565b6000819050919050565b6135408361350b565b61355461354c8261352d565b8484546134af565b825550505050565b600090565b61356961355c565b613574818484613537565b505050565b5b818110156135985761358d600082613561565b60018101905061357a565b5050565b601f8211156135dd576135ae8161347d565b6135b784613492565b810160208510156135c6578190505b6135da6135d285613492565b830182613579565b50505b505050565b600082821c905092915050565b6000613600600019846008026135e2565b1980831691505092915050565b600061361983836135ef565b9150826002028217905092915050565b61363282612692565b67ffffffffffffffff81111561364b5761364a6127b6565b5b6136558254612ff0565b61366082828561359c565b600060209050601f8311600181146136935760008415613681578287015190505b61368b858261360d565b8655506136f3565b601f1984166136a18661347d565b60005b828110156136c9578489015182556001820191506020850194506020810190506136a4565b868310156136e657848901516136e2601f8916826135ef565b8355505b6001600288020188555050505b505050505050565b60008151905061370a81612541565b92915050565b600060208284031215613726576137256124cf565b5b6000613734848285016136fb565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061379960268361269d565b91506137a48261373d565b604082019050919050565b600060208201905081810360008301526137c88161378c565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061380560108361269d565b9150613810826137cf565b602082019050919050565b60006020820190508181036000830152613834816137f8565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061389760218361269d565b91506138a28261383b565b604082019050919050565b600060208201905081810360008301526138c68161388a565b9050919050565b60006040820190506138e260008301856125ad565b6138ef60208301846125ad565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061395260288361269d565b915061395d826138f6565b604082019050919050565b6000602082019050818103600083015261398181613945565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139e460258361269d565b91506139ef82613988565b604082019050919050565b60006020820190508181036000830152613a13816139d7565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613a76602a8361269d565b9150613a8182613a1a565b604082019050919050565b60006020820190508181036000830152613aa581613a69565b9050919050565b60006040820190508181036000830152613ac68185612c18565b90508181036020830152613ada8184612c18565b90509392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b1960208361269d565b9150613b2482613ae3565b602082019050919050565b60006020820190508181036000830152613b4881613b0c565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000613bab60298361269d565b9150613bb682613b4f565b604082019050919050565b60006020820190508181036000830152613bda81613b9e565b9050919050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000613c3d60288361269d565b9150613c4882613be1565b604082019050919050565b60006020820190508181036000830152613c6c81613c30565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c9a82613c73565b613ca48185613c7e565b9350613cb48185602086016126ae565b613cbd816126d8565b840191505092915050565b600060a082019050613cdd6000830188612d95565b613cea6020830187612d95565b613cf760408301866125ad565b613d0460608301856125ad565b8181036080830152613d168184613c8f565b90509695505050505050565b600081519050613d3181612603565b92915050565b600060208284031215613d4d57613d4c6124cf565b5b6000613d5b84828501613d22565b91505092915050565b60008160e01c9050919050565b600060033d1115613d905760046000803e613d8d600051613d64565b90505b90565b600060443d10613e2057613da56124c5565b60043d036004823e80513d602482011167ffffffffffffffff82111715613dcd575050613e20565b808201805167ffffffffffffffff811115613deb5750505050613e20565b80602083010160043d038501811115613e08575050505050613e20565b613e17826020018501866127e5565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613e7f60348361269d565b9150613e8a82613e23565b604082019050919050565b60006020820190508181036000830152613eae81613e72565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613f1160288361269d565b9150613f1c82613eb5565b604082019050919050565b60006020820190508181036000830152613f4081613f04565b9050919050565b600060a082019050613f5c6000830188612d95565b613f696020830187612d95565b8181036040830152613f7b8186612c18565b90508181036060830152613f8f8185612c18565b90508181036080830152613fa38184613c8f565b90509695505050505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613fe560148361269d565b9150613ff082613faf565b602082019050919050565b6000602082019050818103600083015261401481613fd8565b905091905056fea26469706673582212202493ab8da60166d7416c705c253dc8178e3b9d31f82b760adfec5987492271fa64736f6c63430008130033

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

00000000000000000000000009e8c457aedb06c2830c4be9805d1b20675eded8

-----Decoded View---------------
Arg [0] : _d3NftAddress (address): 0x09e8c457AEDB06C2830c4Be9805d1B20675EdeD8

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000009e8c457aedb06c2830c4be9805d1b20675eded8


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.