ETH Price: $3,392.96 (-1.26%)
Gas: 2 Gwei

RTFKT X NIKE MONOLITH ()
 

Overview

TokenID

1

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Trillium Lace Engine powers the incredible auto-lacing and customizable fit technology inside the Cryptokicks iRL sneakers.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MNLTHBIS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : mnlthbis.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.7;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";

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

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

    uint256 tokenId = 1;
    string tokenUri = "";
    address dunkAddress = 0xcED4e174BC3319f5e9EfD4e99E36A70830F2b98B;
    bool migrationActive = false;
    
    function mint(address receiver) public returns (uint256) {
        require(msg.sender == dunkAddress, "Not authorized");

        _mint(receiver, 1, 1, "");

        return 1;
    }

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

    function changeDunkAddress(address newAddress) public onlyOwner {
        dunkAddress = newAddress;
    }

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

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

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

File 2 of 11 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 owner nor 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 owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 3 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 11 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `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();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

        return array;
    }
}

File 5 of 11 : 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 6 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 11 of 11 : 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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"newAddress","type":"address"}],"name":"changeDunkAddress","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":[{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

60806040526001600455604051806020016040528060008152506005908051906020019062000030929190620001e1565b5073ced4e174bc3319f5e9efd4e99e36a70830f2b98b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660146101000a81548160ff021916908315150217905550348015620000ae57600080fd5b5060405180602001604052806000815250620000d081620000f760201b60201c565b50620000f1620000e56200011360201b60201c565b6200011b60201b60201c565b620002f6565b80600290805190602001906200010f929190620001e1565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ef9062000291565b90600052602060002090601f0160209004810192826200021357600085556200025f565b82601f106200022e57805160ff19168380011785556200025f565b828001600101855582156200025f579182015b828111156200025e57825182559160200191906001019062000241565b5b5090506200026e919062000272565b5090565b5b808211156200028d57600081600090555060010162000273565b5090565b60006002820490506001821680620002aa57607f821691505b60208210811415620002c157620002c0620002c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c3580620003066000396000f3fe608060405234801561001057600080fd5b50600436106101155760003560e01c8063715018a6116100a2578063d548280411610071578063d5482804146102c8578063e985e9c5146102d2578063f242432a14610302578063f2fde38b1461031e578063f5298aca1461033a57610115565b8063715018a6146102685780638da5cb5b1461027257806396c54d9f14610290578063a22cb465146102ac57610115565b806321fec36c116100e957806321fec36c146101c65780632eb2c2d6146101d05780634e1273f4146101ec5780636a6278421461021c5780636b20c4541461024c57610115565b8062fdd58e1461011a57806301ffc9a71461014a5780630675b7c61461017a5780630e89341c14610196575b600080fd5b610134600480360381019061012f9190612863565b610356565b60405161014191906131bc565b60405180910390f35b610164600480360381019061015f919061296e565b61041f565b6040516101719190612f3f565b60405180910390f35b610194600480360381019061018f91906129c8565b610501565b005b6101b060048036038101906101ab9190612a15565b610593565b6040516101bd9190612f5a565b60405180910390f35b6101ce610627565b005b6101ea60048036038101906101e59190612632565b6106cf565b005b610206600480360381019061020191906128f6565b610770565b6040516102139190612ee6565b60405180910390f35b610236600480360381019061023191906125c5565b610889565b60405161024391906131bc565b60405180910390f35b61026660048036038101906102619190612798565b610940565b005b6102706109dd565b005b61027a610a65565b6040516102879190612e09565b60405180910390f35b6102aa60048036038101906102a591906125c5565b610a8f565b005b6102c660048036038101906102c19190612823565b610b4f565b005b6102d0610b65565b005b6102ec60048036038101906102e791906125f2565b610cc6565b6040516102f99190612f3f565b60405180910390f35b61031c60048036038101906103179190612701565b610d5a565b005b610338600480360381019061033391906125c5565b610dfb565b005b610354600480360381019061034f91906128a3565b610ef3565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156103c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103be90612fbc565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ea57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104fa57506104f982610f90565b5b9050919050565b610509610ffa565b73ffffffffffffffffffffffffffffffffffffffff16610527610a65565b73ffffffffffffffffffffffffffffffffffffffff161461057d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610574906130dc565b60405180910390fd5b81816005919061058e9291906122a2565b505050565b6060600580546105a29061342b565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce9061342b565b801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b50505050509050919050565b61062f610ffa565b73ffffffffffffffffffffffffffffffffffffffff1661064d610a65565b73ffffffffffffffffffffffffffffffffffffffff16146106a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069a906130dc565b60405180910390fd5b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b6106d7610ffa565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061071d575061071c85610717610ffa565b610cc6565b5b61075c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107539061307c565b60405180910390fd5b6107698585858585611002565b5050505050565b606081518351146107b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ad9061313c565b60405180910390fd5b6000835167ffffffffffffffff8111156107d3576107d2613564565b5b6040519080825280602002602001820160405280156108015781602001602082028036833780820191505090505b50905060005b845181101561087e5761084e85828151811061082657610825613535565b5b602002602001015185838151811061084157610840613535565b5b6020026020010151610356565b82828151811061086157610860613535565b5b602002602001018181525050806108779061348e565b9050610807565b508091505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061319c565b60405180910390fd5b6109378260018060405180602001604052806000815250611316565b60019050919050565b610948610ffa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061098e575061098d83610988610ffa565b610cc6565b5b6109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c49061303c565b60405180910390fd5b6109d88383836114ac565b505050565b6109e5610ffa565b73ffffffffffffffffffffffffffffffffffffffff16610a03610a65565b73ffffffffffffffffffffffffffffffffffffffff1614610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a50906130dc565b60405180910390fd5b610a63600061175d565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610a97610ffa565b73ffffffffffffffffffffffffffffffffffffffff16610ab5610a65565b73ffffffffffffffffffffffffffffffffffffffff1614610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b02906130dc565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b61610b5a610ffa565b8383611823565b5050565b600660149054906101000a900460ff16610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab906130fc565b60405180910390fd5b6000610bc233600454610356565b11610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990612ffc565b60405180910390fd5b610c10336004546001610ef3565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663937f2608336040518263ffffffff1660e01b8152600401610c709190612e09565b602060405180830381600087803b158015610c8a57600080fd5b505af1158015610c9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc29190612a42565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610d62610ffa565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610da85750610da785610da2610ffa565b610cc6565b5b610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde9061303c565b60405180910390fd5b610df48585858585611990565b5050505050565b610e03610ffa565b73ffffffffffffffffffffffffffffffffffffffff16610e21610a65565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e906130dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90612fdc565b60405180910390fd5b610ef08161175d565b50565b610efb610ffa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f415750610f4083610f3b610ffa565b610cc6565b5b610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f779061303c565b60405180910390fd5b610f8b838383611c12565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d9061315c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad9061305c565b60405180910390fd5b60006110c0610ffa565b90506110d0818787878787611e2f565b60005b84518110156112815760008582815181106110f1576110f0613535565b5b6020026020010151905060008583815181106111105761110f613535565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a8906130bc565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611266919061331f565b925050819055505050508061127a9061348e565b90506110d3565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112f8929190612f08565b60405180910390a461130e818787878787611e37565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d9061317c565b60405180910390fd5b6000611390610ffa565b90506113b1816000876113a28861201e565b6113ab8861201e565b87611e2f565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611410919061331f565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161148e9291906131d7565b60405180910390a46114a581600087878787612098565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561151c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115139061309c565b60405180910390fd5b8051825114611560576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115579061315c565b60405180910390fd5b600061156a610ffa565b905061158a81856000868660405180602001604052806000815250611e2f565b60005b83518110156116d75760008482815181106115ab576115aa613535565b5b6020026020010151905060008483815181106115ca576115c9613535565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561166b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116629061301c565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806116cf9061348e565b91505061158d565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161174f929190612f08565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118899061311c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119839190612f3f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f79061305c565b60405180910390fd5b6000611a0a610ffa565b9050611a2a818787611a1b8861201e565b611a248861201e565b87611e2f565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab8906130bc565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b76919061331f565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611bf39291906131d7565b60405180910390a4611c09828888888888612098565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c799061309c565b60405180910390fd5b6000611c8c610ffa565b9050611cbc81856000611c9e8761201e565b611ca78761201e565b60405180602001604052806000815250611e2f565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4a9061301c565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611e209291906131d7565b60405180910390a45050505050565b505050505050565b611e568473ffffffffffffffffffffffffffffffffffffffff1661227f565b15612016578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611e9c959493929190612e24565b602060405180830381600087803b158015611eb657600080fd5b505af1925050508015611ee757506040513d601f19601f82011682018060405250810190611ee4919061299b565b60015b611f8d57611ef3613593565b806308c379a01415611f505750611f08613b0d565b80611f135750611f52565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f479190612f5a565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8490612f7c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90612f9c565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561203d5761203c613564565b5b60405190808252806020026020018201604052801561206b5781602001602082028036833780820191505090505b509050828160008151811061208357612082613535565b5b60200260200101818152505080915050919050565b6120b78473ffffffffffffffffffffffffffffffffffffffff1661227f565b15612277578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016120fd959493929190612e8c565b602060405180830381600087803b15801561211757600080fd5b505af192505050801561214857506040513d601f19601f82011682018060405250810190612145919061299b565b60015b6121ee57612154613593565b806308c379a014156121b15750612169613b0d565b8061217457506121b3565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a89190612f5a565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e590612f7c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226c90612f9c565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546122ae9061342b565b90600052602060002090601f0160209004810192826122d05760008555612317565b82601f106122e957803560ff1916838001178555612317565b82800160010185558215612317579182015b828111156123165782358255916020019190600101906122fb565b5b5090506123249190612328565b5090565b5b80821115612341576000816000905550600101612329565b5090565b600061235861235384613225565b613200565b9050808382526020820190508285602086028201111561237b5761237a6135bf565b5b60005b858110156123ab57816123918882612467565b84526020840193506020830192505060018101905061237e565b5050509392505050565b60006123c86123c384613251565b613200565b905080838252602082019050828560208602820111156123eb576123ea6135bf565b5b60005b8581101561241b5781612401888261259b565b8452602084019350602083019250506001810190506123ee565b5050509392505050565b60006124386124338461327d565b613200565b905082815260208101848484011115612454576124536135c4565b5b61245f8482856133e9565b509392505050565b60008135905061247681613ba3565b92915050565b600082601f830112612491576124906135ba565b5b81356124a1848260208601612345565b91505092915050565b600082601f8301126124bf576124be6135ba565b5b81356124cf8482602086016123b5565b91505092915050565b6000813590506124e781613bba565b92915050565b6000813590506124fc81613bd1565b92915050565b60008151905061251181613bd1565b92915050565b600082601f83011261252c5761252b6135ba565b5b813561253c848260208601612425565b91505092915050565b60008083601f84011261255b5761255a6135ba565b5b8235905067ffffffffffffffff811115612578576125776135b5565b5b602083019150836001820283011115612594576125936135bf565b5b9250929050565b6000813590506125aa81613be8565b92915050565b6000815190506125bf81613be8565b92915050565b6000602082840312156125db576125da6135ce565b5b60006125e984828501612467565b91505092915050565b60008060408385031215612609576126086135ce565b5b600061261785828601612467565b925050602061262885828601612467565b9150509250929050565b600080600080600060a0868803121561264e5761264d6135ce565b5b600061265c88828901612467565b955050602061266d88828901612467565b945050604086013567ffffffffffffffff81111561268e5761268d6135c9565b5b61269a888289016124aa565b935050606086013567ffffffffffffffff8111156126bb576126ba6135c9565b5b6126c7888289016124aa565b925050608086013567ffffffffffffffff8111156126e8576126e76135c9565b5b6126f488828901612517565b9150509295509295909350565b600080600080600060a0868803121561271d5761271c6135ce565b5b600061272b88828901612467565b955050602061273c88828901612467565b945050604061274d8882890161259b565b935050606061275e8882890161259b565b925050608086013567ffffffffffffffff81111561277f5761277e6135c9565b5b61278b88828901612517565b9150509295509295909350565b6000806000606084860312156127b1576127b06135ce565b5b60006127bf86828701612467565b935050602084013567ffffffffffffffff8111156127e0576127df6135c9565b5b6127ec868287016124aa565b925050604084013567ffffffffffffffff81111561280d5761280c6135c9565b5b612819868287016124aa565b9150509250925092565b6000806040838503121561283a576128396135ce565b5b600061284885828601612467565b9250506020612859858286016124d8565b9150509250929050565b6000806040838503121561287a576128796135ce565b5b600061288885828601612467565b92505060206128998582860161259b565b9150509250929050565b6000806000606084860312156128bc576128bb6135ce565b5b60006128ca86828701612467565b93505060206128db8682870161259b565b92505060406128ec8682870161259b565b9150509250925092565b6000806040838503121561290d5761290c6135ce565b5b600083013567ffffffffffffffff81111561292b5761292a6135c9565b5b6129378582860161247c565b925050602083013567ffffffffffffffff811115612958576129576135c9565b5b612964858286016124aa565b9150509250929050565b600060208284031215612984576129836135ce565b5b6000612992848285016124ed565b91505092915050565b6000602082840312156129b1576129b06135ce565b5b60006129bf84828501612502565b91505092915050565b600080602083850312156129df576129de6135ce565b5b600083013567ffffffffffffffff8111156129fd576129fc6135c9565b5b612a0985828601612545565b92509250509250929050565b600060208284031215612a2b57612a2a6135ce565b5b6000612a398482850161259b565b91505092915050565b600060208284031215612a5857612a576135ce565b5b6000612a66848285016125b0565b91505092915050565b6000612a7b8383612deb565b60208301905092915050565b612a9081613375565b82525050565b6000612aa1826132be565b612aab81856132ec565b9350612ab6836132ae565b8060005b83811015612ae7578151612ace8882612a6f565b9750612ad9836132df565b925050600181019050612aba565b5085935050505092915050565b612afd81613387565b82525050565b6000612b0e826132c9565b612b1881856132fd565b9350612b288185602086016133f8565b612b31816135d3565b840191505092915050565b6000612b47826132d4565b612b51818561330e565b9350612b618185602086016133f8565b612b6a816135d3565b840191505092915050565b6000612b8260348361330e565b9150612b8d826135f1565b604082019050919050565b6000612ba560288361330e565b9150612bb082613640565b604082019050919050565b6000612bc8602b8361330e565b9150612bd38261368f565b604082019050919050565b6000612beb60268361330e565b9150612bf6826136de565b604082019050919050565b6000612c0e60158361330e565b9150612c198261372d565b602082019050919050565b6000612c3160248361330e565b9150612c3c82613756565b604082019050919050565b6000612c5460298361330e565b9150612c5f826137a5565b604082019050919050565b6000612c7760258361330e565b9150612c82826137f4565b604082019050919050565b6000612c9a60328361330e565b9150612ca582613843565b604082019050919050565b6000612cbd60238361330e565b9150612cc882613892565b604082019050919050565b6000612ce0602a8361330e565b9150612ceb826138e1565b604082019050919050565b6000612d0360208361330e565b9150612d0e82613930565b602082019050919050565b6000612d2660268361330e565b9150612d3182613959565b604082019050919050565b6000612d4960298361330e565b9150612d54826139a8565b604082019050919050565b6000612d6c60298361330e565b9150612d77826139f7565b604082019050919050565b6000612d8f60288361330e565b9150612d9a82613a46565b604082019050919050565b6000612db260218361330e565b9150612dbd82613a95565b604082019050919050565b6000612dd5600e8361330e565b9150612de082613ae4565b602082019050919050565b612df4816133df565b82525050565b612e03816133df565b82525050565b6000602082019050612e1e6000830184612a87565b92915050565b600060a082019050612e396000830188612a87565b612e466020830187612a87565b8181036040830152612e588186612a96565b90508181036060830152612e6c8185612a96565b90508181036080830152612e808184612b03565b90509695505050505050565b600060a082019050612ea16000830188612a87565b612eae6020830187612a87565b612ebb6040830186612dfa565b612ec86060830185612dfa565b8181036080830152612eda8184612b03565b90509695505050505050565b60006020820190508181036000830152612f008184612a96565b905092915050565b60006040820190508181036000830152612f228185612a96565b90508181036020830152612f368184612a96565b90509392505050565b6000602082019050612f546000830184612af4565b92915050565b60006020820190508181036000830152612f748184612b3c565b905092915050565b60006020820190508181036000830152612f9581612b75565b9050919050565b60006020820190508181036000830152612fb581612b98565b9050919050565b60006020820190508181036000830152612fd581612bbb565b9050919050565b60006020820190508181036000830152612ff581612bde565b9050919050565b6000602082019050818103600083015261301581612c01565b9050919050565b6000602082019050818103600083015261303581612c24565b9050919050565b6000602082019050818103600083015261305581612c47565b9050919050565b6000602082019050818103600083015261307581612c6a565b9050919050565b6000602082019050818103600083015261309581612c8d565b9050919050565b600060208201905081810360008301526130b581612cb0565b9050919050565b600060208201905081810360008301526130d581612cd3565b9050919050565b600060208201905081810360008301526130f581612cf6565b9050919050565b6000602082019050818103600083015261311581612d19565b9050919050565b6000602082019050818103600083015261313581612d3c565b9050919050565b6000602082019050818103600083015261315581612d5f565b9050919050565b6000602082019050818103600083015261317581612d82565b9050919050565b6000602082019050818103600083015261319581612da5565b9050919050565b600060208201905081810360008301526131b581612dc8565b9050919050565b60006020820190506131d16000830184612dfa565b92915050565b60006040820190506131ec6000830185612dfa565b6131f96020830184612dfa565b9392505050565b600061320a61321b565b9050613216828261345d565b919050565b6000604051905090565b600067ffffffffffffffff8211156132405761323f613564565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561326c5761326b613564565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561329857613297613564565b5b6132a1826135d3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061332a826133df565b9150613335836133df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561336a576133696134d7565b5b828201905092915050565b6000613380826133bf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134165780820151818401526020810190506133fb565b83811115613425576000848401525b50505050565b6000600282049050600182168061344357607f821691505b6020821081141561345757613456613506565b5b50919050565b613466826135d3565b810181811067ffffffffffffffff8211171561348557613484613564565b5b80604052505050565b6000613499826133df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134cc576134cb6134d7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156135b25760046000803e6135af6000516135e4565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f446f65736e2774206f776e2074686520746f6b656e0000000000000000000000600082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6967726174696f6e206973206e6f7420706f737369626c652061742074686960008201527f732074696d650000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b600060443d1015613b1d57613ba0565b613b2561321b565b60043d036004823e80513d602482011167ffffffffffffffff82111715613b4d575050613ba0565b808201805167ffffffffffffffff811115613b6b5750505050613ba0565b80602083010160043d038501811115613b88575050505050613ba0565b613b978260200185018661345d565b82955050505050505b90565b613bac81613375565b8114613bb757600080fd5b50565b613bc381613387565b8114613bce57600080fd5b50565b613bda81613393565b8114613be557600080fd5b50565b613bf1816133df565b8114613bfc57600080fd5b5056fea26469706673582212209708a7291712b2a860720ffde3309bf9d94329fd60ca5bc7eed88503095238b564736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101155760003560e01c8063715018a6116100a2578063d548280411610071578063d5482804146102c8578063e985e9c5146102d2578063f242432a14610302578063f2fde38b1461031e578063f5298aca1461033a57610115565b8063715018a6146102685780638da5cb5b1461027257806396c54d9f14610290578063a22cb465146102ac57610115565b806321fec36c116100e957806321fec36c146101c65780632eb2c2d6146101d05780634e1273f4146101ec5780636a6278421461021c5780636b20c4541461024c57610115565b8062fdd58e1461011a57806301ffc9a71461014a5780630675b7c61461017a5780630e89341c14610196575b600080fd5b610134600480360381019061012f9190612863565b610356565b60405161014191906131bc565b60405180910390f35b610164600480360381019061015f919061296e565b61041f565b6040516101719190612f3f565b60405180910390f35b610194600480360381019061018f91906129c8565b610501565b005b6101b060048036038101906101ab9190612a15565b610593565b6040516101bd9190612f5a565b60405180910390f35b6101ce610627565b005b6101ea60048036038101906101e59190612632565b6106cf565b005b610206600480360381019061020191906128f6565b610770565b6040516102139190612ee6565b60405180910390f35b610236600480360381019061023191906125c5565b610889565b60405161024391906131bc565b60405180910390f35b61026660048036038101906102619190612798565b610940565b005b6102706109dd565b005b61027a610a65565b6040516102879190612e09565b60405180910390f35b6102aa60048036038101906102a591906125c5565b610a8f565b005b6102c660048036038101906102c19190612823565b610b4f565b005b6102d0610b65565b005b6102ec60048036038101906102e791906125f2565b610cc6565b6040516102f99190612f3f565b60405180910390f35b61031c60048036038101906103179190612701565b610d5a565b005b610338600480360381019061033391906125c5565b610dfb565b005b610354600480360381019061034f91906128a3565b610ef3565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156103c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103be90612fbc565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ea57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104fa57506104f982610f90565b5b9050919050565b610509610ffa565b73ffffffffffffffffffffffffffffffffffffffff16610527610a65565b73ffffffffffffffffffffffffffffffffffffffff161461057d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610574906130dc565b60405180910390fd5b81816005919061058e9291906122a2565b505050565b6060600580546105a29061342b565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce9061342b565b801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b50505050509050919050565b61062f610ffa565b73ffffffffffffffffffffffffffffffffffffffff1661064d610a65565b73ffffffffffffffffffffffffffffffffffffffff16146106a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069a906130dc565b60405180910390fd5b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b6106d7610ffa565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061071d575061071c85610717610ffa565b610cc6565b5b61075c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107539061307c565b60405180910390fd5b6107698585858585611002565b5050505050565b606081518351146107b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ad9061313c565b60405180910390fd5b6000835167ffffffffffffffff8111156107d3576107d2613564565b5b6040519080825280602002602001820160405280156108015781602001602082028036833780820191505090505b50905060005b845181101561087e5761084e85828151811061082657610825613535565b5b602002602001015185838151811061084157610840613535565b5b6020026020010151610356565b82828151811061086157610860613535565b5b602002602001018181525050806108779061348e565b9050610807565b508091505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061319c565b60405180910390fd5b6109378260018060405180602001604052806000815250611316565b60019050919050565b610948610ffa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061098e575061098d83610988610ffa565b610cc6565b5b6109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c49061303c565b60405180910390fd5b6109d88383836114ac565b505050565b6109e5610ffa565b73ffffffffffffffffffffffffffffffffffffffff16610a03610a65565b73ffffffffffffffffffffffffffffffffffffffff1614610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a50906130dc565b60405180910390fd5b610a63600061175d565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610a97610ffa565b73ffffffffffffffffffffffffffffffffffffffff16610ab5610a65565b73ffffffffffffffffffffffffffffffffffffffff1614610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b02906130dc565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b61610b5a610ffa565b8383611823565b5050565b600660149054906101000a900460ff16610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab906130fc565b60405180910390fd5b6000610bc233600454610356565b11610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990612ffc565b60405180910390fd5b610c10336004546001610ef3565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663937f2608336040518263ffffffff1660e01b8152600401610c709190612e09565b602060405180830381600087803b158015610c8a57600080fd5b505af1158015610c9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc29190612a42565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610d62610ffa565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610da85750610da785610da2610ffa565b610cc6565b5b610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde9061303c565b60405180910390fd5b610df48585858585611990565b5050505050565b610e03610ffa565b73ffffffffffffffffffffffffffffffffffffffff16610e21610a65565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e906130dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90612fdc565b60405180910390fd5b610ef08161175d565b50565b610efb610ffa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f415750610f4083610f3b610ffa565b610cc6565b5b610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f779061303c565b60405180910390fd5b610f8b838383611c12565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d9061315c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad9061305c565b60405180910390fd5b60006110c0610ffa565b90506110d0818787878787611e2f565b60005b84518110156112815760008582815181106110f1576110f0613535565b5b6020026020010151905060008583815181106111105761110f613535565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a8906130bc565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611266919061331f565b925050819055505050508061127a9061348e565b90506110d3565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112f8929190612f08565b60405180910390a461130e818787878787611e37565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d9061317c565b60405180910390fd5b6000611390610ffa565b90506113b1816000876113a28861201e565b6113ab8861201e565b87611e2f565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611410919061331f565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161148e9291906131d7565b60405180910390a46114a581600087878787612098565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561151c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115139061309c565b60405180910390fd5b8051825114611560576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115579061315c565b60405180910390fd5b600061156a610ffa565b905061158a81856000868660405180602001604052806000815250611e2f565b60005b83518110156116d75760008482815181106115ab576115aa613535565b5b6020026020010151905060008483815181106115ca576115c9613535565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561166b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116629061301c565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806116cf9061348e565b91505061158d565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161174f929190612f08565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118899061311c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119839190612f3f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f79061305c565b60405180910390fd5b6000611a0a610ffa565b9050611a2a818787611a1b8861201e565b611a248861201e565b87611e2f565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab8906130bc565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b76919061331f565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611bf39291906131d7565b60405180910390a4611c09828888888888612098565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c799061309c565b60405180910390fd5b6000611c8c610ffa565b9050611cbc81856000611c9e8761201e565b611ca78761201e565b60405180602001604052806000815250611e2f565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4a9061301c565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611e209291906131d7565b60405180910390a45050505050565b505050505050565b611e568473ffffffffffffffffffffffffffffffffffffffff1661227f565b15612016578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611e9c959493929190612e24565b602060405180830381600087803b158015611eb657600080fd5b505af1925050508015611ee757506040513d601f19601f82011682018060405250810190611ee4919061299b565b60015b611f8d57611ef3613593565b806308c379a01415611f505750611f08613b0d565b80611f135750611f52565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f479190612f5a565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8490612f7c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90612f9c565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561203d5761203c613564565b5b60405190808252806020026020018201604052801561206b5781602001602082028036833780820191505090505b509050828160008151811061208357612082613535565b5b60200260200101818152505080915050919050565b6120b78473ffffffffffffffffffffffffffffffffffffffff1661227f565b15612277578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016120fd959493929190612e8c565b602060405180830381600087803b15801561211757600080fd5b505af192505050801561214857506040513d601f19601f82011682018060405250810190612145919061299b565b60015b6121ee57612154613593565b806308c379a014156121b15750612169613b0d565b8061217457506121b3565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a89190612f5a565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e590612f7c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226c90612f9c565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546122ae9061342b565b90600052602060002090601f0160209004810192826122d05760008555612317565b82601f106122e957803560ff1916838001178555612317565b82800160010185558215612317579182015b828111156123165782358255916020019190600101906122fb565b5b5090506123249190612328565b5090565b5b80821115612341576000816000905550600101612329565b5090565b600061235861235384613225565b613200565b9050808382526020820190508285602086028201111561237b5761237a6135bf565b5b60005b858110156123ab57816123918882612467565b84526020840193506020830192505060018101905061237e565b5050509392505050565b60006123c86123c384613251565b613200565b905080838252602082019050828560208602820111156123eb576123ea6135bf565b5b60005b8581101561241b5781612401888261259b565b8452602084019350602083019250506001810190506123ee565b5050509392505050565b60006124386124338461327d565b613200565b905082815260208101848484011115612454576124536135c4565b5b61245f8482856133e9565b509392505050565b60008135905061247681613ba3565b92915050565b600082601f830112612491576124906135ba565b5b81356124a1848260208601612345565b91505092915050565b600082601f8301126124bf576124be6135ba565b5b81356124cf8482602086016123b5565b91505092915050565b6000813590506124e781613bba565b92915050565b6000813590506124fc81613bd1565b92915050565b60008151905061251181613bd1565b92915050565b600082601f83011261252c5761252b6135ba565b5b813561253c848260208601612425565b91505092915050565b60008083601f84011261255b5761255a6135ba565b5b8235905067ffffffffffffffff811115612578576125776135b5565b5b602083019150836001820283011115612594576125936135bf565b5b9250929050565b6000813590506125aa81613be8565b92915050565b6000815190506125bf81613be8565b92915050565b6000602082840312156125db576125da6135ce565b5b60006125e984828501612467565b91505092915050565b60008060408385031215612609576126086135ce565b5b600061261785828601612467565b925050602061262885828601612467565b9150509250929050565b600080600080600060a0868803121561264e5761264d6135ce565b5b600061265c88828901612467565b955050602061266d88828901612467565b945050604086013567ffffffffffffffff81111561268e5761268d6135c9565b5b61269a888289016124aa565b935050606086013567ffffffffffffffff8111156126bb576126ba6135c9565b5b6126c7888289016124aa565b925050608086013567ffffffffffffffff8111156126e8576126e76135c9565b5b6126f488828901612517565b9150509295509295909350565b600080600080600060a0868803121561271d5761271c6135ce565b5b600061272b88828901612467565b955050602061273c88828901612467565b945050604061274d8882890161259b565b935050606061275e8882890161259b565b925050608086013567ffffffffffffffff81111561277f5761277e6135c9565b5b61278b88828901612517565b9150509295509295909350565b6000806000606084860312156127b1576127b06135ce565b5b60006127bf86828701612467565b935050602084013567ffffffffffffffff8111156127e0576127df6135c9565b5b6127ec868287016124aa565b925050604084013567ffffffffffffffff81111561280d5761280c6135c9565b5b612819868287016124aa565b9150509250925092565b6000806040838503121561283a576128396135ce565b5b600061284885828601612467565b9250506020612859858286016124d8565b9150509250929050565b6000806040838503121561287a576128796135ce565b5b600061288885828601612467565b92505060206128998582860161259b565b9150509250929050565b6000806000606084860312156128bc576128bb6135ce565b5b60006128ca86828701612467565b93505060206128db8682870161259b565b92505060406128ec8682870161259b565b9150509250925092565b6000806040838503121561290d5761290c6135ce565b5b600083013567ffffffffffffffff81111561292b5761292a6135c9565b5b6129378582860161247c565b925050602083013567ffffffffffffffff811115612958576129576135c9565b5b612964858286016124aa565b9150509250929050565b600060208284031215612984576129836135ce565b5b6000612992848285016124ed565b91505092915050565b6000602082840312156129b1576129b06135ce565b5b60006129bf84828501612502565b91505092915050565b600080602083850312156129df576129de6135ce565b5b600083013567ffffffffffffffff8111156129fd576129fc6135c9565b5b612a0985828601612545565b92509250509250929050565b600060208284031215612a2b57612a2a6135ce565b5b6000612a398482850161259b565b91505092915050565b600060208284031215612a5857612a576135ce565b5b6000612a66848285016125b0565b91505092915050565b6000612a7b8383612deb565b60208301905092915050565b612a9081613375565b82525050565b6000612aa1826132be565b612aab81856132ec565b9350612ab6836132ae565b8060005b83811015612ae7578151612ace8882612a6f565b9750612ad9836132df565b925050600181019050612aba565b5085935050505092915050565b612afd81613387565b82525050565b6000612b0e826132c9565b612b1881856132fd565b9350612b288185602086016133f8565b612b31816135d3565b840191505092915050565b6000612b47826132d4565b612b51818561330e565b9350612b618185602086016133f8565b612b6a816135d3565b840191505092915050565b6000612b8260348361330e565b9150612b8d826135f1565b604082019050919050565b6000612ba560288361330e565b9150612bb082613640565b604082019050919050565b6000612bc8602b8361330e565b9150612bd38261368f565b604082019050919050565b6000612beb60268361330e565b9150612bf6826136de565b604082019050919050565b6000612c0e60158361330e565b9150612c198261372d565b602082019050919050565b6000612c3160248361330e565b9150612c3c82613756565b604082019050919050565b6000612c5460298361330e565b9150612c5f826137a5565b604082019050919050565b6000612c7760258361330e565b9150612c82826137f4565b604082019050919050565b6000612c9a60328361330e565b9150612ca582613843565b604082019050919050565b6000612cbd60238361330e565b9150612cc882613892565b604082019050919050565b6000612ce0602a8361330e565b9150612ceb826138e1565b604082019050919050565b6000612d0360208361330e565b9150612d0e82613930565b602082019050919050565b6000612d2660268361330e565b9150612d3182613959565b604082019050919050565b6000612d4960298361330e565b9150612d54826139a8565b604082019050919050565b6000612d6c60298361330e565b9150612d77826139f7565b604082019050919050565b6000612d8f60288361330e565b9150612d9a82613a46565b604082019050919050565b6000612db260218361330e565b9150612dbd82613a95565b604082019050919050565b6000612dd5600e8361330e565b9150612de082613ae4565b602082019050919050565b612df4816133df565b82525050565b612e03816133df565b82525050565b6000602082019050612e1e6000830184612a87565b92915050565b600060a082019050612e396000830188612a87565b612e466020830187612a87565b8181036040830152612e588186612a96565b90508181036060830152612e6c8185612a96565b90508181036080830152612e808184612b03565b90509695505050505050565b600060a082019050612ea16000830188612a87565b612eae6020830187612a87565b612ebb6040830186612dfa565b612ec86060830185612dfa565b8181036080830152612eda8184612b03565b90509695505050505050565b60006020820190508181036000830152612f008184612a96565b905092915050565b60006040820190508181036000830152612f228185612a96565b90508181036020830152612f368184612a96565b90509392505050565b6000602082019050612f546000830184612af4565b92915050565b60006020820190508181036000830152612f748184612b3c565b905092915050565b60006020820190508181036000830152612f9581612b75565b9050919050565b60006020820190508181036000830152612fb581612b98565b9050919050565b60006020820190508181036000830152612fd581612bbb565b9050919050565b60006020820190508181036000830152612ff581612bde565b9050919050565b6000602082019050818103600083015261301581612c01565b9050919050565b6000602082019050818103600083015261303581612c24565b9050919050565b6000602082019050818103600083015261305581612c47565b9050919050565b6000602082019050818103600083015261307581612c6a565b9050919050565b6000602082019050818103600083015261309581612c8d565b9050919050565b600060208201905081810360008301526130b581612cb0565b9050919050565b600060208201905081810360008301526130d581612cd3565b9050919050565b600060208201905081810360008301526130f581612cf6565b9050919050565b6000602082019050818103600083015261311581612d19565b9050919050565b6000602082019050818103600083015261313581612d3c565b9050919050565b6000602082019050818103600083015261315581612d5f565b9050919050565b6000602082019050818103600083015261317581612d82565b9050919050565b6000602082019050818103600083015261319581612da5565b9050919050565b600060208201905081810360008301526131b581612dc8565b9050919050565b60006020820190506131d16000830184612dfa565b92915050565b60006040820190506131ec6000830185612dfa565b6131f96020830184612dfa565b9392505050565b600061320a61321b565b9050613216828261345d565b919050565b6000604051905090565b600067ffffffffffffffff8211156132405761323f613564565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561326c5761326b613564565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561329857613297613564565b5b6132a1826135d3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061332a826133df565b9150613335836133df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561336a576133696134d7565b5b828201905092915050565b6000613380826133bf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134165780820151818401526020810190506133fb565b83811115613425576000848401525b50505050565b6000600282049050600182168061344357607f821691505b6020821081141561345757613456613506565b5b50919050565b613466826135d3565b810181811067ffffffffffffffff8211171561348557613484613564565b5b80604052505050565b6000613499826133df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134cc576134cb6134d7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156135b25760046000803e6135af6000516135e4565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f446f65736e2774206f776e2074686520746f6b656e0000000000000000000000600082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6967726174696f6e206973206e6f7420706f737369626c652061742074686960008201527f732074696d650000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b600060443d1015613b1d57613ba0565b613b2561321b565b60043d036004823e80513d602482011167ffffffffffffffff82111715613b4d575050613ba0565b808201805167ffffffffffffffff811115613b6b5750505050613ba0565b80602083010160043d038501811115613b88575050505050613ba0565b613b978260200185018661345d565b82955050505050505b90565b613bac81613375565b8114613bb757600080fd5b50565b613bc381613387565b8114613bce57600080fd5b50565b613bda81613393565b8114613be557600080fd5b50565b613bf1816133df565b8114613bfc57600080fd5b5056fea26469706673582212209708a7291712b2a860720ffde3309bf9d94329fd60ca5bc7eed88503095238b564736f6c63430008070033

Loading...
Loading
Loading...
Loading
[ 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.