ETH Price: $3,804.73 (-1.88%)
Gas: 8 Gwei

Token

RTFKT - MNLTH X ()
 

Overview

Max Total Supply

20,001

Holders

8,216

Market

Volume (24H)

0.0579 ETH

Min Price (24H)

$106.15 @ 0.027900 ETH

Max Price (24H)

$114.14 @ 0.030000 ETH
0x1288e3daD9Deb275deb8793F5E206ab17BF11224
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Behold a mysterious MNLTH X that has appeared from a time thought lost 🗿 Digital Collectible terms and conditions apply, see https://rtfkt.com/legal-2D

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MNLTHX

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

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

/*
    RTFKT Legal Overview [https://rtfkt.com/legaloverview]
    1. RTFKT Platform Terms of Services [Document #1, https://rtfkt.com/tos]
    2. End Use License Terms
    A. Digital Collectible Terms (RTFKT-Owned Content) [Document #2-A, https://rtfkt.com/legal-2A]
    B. Digital Collectible Terms (Third Party Content) [Document #2-B, https://rtfkt.com/legal-2B]
    C. Digital Collectible Limited Commercial Use License Terms (RTFKT-Owned Content) [Document #2-C, https://rtfkt.com/legal-2C]
    D. Digital Collectible Terms [Document #2-D, https://rtfkt.com/legal-2D]
    
    3. Policies or other documentation
    A. RTFKT Privacy Policy [Document #3-A, https://rtfkt.com/privacy]
    B. NFT Issuance and Marketing Policy [Document #3-B, https://rtfkt.com/legal-3B]
    C. Transfer Fees [Document #3C, https://rtfkt.com/legal-3C]
    C. 1. Commercialization Registration [https://rtfkt.typeform.com/to/u671kiRl]
    
    4. General notices
    A. Murakami Short Verbiage – User Experience Notice [Document #X-1, https://rtfkt.com/legal-X1]
*/

pragma solidity ^0.8.17;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/DefaultOperatorFilterer.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";

abstract contract MigrateTokenContract {
    function mintTransfer(address to) public virtual returns(uint256);
}

contract MNLTHX is DefaultOperatorFilterer, ERC1155, Ownable, ERC1155Burnable {    
    constructor() ERC1155("") {}

    uint256 mnlthId = 1;
    string tokenUri = "ipfs://QmUqNvadJda8xJpcFSJXX8rxzvG7Qhsiswr2TNnLYHXAYH";
    address authorizedContract;
    bool migrationActive = false;
    

    // Mint function
    function airdrop(uint256[] calldata amount, address[] calldata receiver) public onlyOwner {
        for(uint256 i = 0; i < receiver.length; i++) {
            _mint(receiver[i], mnlthId, amount[i], "");
        }
    }

    function setTokenUri(string calldata newUri) public onlyOwner {
        tokenUri = newUri;
    }

    function changeAuthorizedContract(address contractAddress) public onlyOwner {
        authorizedContract = contractAddress;
    }

    function toggleMigration() public onlyOwner {
        migrationActive = !migrationActive;
    }

    function migrateToken() public {
        require(migrationActive, "Migration is not possible at this time");
        require(balanceOf(msg.sender, mnlthId) > 0, "Doesn't own the token"); // Check if the user own one of the ERC-1155
        burn(msg.sender, mnlthId, 1); // Burn one the ERC-1155 token
        MigrateTokenContract migrationContract = MigrateTokenContract(authorizedContract);
        migrationContract.mintTransfer(msg.sender); // Mint the ERC-721 token
    }

    function uri(uint256) public view virtual override returns (string memory) {
        return tokenUri;
    }

    // OpenSea Royalties Support

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, uint256 amount, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, amount, data);
    }

    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override onlyAllowedOperator(from) {
        super.safeBatchTransferFrom(from, to, ids, amounts, data);
    }
}

File 2 of 14 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );

        _burnBatch(account, ids, values);
    }
}

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

import {OperatorFilterer} from "./OperatorFilterer.sol";

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

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

pragma solidity ^0.8.0;

import "../../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 12 of 14 : 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 13 of 14 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"amount","type":"uint256[]"},{"internalType":"address[]","name":"receiver","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"changeAuthorizedContract","outputs":[],"stateMutability":"nonpayable","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":[],"name":"migrateToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setTokenUri","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":"toggleMigration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526001600455604051806060016040528060358152602001620048c1603591396005908162000033919062000610565b506000600660146101000a81548160ff0219169083151502179055503480156200005c57600080fd5b5060405180602001604052806000815250733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002795780156200013f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001059291906200073c565b600060405180830381600087803b1580156200012057600080fd5b505af115801562000135573d6000803e3d6000fd5b5050505062000278565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620001f9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620001bf9291906200073c565b600060405180830381600087803b158015620001da57600080fd5b505af1158015620001ef573d6000803e3d6000fd5b5050505062000277565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000242919062000769565b600060405180830381600087803b1580156200025d57600080fd5b505af115801562000272573d6000803e3d6000fd5b505050505b5b5b50506200028c81620002b360201b60201c565b50620002ad620002a1620002c860201b60201c565b620002d060201b60201c565b62000786565b8060029081620002c4919062000610565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200041857607f821691505b6020821081036200042e576200042d620003d0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004987fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000459565b620004a4868362000459565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004f1620004eb620004e584620004bc565b620004c6565b620004bc565b9050919050565b6000819050919050565b6200050d83620004d0565b620005256200051c82620004f8565b84845462000466565b825550505050565b600090565b6200053c6200052d565b6200054981848462000502565b505050565b5b8181101562000571576200056560008262000532565b6001810190506200054f565b5050565b601f821115620005c0576200058a8162000434565b620005958462000449565b81016020851015620005a5578190505b620005bd620005b48562000449565b8301826200054e565b50505b505050565b600082821c905092915050565b6000620005e560001984600802620005c5565b1980831691505092915050565b6000620006008383620005d2565b9150826002028217905092915050565b6200061b8262000396565b67ffffffffffffffff811115620006375762000636620003a1565b5b620006438254620003ff565b6200065082828562000575565b600060209050601f83116001811462000688576000841562000673578287015190505b6200067f8582620005f2565b865550620006ef565b601f198416620006988662000434565b60005b82811015620006c2578489015182556001820191506020850194506020810190506200069b565b86831015620006e25784890151620006de601f891682620005d2565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200072482620006f7565b9050919050565b620007368162000717565b82525050565b60006040820190506200075360008301856200072b565b6200076260208301846200072b565b9392505050565b60006020820190506200078060008301846200072b565b92915050565b61412b80620007966000396000f3fe608060405234801561001057600080fd5b50600436106101205760003560e01c80636673c4c2116100ad578063d548280411610071578063d5482804146102dd578063e985e9c5146102e7578063f242432a14610317578063f2fde38b14610333578063f5298aca1461034f57610120565b80636673c4c2146102615780636b20c4541461027d578063715018a6146102995780638da5cb5b146102a3578063a22cb465146102c157610120565b806321fec36c116100f457806321fec36c146101d15780632eb2c2d6146101db578063357a5db0146101f757806341f43434146102135780634e1273f41461023157610120565b8062fdd58e1461012557806301ffc9a7146101555780630675b7c6146101855780630e89341c146101a1575b600080fd5b61013f600480360381019061013a9190612593565b61036b565b60405161014c91906125e2565b60405180910390f35b61016f600480360381019061016a9190612655565b610433565b60405161017c919061269d565b60405180910390f35b61019f600480360381019061019a919061271d565b610515565b005b6101bb60048036038101906101b6919061276a565b610533565b6040516101c89190612827565b60405180910390f35b6101d96105c7565b005b6101f560048036038101906101f09190612a3c565b6105fb565b005b610211600480360381019061020c9190612b0b565b610751565b005b61021b61079d565b6040516102289190612b97565b60405180910390f35b61024b60048036038101906102469190612c75565b6107af565b6040516102589190612dab565b60405180910390f35b61027b60048036038101906102769190612e79565b6108c8565b005b61029760048036038101906102929190612efa565b610955565b005b6102a16109f2565b005b6102ab610a06565b6040516102b89190612f94565b60405180910390f35b6102db60048036038101906102d69190612fdb565b610a30565b005b6102e5610b3a565b005b61030160048036038101906102fc919061301b565b610c8c565b60405161030e919061269d565b60405180910390f35b610331600480360381019061032c919061305b565b610d20565b005b61034d60048036038101906103489190612b0b565b610e76565b005b610369600480360381019061036491906130f2565b610ef9565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036103db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103d2906131b7565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104fe57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061050e575061050d82610f96565b5b9050919050565b61051d611000565b81816005918261052e9291906133e4565b505050565b60606005805461054290613211565b80601f016020809104026020016040519081016040528092919081815260200182805461056e90613211565b80156105bb5780601f10610590576101008083540402835291602001916105bb565b820191906000526020600020905b81548152906001019060200180831161059e57829003601f168201915b50505050509050919050565b6105cf611000565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b8460006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561073b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361066f5761066a868686868661107e565b610749565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016106b89291906134b4565b602060405180830381865afa1580156106d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f991906134f2565b61073a57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016107319190612f94565b60405180910390fd5b5b610748868686868661107e565b5b505050505050565b610759611000565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6daaeb6d7670e522a718067333cd4e81565b606081518351146107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90613591565b60405180910390fd5b6000835167ffffffffffffffff81111561081257610811612849565b5b6040519080825280602002602001820160405280156108405781602001602082028036833780820191505090505b50905060005b84518110156108bd5761088d858281518110610865576108646135b1565b5b60200260200101518583815181106108805761087f6135b1565b5b602002602001015161036b565b8282815181106108a05761089f6135b1565b5b602002602001018181525050806108b69061360f565b9050610846565b508091505092915050565b6108d0611000565b60005b8282905081101561094e5761093b8383838181106108f4576108f36135b1565b5b90506020020160208101906109099190612b0b565b60045487878581811061091f5761091e6135b1565b5b905060200201356040518060200160405280600081525061111f565b80806109469061360f565b9150506108d3565b5050505050565b61095d6112cf565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806109a357506109a28361099d6112cf565b610c8c565b5b6109e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d9906136c9565b60405180910390fd5b6109ed8383836112d7565b505050565b6109fa611000565b610a0460006115a5565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b2b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610aa89291906134b4565b602060405180830381865afa158015610ac5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae991906134f2565b610b2a57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b219190612f94565b60405180910390fd5b5b610b35838361166b565b505050565b600660149054906101000a900460ff16610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b809061375b565b60405180910390fd5b6000610b973360045461036b565b11610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce906137c7565b60405180910390fd5b610be5336004546001610ef9565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663937f2608336040518263ffffffff1660e01b8152600401610c459190612f94565b6020604051808303816000875af1158015610c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8891906137fc565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8460006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e60573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9457610d8f8686868686611681565b610e6e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ddd9291906134b4565b602060405180830381865afa158015610dfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1e91906134f2565b610e5f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e569190612f94565b60405180910390fd5b5b610e6d8686868686611681565b5b505050505050565b610e7e611000565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee49061389b565b60405180910390fd5b610ef6816115a5565b50565b610f016112cf565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f475750610f4683610f416112cf565b610c8c565b5b610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d906136c9565b60405180910390fd5b610f91838383611722565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6110086112cf565b73ffffffffffffffffffffffffffffffffffffffff16611026610a06565b73ffffffffffffffffffffffffffffffffffffffff161461107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390613907565b60405180910390fd5b565b6110866112cf565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110cc57506110cb856110c66112cf565b610c8c565b5b61110b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611102906136c9565b60405180910390fd5b6111188585858585611968565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590613999565b60405180910390fd5b60006111986112cf565b905060006111a585611c89565b905060006111b285611c89565b90506111c383600089858589611d03565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461122291906139b9565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516112a09291906139ed565b60405180910390a46112b783600089858589611d0b565b6112c683600089898989611d13565b50505050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90613a88565b60405180910390fd5b805182511461138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190613b1a565b60405180910390fd5b60006113946112cf565b90506113b481856000868660405180602001604052806000815250611d03565b60005b83518110156115015760008482815181106113d5576113d46135b1565b5b6020026020010151905060008483815181106113f4576113f36135b1565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90613bac565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806114f99061360f565b9150506113b7565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611579929190613bcc565b60405180910390a461159f81856000868660405180602001604052806000815250611d0b565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61167d6116766112cf565b8383611eea565b5050565b6116896112cf565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806116cf57506116ce856116c96112cf565b610c8c565b5b61170e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611705906136c9565b60405180910390fd5b61171b8585858585612056565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613a88565b60405180910390fd5b600061179b6112cf565b905060006117a884611c89565b905060006117b584611c89565b90506117d583876000858560405180602001604052806000815250611d03565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508481101561186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390613bac565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516119399291906139ed565b60405180910390a461195f84886000868660405180602001604052806000815250611d0b565b50505050505050565b81518351146119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390613b1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1290613c75565b60405180910390fd5b6000611a256112cf565b9050611a35818787878787611d03565b60005b8451811015611be6576000858281518110611a5657611a556135b1565b5b602002602001015190506000858381518110611a7557611a746135b1565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90613d07565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bcb91906139b9565b9250508190555050505080611bdf9061360f565b9050611a38565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c5d929190613bcc565b60405180910390a4611c73818787878787611d0b565b611c818187878787876122f1565b505050505050565b60606000600167ffffffffffffffff811115611ca857611ca7612849565b5b604051908082528060200260200182016040528015611cd65781602001602082028036833780820191505090505b5090508281600081518110611cee57611ced6135b1565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b611d328473ffffffffffffffffffffffffffffffffffffffff166124c8565b15611ee2578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611d78959493929190613d7c565b6020604051808303816000875af1925050508015611db457506040513d601f19601f82011682018060405250810190611db19190613deb565b60015b611e5957611dc0613e25565b806308c379a003611e1c5750611dd4613e47565b80611ddf5750611e1e565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e139190612827565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5090613f49565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed790613fdb565b60405180910390fd5b505b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f9061406d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612049919061269d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036120c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bc90613c75565b60405180910390fd5b60006120cf6112cf565b905060006120dc85611c89565b905060006120e985611c89565b90506120f9838989858589611d03565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218790613d07565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224591906139b9565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516122c29291906139ed565b60405180910390a46122d8848a8a86868a611d0b565b6122e6848a8a8a8a8a611d13565b505050505050505050565b6123108473ffffffffffffffffffffffffffffffffffffffff166124c8565b156124c0578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161235695949392919061408d565b6020604051808303816000875af192505050801561239257506040513d601f19601f8201168201806040525081019061238f9190613deb565b60015b6124375761239e613e25565b806308c379a0036123fa57506123b2613e47565b806123bd57506123fc565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f19190612827565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90613f49565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146124be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b590613fdb565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061252a826124ff565b9050919050565b61253a8161251f565b811461254557600080fd5b50565b60008135905061255781612531565b92915050565b6000819050919050565b6125708161255d565b811461257b57600080fd5b50565b60008135905061258d81612567565b92915050565b600080604083850312156125aa576125a96124f5565b5b60006125b885828601612548565b92505060206125c98582860161257e565b9150509250929050565b6125dc8161255d565b82525050565b60006020820190506125f760008301846125d3565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612632816125fd565b811461263d57600080fd5b50565b60008135905061264f81612629565b92915050565b60006020828403121561266b5761266a6124f5565b5b600061267984828501612640565b91505092915050565b60008115159050919050565b61269781612682565b82525050565b60006020820190506126b2600083018461268e565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126126dd576126dc6126b8565b5b8235905067ffffffffffffffff8111156126fa576126f96126bd565b5b602083019150836001820283011115612716576127156126c2565b5b9250929050565b60008060208385031215612734576127336124f5565b5b600083013567ffffffffffffffff811115612752576127516124fa565b5b61275e858286016126c7565b92509250509250929050565b6000602082840312156127805761277f6124f5565b5b600061278e8482850161257e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127d15780820151818401526020810190506127b6565b60008484015250505050565b6000601f19601f8301169050919050565b60006127f982612797565b61280381856127a2565b93506128138185602086016127b3565b61281c816127dd565b840191505092915050565b6000602082019050818103600083015261284181846127ee565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612881826127dd565b810181811067ffffffffffffffff821117156128a05761289f612849565b5b80604052505050565b60006128b36124eb565b90506128bf8282612878565b919050565b600067ffffffffffffffff8211156128df576128de612849565b5b602082029050602081019050919050565b60006129036128fe846128c4565b6128a9565b90508083825260208201905060208402830185811115612926576129256126c2565b5b835b8181101561294f578061293b888261257e565b845260208401935050602081019050612928565b5050509392505050565b600082601f83011261296e5761296d6126b8565b5b813561297e8482602086016128f0565b91505092915050565b600080fd5b600067ffffffffffffffff8211156129a7576129a6612849565b5b6129b0826127dd565b9050602081019050919050565b82818337600083830152505050565b60006129df6129da8461298c565b6128a9565b9050828152602081018484840111156129fb576129fa612987565b5b612a068482856129bd565b509392505050565b600082601f830112612a2357612a226126b8565b5b8135612a338482602086016129cc565b91505092915050565b600080600080600060a08688031215612a5857612a576124f5565b5b6000612a6688828901612548565b9550506020612a7788828901612548565b945050604086013567ffffffffffffffff811115612a9857612a976124fa565b5b612aa488828901612959565b935050606086013567ffffffffffffffff811115612ac557612ac46124fa565b5b612ad188828901612959565b925050608086013567ffffffffffffffff811115612af257612af16124fa565b5b612afe88828901612a0e565b9150509295509295909350565b600060208284031215612b2157612b206124f5565b5b6000612b2f84828501612548565b91505092915050565b6000819050919050565b6000612b5d612b58612b53846124ff565b612b38565b6124ff565b9050919050565b6000612b6f82612b42565b9050919050565b6000612b8182612b64565b9050919050565b612b9181612b76565b82525050565b6000602082019050612bac6000830184612b88565b92915050565b600067ffffffffffffffff821115612bcd57612bcc612849565b5b602082029050602081019050919050565b6000612bf1612bec84612bb2565b6128a9565b90508083825260208201905060208402830185811115612c1457612c136126c2565b5b835b81811015612c3d5780612c298882612548565b845260208401935050602081019050612c16565b5050509392505050565b600082601f830112612c5c57612c5b6126b8565b5b8135612c6c848260208601612bde565b91505092915050565b60008060408385031215612c8c57612c8b6124f5565b5b600083013567ffffffffffffffff811115612caa57612ca96124fa565b5b612cb685828601612c47565b925050602083013567ffffffffffffffff811115612cd757612cd66124fa565b5b612ce385828601612959565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d228161255d565b82525050565b6000612d348383612d19565b60208301905092915050565b6000602082019050919050565b6000612d5882612ced565b612d628185612cf8565b9350612d6d83612d09565b8060005b83811015612d9e578151612d858882612d28565b9750612d9083612d40565b925050600181019050612d71565b5085935050505092915050565b60006020820190508181036000830152612dc58184612d4d565b905092915050565b60008083601f840112612de357612de26126b8565b5b8235905067ffffffffffffffff811115612e0057612dff6126bd565b5b602083019150836020820283011115612e1c57612e1b6126c2565b5b9250929050565b60008083601f840112612e3957612e386126b8565b5b8235905067ffffffffffffffff811115612e5657612e556126bd565b5b602083019150836020820283011115612e7257612e716126c2565b5b9250929050565b60008060008060408587031215612e9357612e926124f5565b5b600085013567ffffffffffffffff811115612eb157612eb06124fa565b5b612ebd87828801612dcd565b9450945050602085013567ffffffffffffffff811115612ee057612edf6124fa565b5b612eec87828801612e23565b925092505092959194509250565b600080600060608486031215612f1357612f126124f5565b5b6000612f2186828701612548565b935050602084013567ffffffffffffffff811115612f4257612f416124fa565b5b612f4e86828701612959565b925050604084013567ffffffffffffffff811115612f6f57612f6e6124fa565b5b612f7b86828701612959565b9150509250925092565b612f8e8161251f565b82525050565b6000602082019050612fa96000830184612f85565b92915050565b612fb881612682565b8114612fc357600080fd5b50565b600081359050612fd581612faf565b92915050565b60008060408385031215612ff257612ff16124f5565b5b600061300085828601612548565b925050602061301185828601612fc6565b9150509250929050565b60008060408385031215613032576130316124f5565b5b600061304085828601612548565b925050602061305185828601612548565b9150509250929050565b600080600080600060a08688031215613077576130766124f5565b5b600061308588828901612548565b955050602061309688828901612548565b94505060406130a78882890161257e565b93505060606130b88882890161257e565b925050608086013567ffffffffffffffff8111156130d9576130d86124fa565b5b6130e588828901612a0e565b9150509295509295909350565b60008060006060848603121561310b5761310a6124f5565b5b600061311986828701612548565b935050602061312a8682870161257e565b925050604061313b8682870161257e565b9150509250925092565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006131a1602a836127a2565b91506131ac82613145565b604082019050919050565b600060208201905081810360008301526131d081613194565b9050919050565b600082905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061322957607f821691505b60208210810361323c5761323b6131e2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613267565b6132ae8683613267565b95508019841693508086168417925050509392505050565b60006132e16132dc6132d78461255d565b612b38565b61255d565b9050919050565b6000819050919050565b6132fb836132c6565b61330f613307826132e8565b848454613274565b825550505050565b600090565b613324613317565b61332f8184846132f2565b505050565b5b818110156133535761334860008261331c565b600181019050613335565b5050565b601f8211156133985761336981613242565b61337284613257565b81016020851015613381578190505b61339561338d85613257565b830182613334565b50505b505050565b600082821c905092915050565b60006133bb6000198460080261339d565b1980831691505092915050565b60006133d483836133aa565b9150826002028217905092915050565b6133ee83836131d7565b67ffffffffffffffff81111561340757613406612849565b5b6134118254613211565b61341c828285613357565b6000601f83116001811461344b5760008415613439578287013590505b61344385826133c8565b8655506134ab565b601f19841661345986613242565b60005b828110156134815784890135825560018201915060208501945060208101905061345c565b8683101561349e578489013561349a601f8916826133aa565b8355505b6001600288020188555050505b50505050505050565b60006040820190506134c96000830185612f85565b6134d66020830184612f85565b9392505050565b6000815190506134ec81612faf565b92915050565b600060208284031215613508576135076124f5565b5b6000613516848285016134dd565b91505092915050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b600061357b6029836127a2565b91506135868261351f565b604082019050919050565b600060208201905081810360008301526135aa8161356e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061361a8261255d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361364c5761364b6135e0565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b60006136b3602e836127a2565b91506136be82613657565b604082019050919050565b600060208201905081810360008301526136e2816136a6565b9050919050565b7f4d6967726174696f6e206973206e6f7420706f737369626c652061742074686960008201527f732074696d650000000000000000000000000000000000000000000000000000602082015250565b60006137456026836127a2565b9150613750826136e9565b604082019050919050565b6000602082019050818103600083015261377481613738565b9050919050565b7f446f65736e2774206f776e2074686520746f6b656e0000000000000000000000600082015250565b60006137b16015836127a2565b91506137bc8261377b565b602082019050919050565b600060208201905081810360008301526137e0816137a4565b9050919050565b6000815190506137f681612567565b92915050565b600060208284031215613812576138116124f5565b5b6000613820848285016137e7565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138856026836127a2565b915061389082613829565b604082019050919050565b600060208201905081810360008301526138b481613878565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138f16020836127a2565b91506138fc826138bb565b602082019050919050565b60006020820190508181036000830152613920816138e4565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006139836021836127a2565b915061398e82613927565b604082019050919050565b600060208201905081810360008301526139b281613976565b9050919050565b60006139c48261255d565b91506139cf8361255d565b92508282019050808211156139e7576139e66135e0565b5b92915050565b6000604082019050613a0260008301856125d3565b613a0f60208301846125d3565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a726023836127a2565b9150613a7d82613a16565b604082019050919050565b60006020820190508181036000830152613aa181613a65565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613b046028836127a2565b9150613b0f82613aa8565b604082019050919050565b60006020820190508181036000830152613b3381613af7565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000613b966024836127a2565b9150613ba182613b3a565b604082019050919050565b60006020820190508181036000830152613bc581613b89565b9050919050565b60006040820190508181036000830152613be68185612d4d565b90508181036020830152613bfa8184612d4d565b90509392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c5f6025836127a2565b9150613c6a82613c03565b604082019050919050565b60006020820190508181036000830152613c8e81613c52565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613cf1602a836127a2565b9150613cfc82613c95565b604082019050919050565b60006020820190508181036000830152613d2081613ce4565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613d4e82613d27565b613d588185613d32565b9350613d688185602086016127b3565b613d71816127dd565b840191505092915050565b600060a082019050613d916000830188612f85565b613d9e6020830187612f85565b613dab60408301866125d3565b613db860608301856125d3565b8181036080830152613dca8184613d43565b90509695505050505050565b600081519050613de581612629565b92915050565b600060208284031215613e0157613e006124f5565b5b6000613e0f84828501613dd6565b91505092915050565b60008160e01c9050919050565b600060033d1115613e445760046000803e613e41600051613e18565b90505b90565b600060443d10613ed457613e596124eb565b60043d036004823e80513d602482011167ffffffffffffffff82111715613e81575050613ed4565b808201805167ffffffffffffffff811115613e9f5750505050613ed4565b80602083010160043d038501811115613ebc575050505050613ed4565b613ecb82602001850186612878565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613f336034836127a2565b9150613f3e82613ed7565b604082019050919050565b60006020820190508181036000830152613f6281613f26565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613fc56028836127a2565b9150613fd082613f69565b604082019050919050565b60006020820190508181036000830152613ff481613fb8565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006140576029836127a2565b915061406282613ffb565b604082019050919050565b600060208201905081810360008301526140868161404a565b9050919050565b600060a0820190506140a26000830188612f85565b6140af6020830187612f85565b81810360408301526140c18186612d4d565b905081810360608301526140d58185612d4d565b905081810360808301526140e98184613d43565b9050969550505050505056fea26469706673582212205c2f52439ef183b0a9c5c3a1b2c3edc985b256ee00f3c935b57ff6b5e7a7990964736f6c63430008110033697066733a2f2f516d55714e7661644a646138784a706346534a58583872787a7647375168736973777232544e6e4c594858415948

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101205760003560e01c80636673c4c2116100ad578063d548280411610071578063d5482804146102dd578063e985e9c5146102e7578063f242432a14610317578063f2fde38b14610333578063f5298aca1461034f57610120565b80636673c4c2146102615780636b20c4541461027d578063715018a6146102995780638da5cb5b146102a3578063a22cb465146102c157610120565b806321fec36c116100f457806321fec36c146101d15780632eb2c2d6146101db578063357a5db0146101f757806341f43434146102135780634e1273f41461023157610120565b8062fdd58e1461012557806301ffc9a7146101555780630675b7c6146101855780630e89341c146101a1575b600080fd5b61013f600480360381019061013a9190612593565b61036b565b60405161014c91906125e2565b60405180910390f35b61016f600480360381019061016a9190612655565b610433565b60405161017c919061269d565b60405180910390f35b61019f600480360381019061019a919061271d565b610515565b005b6101bb60048036038101906101b6919061276a565b610533565b6040516101c89190612827565b60405180910390f35b6101d96105c7565b005b6101f560048036038101906101f09190612a3c565b6105fb565b005b610211600480360381019061020c9190612b0b565b610751565b005b61021b61079d565b6040516102289190612b97565b60405180910390f35b61024b60048036038101906102469190612c75565b6107af565b6040516102589190612dab565b60405180910390f35b61027b60048036038101906102769190612e79565b6108c8565b005b61029760048036038101906102929190612efa565b610955565b005b6102a16109f2565b005b6102ab610a06565b6040516102b89190612f94565b60405180910390f35b6102db60048036038101906102d69190612fdb565b610a30565b005b6102e5610b3a565b005b61030160048036038101906102fc919061301b565b610c8c565b60405161030e919061269d565b60405180910390f35b610331600480360381019061032c919061305b565b610d20565b005b61034d60048036038101906103489190612b0b565b610e76565b005b610369600480360381019061036491906130f2565b610ef9565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036103db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103d2906131b7565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104fe57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061050e575061050d82610f96565b5b9050919050565b61051d611000565b81816005918261052e9291906133e4565b505050565b60606005805461054290613211565b80601f016020809104026020016040519081016040528092919081815260200182805461056e90613211565b80156105bb5780601f10610590576101008083540402835291602001916105bb565b820191906000526020600020905b81548152906001019060200180831161059e57829003601f168201915b50505050509050919050565b6105cf611000565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b8460006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561073b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361066f5761066a868686868661107e565b610749565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016106b89291906134b4565b602060405180830381865afa1580156106d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f991906134f2565b61073a57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016107319190612f94565b60405180910390fd5b5b610748868686868661107e565b5b505050505050565b610759611000565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6daaeb6d7670e522a718067333cd4e81565b606081518351146107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90613591565b60405180910390fd5b6000835167ffffffffffffffff81111561081257610811612849565b5b6040519080825280602002602001820160405280156108405781602001602082028036833780820191505090505b50905060005b84518110156108bd5761088d858281518110610865576108646135b1565b5b60200260200101518583815181106108805761087f6135b1565b5b602002602001015161036b565b8282815181106108a05761089f6135b1565b5b602002602001018181525050806108b69061360f565b9050610846565b508091505092915050565b6108d0611000565b60005b8282905081101561094e5761093b8383838181106108f4576108f36135b1565b5b90506020020160208101906109099190612b0b565b60045487878581811061091f5761091e6135b1565b5b905060200201356040518060200160405280600081525061111f565b80806109469061360f565b9150506108d3565b5050505050565b61095d6112cf565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806109a357506109a28361099d6112cf565b610c8c565b5b6109e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d9906136c9565b60405180910390fd5b6109ed8383836112d7565b505050565b6109fa611000565b610a0460006115a5565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b2b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610aa89291906134b4565b602060405180830381865afa158015610ac5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae991906134f2565b610b2a57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b219190612f94565b60405180910390fd5b5b610b35838361166b565b505050565b600660149054906101000a900460ff16610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b809061375b565b60405180910390fd5b6000610b973360045461036b565b11610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce906137c7565b60405180910390fd5b610be5336004546001610ef9565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663937f2608336040518263ffffffff1660e01b8152600401610c459190612f94565b6020604051808303816000875af1158015610c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8891906137fc565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8460006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e60573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9457610d8f8686868686611681565b610e6e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ddd9291906134b4565b602060405180830381865afa158015610dfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1e91906134f2565b610e5f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e569190612f94565b60405180910390fd5b5b610e6d8686868686611681565b5b505050505050565b610e7e611000565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee49061389b565b60405180910390fd5b610ef6816115a5565b50565b610f016112cf565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f475750610f4683610f416112cf565b610c8c565b5b610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d906136c9565b60405180910390fd5b610f91838383611722565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6110086112cf565b73ffffffffffffffffffffffffffffffffffffffff16611026610a06565b73ffffffffffffffffffffffffffffffffffffffff161461107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390613907565b60405180910390fd5b565b6110866112cf565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110cc57506110cb856110c66112cf565b610c8c565b5b61110b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611102906136c9565b60405180910390fd5b6111188585858585611968565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590613999565b60405180910390fd5b60006111986112cf565b905060006111a585611c89565b905060006111b285611c89565b90506111c383600089858589611d03565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461122291906139b9565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516112a09291906139ed565b60405180910390a46112b783600089858589611d0b565b6112c683600089898989611d13565b50505050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90613a88565b60405180910390fd5b805182511461138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190613b1a565b60405180910390fd5b60006113946112cf565b90506113b481856000868660405180602001604052806000815250611d03565b60005b83518110156115015760008482815181106113d5576113d46135b1565b5b6020026020010151905060008483815181106113f4576113f36135b1565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90613bac565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806114f99061360f565b9150506113b7565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611579929190613bcc565b60405180910390a461159f81856000868660405180602001604052806000815250611d0b565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61167d6116766112cf565b8383611eea565b5050565b6116896112cf565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806116cf57506116ce856116c96112cf565b610c8c565b5b61170e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611705906136c9565b60405180910390fd5b61171b8585858585612056565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613a88565b60405180910390fd5b600061179b6112cf565b905060006117a884611c89565b905060006117b584611c89565b90506117d583876000858560405180602001604052806000815250611d03565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508481101561186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390613bac565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516119399291906139ed565b60405180910390a461195f84886000868660405180602001604052806000815250611d0b565b50505050505050565b81518351146119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390613b1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1290613c75565b60405180910390fd5b6000611a256112cf565b9050611a35818787878787611d03565b60005b8451811015611be6576000858281518110611a5657611a556135b1565b5b602002602001015190506000858381518110611a7557611a746135b1565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90613d07565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bcb91906139b9565b9250508190555050505080611bdf9061360f565b9050611a38565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c5d929190613bcc565b60405180910390a4611c73818787878787611d0b565b611c818187878787876122f1565b505050505050565b60606000600167ffffffffffffffff811115611ca857611ca7612849565b5b604051908082528060200260200182016040528015611cd65781602001602082028036833780820191505090505b5090508281600081518110611cee57611ced6135b1565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b611d328473ffffffffffffffffffffffffffffffffffffffff166124c8565b15611ee2578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611d78959493929190613d7c565b6020604051808303816000875af1925050508015611db457506040513d601f19601f82011682018060405250810190611db19190613deb565b60015b611e5957611dc0613e25565b806308c379a003611e1c5750611dd4613e47565b80611ddf5750611e1e565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e139190612827565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5090613f49565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed790613fdb565b60405180910390fd5b505b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f9061406d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612049919061269d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036120c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bc90613c75565b60405180910390fd5b60006120cf6112cf565b905060006120dc85611c89565b905060006120e985611c89565b90506120f9838989858589611d03565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218790613d07565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224591906139b9565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516122c29291906139ed565b60405180910390a46122d8848a8a86868a611d0b565b6122e6848a8a8a8a8a611d13565b505050505050505050565b6123108473ffffffffffffffffffffffffffffffffffffffff166124c8565b156124c0578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161235695949392919061408d565b6020604051808303816000875af192505050801561239257506040513d601f19601f8201168201806040525081019061238f9190613deb565b60015b6124375761239e613e25565b806308c379a0036123fa57506123b2613e47565b806123bd57506123fc565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f19190612827565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90613f49565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146124be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b590613fdb565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061252a826124ff565b9050919050565b61253a8161251f565b811461254557600080fd5b50565b60008135905061255781612531565b92915050565b6000819050919050565b6125708161255d565b811461257b57600080fd5b50565b60008135905061258d81612567565b92915050565b600080604083850312156125aa576125a96124f5565b5b60006125b885828601612548565b92505060206125c98582860161257e565b9150509250929050565b6125dc8161255d565b82525050565b60006020820190506125f760008301846125d3565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612632816125fd565b811461263d57600080fd5b50565b60008135905061264f81612629565b92915050565b60006020828403121561266b5761266a6124f5565b5b600061267984828501612640565b91505092915050565b60008115159050919050565b61269781612682565b82525050565b60006020820190506126b2600083018461268e565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126126dd576126dc6126b8565b5b8235905067ffffffffffffffff8111156126fa576126f96126bd565b5b602083019150836001820283011115612716576127156126c2565b5b9250929050565b60008060208385031215612734576127336124f5565b5b600083013567ffffffffffffffff811115612752576127516124fa565b5b61275e858286016126c7565b92509250509250929050565b6000602082840312156127805761277f6124f5565b5b600061278e8482850161257e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127d15780820151818401526020810190506127b6565b60008484015250505050565b6000601f19601f8301169050919050565b60006127f982612797565b61280381856127a2565b93506128138185602086016127b3565b61281c816127dd565b840191505092915050565b6000602082019050818103600083015261284181846127ee565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612881826127dd565b810181811067ffffffffffffffff821117156128a05761289f612849565b5b80604052505050565b60006128b36124eb565b90506128bf8282612878565b919050565b600067ffffffffffffffff8211156128df576128de612849565b5b602082029050602081019050919050565b60006129036128fe846128c4565b6128a9565b90508083825260208201905060208402830185811115612926576129256126c2565b5b835b8181101561294f578061293b888261257e565b845260208401935050602081019050612928565b5050509392505050565b600082601f83011261296e5761296d6126b8565b5b813561297e8482602086016128f0565b91505092915050565b600080fd5b600067ffffffffffffffff8211156129a7576129a6612849565b5b6129b0826127dd565b9050602081019050919050565b82818337600083830152505050565b60006129df6129da8461298c565b6128a9565b9050828152602081018484840111156129fb576129fa612987565b5b612a068482856129bd565b509392505050565b600082601f830112612a2357612a226126b8565b5b8135612a338482602086016129cc565b91505092915050565b600080600080600060a08688031215612a5857612a576124f5565b5b6000612a6688828901612548565b9550506020612a7788828901612548565b945050604086013567ffffffffffffffff811115612a9857612a976124fa565b5b612aa488828901612959565b935050606086013567ffffffffffffffff811115612ac557612ac46124fa565b5b612ad188828901612959565b925050608086013567ffffffffffffffff811115612af257612af16124fa565b5b612afe88828901612a0e565b9150509295509295909350565b600060208284031215612b2157612b206124f5565b5b6000612b2f84828501612548565b91505092915050565b6000819050919050565b6000612b5d612b58612b53846124ff565b612b38565b6124ff565b9050919050565b6000612b6f82612b42565b9050919050565b6000612b8182612b64565b9050919050565b612b9181612b76565b82525050565b6000602082019050612bac6000830184612b88565b92915050565b600067ffffffffffffffff821115612bcd57612bcc612849565b5b602082029050602081019050919050565b6000612bf1612bec84612bb2565b6128a9565b90508083825260208201905060208402830185811115612c1457612c136126c2565b5b835b81811015612c3d5780612c298882612548565b845260208401935050602081019050612c16565b5050509392505050565b600082601f830112612c5c57612c5b6126b8565b5b8135612c6c848260208601612bde565b91505092915050565b60008060408385031215612c8c57612c8b6124f5565b5b600083013567ffffffffffffffff811115612caa57612ca96124fa565b5b612cb685828601612c47565b925050602083013567ffffffffffffffff811115612cd757612cd66124fa565b5b612ce385828601612959565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d228161255d565b82525050565b6000612d348383612d19565b60208301905092915050565b6000602082019050919050565b6000612d5882612ced565b612d628185612cf8565b9350612d6d83612d09565b8060005b83811015612d9e578151612d858882612d28565b9750612d9083612d40565b925050600181019050612d71565b5085935050505092915050565b60006020820190508181036000830152612dc58184612d4d565b905092915050565b60008083601f840112612de357612de26126b8565b5b8235905067ffffffffffffffff811115612e0057612dff6126bd565b5b602083019150836020820283011115612e1c57612e1b6126c2565b5b9250929050565b60008083601f840112612e3957612e386126b8565b5b8235905067ffffffffffffffff811115612e5657612e556126bd565b5b602083019150836020820283011115612e7257612e716126c2565b5b9250929050565b60008060008060408587031215612e9357612e926124f5565b5b600085013567ffffffffffffffff811115612eb157612eb06124fa565b5b612ebd87828801612dcd565b9450945050602085013567ffffffffffffffff811115612ee057612edf6124fa565b5b612eec87828801612e23565b925092505092959194509250565b600080600060608486031215612f1357612f126124f5565b5b6000612f2186828701612548565b935050602084013567ffffffffffffffff811115612f4257612f416124fa565b5b612f4e86828701612959565b925050604084013567ffffffffffffffff811115612f6f57612f6e6124fa565b5b612f7b86828701612959565b9150509250925092565b612f8e8161251f565b82525050565b6000602082019050612fa96000830184612f85565b92915050565b612fb881612682565b8114612fc357600080fd5b50565b600081359050612fd581612faf565b92915050565b60008060408385031215612ff257612ff16124f5565b5b600061300085828601612548565b925050602061301185828601612fc6565b9150509250929050565b60008060408385031215613032576130316124f5565b5b600061304085828601612548565b925050602061305185828601612548565b9150509250929050565b600080600080600060a08688031215613077576130766124f5565b5b600061308588828901612548565b955050602061309688828901612548565b94505060406130a78882890161257e565b93505060606130b88882890161257e565b925050608086013567ffffffffffffffff8111156130d9576130d86124fa565b5b6130e588828901612a0e565b9150509295509295909350565b60008060006060848603121561310b5761310a6124f5565b5b600061311986828701612548565b935050602061312a8682870161257e565b925050604061313b8682870161257e565b9150509250925092565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006131a1602a836127a2565b91506131ac82613145565b604082019050919050565b600060208201905081810360008301526131d081613194565b9050919050565b600082905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061322957607f821691505b60208210810361323c5761323b6131e2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613267565b6132ae8683613267565b95508019841693508086168417925050509392505050565b60006132e16132dc6132d78461255d565b612b38565b61255d565b9050919050565b6000819050919050565b6132fb836132c6565b61330f613307826132e8565b848454613274565b825550505050565b600090565b613324613317565b61332f8184846132f2565b505050565b5b818110156133535761334860008261331c565b600181019050613335565b5050565b601f8211156133985761336981613242565b61337284613257565b81016020851015613381578190505b61339561338d85613257565b830182613334565b50505b505050565b600082821c905092915050565b60006133bb6000198460080261339d565b1980831691505092915050565b60006133d483836133aa565b9150826002028217905092915050565b6133ee83836131d7565b67ffffffffffffffff81111561340757613406612849565b5b6134118254613211565b61341c828285613357565b6000601f83116001811461344b5760008415613439578287013590505b61344385826133c8565b8655506134ab565b601f19841661345986613242565b60005b828110156134815784890135825560018201915060208501945060208101905061345c565b8683101561349e578489013561349a601f8916826133aa565b8355505b6001600288020188555050505b50505050505050565b60006040820190506134c96000830185612f85565b6134d66020830184612f85565b9392505050565b6000815190506134ec81612faf565b92915050565b600060208284031215613508576135076124f5565b5b6000613516848285016134dd565b91505092915050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b600061357b6029836127a2565b91506135868261351f565b604082019050919050565b600060208201905081810360008301526135aa8161356e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061361a8261255d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361364c5761364b6135e0565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b60006136b3602e836127a2565b91506136be82613657565b604082019050919050565b600060208201905081810360008301526136e2816136a6565b9050919050565b7f4d6967726174696f6e206973206e6f7420706f737369626c652061742074686960008201527f732074696d650000000000000000000000000000000000000000000000000000602082015250565b60006137456026836127a2565b9150613750826136e9565b604082019050919050565b6000602082019050818103600083015261377481613738565b9050919050565b7f446f65736e2774206f776e2074686520746f6b656e0000000000000000000000600082015250565b60006137b16015836127a2565b91506137bc8261377b565b602082019050919050565b600060208201905081810360008301526137e0816137a4565b9050919050565b6000815190506137f681612567565b92915050565b600060208284031215613812576138116124f5565b5b6000613820848285016137e7565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138856026836127a2565b915061389082613829565b604082019050919050565b600060208201905081810360008301526138b481613878565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138f16020836127a2565b91506138fc826138bb565b602082019050919050565b60006020820190508181036000830152613920816138e4565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006139836021836127a2565b915061398e82613927565b604082019050919050565b600060208201905081810360008301526139b281613976565b9050919050565b60006139c48261255d565b91506139cf8361255d565b92508282019050808211156139e7576139e66135e0565b5b92915050565b6000604082019050613a0260008301856125d3565b613a0f60208301846125d3565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a726023836127a2565b9150613a7d82613a16565b604082019050919050565b60006020820190508181036000830152613aa181613a65565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613b046028836127a2565b9150613b0f82613aa8565b604082019050919050565b60006020820190508181036000830152613b3381613af7565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000613b966024836127a2565b9150613ba182613b3a565b604082019050919050565b60006020820190508181036000830152613bc581613b89565b9050919050565b60006040820190508181036000830152613be68185612d4d565b90508181036020830152613bfa8184612d4d565b90509392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c5f6025836127a2565b9150613c6a82613c03565b604082019050919050565b60006020820190508181036000830152613c8e81613c52565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613cf1602a836127a2565b9150613cfc82613c95565b604082019050919050565b60006020820190508181036000830152613d2081613ce4565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613d4e82613d27565b613d588185613d32565b9350613d688185602086016127b3565b613d71816127dd565b840191505092915050565b600060a082019050613d916000830188612f85565b613d9e6020830187612f85565b613dab60408301866125d3565b613db860608301856125d3565b8181036080830152613dca8184613d43565b90509695505050505050565b600081519050613de581612629565b92915050565b600060208284031215613e0157613e006124f5565b5b6000613e0f84828501613dd6565b91505092915050565b60008160e01c9050919050565b600060033d1115613e445760046000803e613e41600051613e18565b90505b90565b600060443d10613ed457613e596124eb565b60043d036004823e80513d602482011167ffffffffffffffff82111715613e81575050613ed4565b808201805167ffffffffffffffff811115613e9f5750505050613ed4565b80602083010160043d038501811115613ebc575050505050613ed4565b613ecb82602001850186612878565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613f336034836127a2565b9150613f3e82613ed7565b604082019050919050565b60006020820190508181036000830152613f6281613f26565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613fc56028836127a2565b9150613fd082613f69565b604082019050919050565b60006020820190508181036000830152613ff481613fb8565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006140576029836127a2565b915061406282613ffb565b604082019050919050565b600060208201905081810360008301526140868161404a565b9050919050565b600060a0820190506140a26000830188612f85565b6140af6020830187612f85565b81810360408301526140c18186612d4d565b905081810360608301526140d58185612d4d565b905081810360808301526140e98184613d43565b9050969550505050505056fea26469706673582212205c2f52439ef183b0a9c5c3a1b2c3edc985b256ee00f3c935b57ff6b5e7a7990964736f6c63430008110033

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.