ETH Price: $3,440.15 (-0.07%)
Gas: 2 Gwei

Token

Puzzle (Number Place) (PNP)
 

Overview

Max Total Supply

507 PNP

Holders

70

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 PNP
0x17c07571a31fe644b01E05bcB200366bCDd00E65
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-29
*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.8.7 <0.9.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;
    }
}

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
            }
        }
    }
}


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

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

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

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

//--------------------------
// Base64 ライブラリ
//--------------------------
library Base64Lib {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// 渡されたバイト配列をBase64エンコードする
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // エンコードサイズ
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // 出力配列の確保
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}
//--------------------------
// 文字列ライブラリ
//--------------------------
library StrLib {
    //---------------------------
    // 数値を10進数文字列にして返す
    //---------------------------
    function numToStr( uint256 val ) internal pure returns (string memory) {
        // 数字の桁
        uint256 len = 1;
        uint256 temp = val;
        while( temp >= 10 ){
            temp = temp / 10;
            len++;
        }

        // バッファ確保
        bytes memory buf = new bytes(len);

        // 数字の出力
        temp = val;
        for( uint256 i=0; i<len; i++ ){
            uint c = 48 + (temp%10);    // ascii: '0' 〜 '9'
            buf[len-(i+1)] = bytes1(uint8(c));
            temp /= 10;
        }

        return( string(buf) );
    }

    //----------------------------
    // 数値を16進数文字列にして返す
    //----------------------------
    function numToStrHex( uint256 val, uint256 zeroFill ) internal pure returns (string memory) {
        // 数字の桁
        uint256 len = 1;
        uint256 temp = val;
        while( temp >= 16 ){
            temp = temp / 16;
            len++;
        }

        // ゼロ埋め桁数
        uint256 padding = 0;
        if( zeroFill > len ){
            padding = zeroFill - len;
        }

        // バッファ確保
        bytes memory buf = new bytes(padding + len);

        // 0埋め
        for( uint256 i=0; i<padding; i++ ){
            buf[i] = bytes1(uint8(48));
        }

        // 数字の出力
        temp = val;
        for( uint256 i=0; i<len; i++ ){
            uint c = temp % 16;    
            if( c < 10 ){
                c += 48;        // ascii: '0' 〜 '9'
            }else{
                c += 87;        // ascii: 'a' 〜 'f'
            }
            buf[padding+len-(i+1)] = bytes1(uint8(c));
            temp /= 16;
        }

        return( string(buf) );
    }
}

//--------------------------
// 乱数ライブラリ
//--------------------------
library RandLib {
    //----------------------------------------------------------------------------------------------------------------------
    // 乱数のシードの生成:[rand32]への初期値となる値を作成する
    //----------------------------------------------------------------------------------------------------------------------
    // [rand32]が繰り返し呼ばれる流れを複数実装する場合、[seed]値を変えることで、同じ[base]値から異なる初期値を取りだせる
    //(※例えば、[rand32]を複数呼ぶ関数をコールする際、同じ初期値を使ってしまうと関数の呼び先で同じ乱数が生成されることになるので注意すること)
    //----------------------------------------------------------------------------------------------------------------------
    function randInitial32WithBase( uint256 base, uint8 seed ) internal pure returns (uint32) {
        // ベース値から[32]ビット抽出する(※[seed]の値により取り出し位置を変える)
        // [seed]の値によってシフトされるビットは最大で[13*7+37=128]となる(※[uint160=address]の最上位32ビットまでを想定)
        return( uint32( base >> (13*(seed%8) + (seed%38)) ) );
    }

    //----------------------------------------------------------
    // 乱数の作成:[BASEFEE]を利用したなんちゃって乱数
    // [BASEFEE]はローカルでは動かないので注意(invalid opcodeが出る)
    //----------------------------------------------------------
    function createRand32( uint256 base0, uint8 seed ) internal view returns(uint32) {
        // base値の算出
        uint256 base1 = uint256( uint160(msg.sender) ); // addressを流用
        uint256 base2 = block.basefee;    // console developだと動かないので注意
        uint256 base = (base0 ^ base1 ^ base2);

        uint32 initial = randInitial32WithBase( base, seed );
        return( updateRand32( initial ) );
    }

    //----------------------------------------------------------
    // 乱数の更新:返値を次回の入力に使うことで乱数の生成を繰り返す想定
    //----------------------------------------------------------
    function updateRand32( uint32 val ) internal pure returns (uint32) {
        val ^= (val >> 13);
        val ^= (val << 17);
        val ^= (val << 15);

        return( val );
    }
}

//-----------------------------------------------------------------
// 処理をアンロックするための鍵:[Unlockable]を利用する側で実装する
//-----------------------------------------------------------------
// [IUnlockKey]の[isUnlocking]が[true]を返す状況でのみ、
// [Unlockable]の[whenUnlocked]で修飾される関数が実行可能
//-----------------------------------------------------------------
interface IUnlockKey {
    //------------------------
    // アンロック中か?
    //------------------------
    function isUnlocking() external view returns (bool);
}

//-----------------------------------------------------------------------
// カートリッジ:インターフェイス
//-----------------------------------------------------------------------
interface ICartridge {
    //----------------------------------------
    // 残弾の取得
    //----------------------------------------
    function getNum() external view returns (uint256);

    //----------------------------------------
    // クリエイターの取り出し
    //----------------------------------------
    function getCreator( uint256 at ) external view returns (string memory);

    //----------------------------------------
    // データの取り出し
    //----------------------------------------
    function getData( uint256 at ) external view returns (uint256);

    //----------------------------------------
    // データの消費(アンロックして呼び出す想定)
    //----------------------------------------
    function waste( uint256 at ) external;
}

//-----------------------------------
// ERC721 トークンクラス
//-----------------------------------
contract Token is Ownable, ERC721, IUnlockKey {
    //-----------------------------------------
    // イベント
    //-----------------------------------------
    event PuzzleMint( uint256 indexed tokenId, uint256 indexed data, address indexed minter, string creator );
    event PuzzleRepairData( uint256 indexed tokenId, uint256 indexed data );
    event PuzzleRepairMinter( uint256 indexed tokenId, address indexed minter );
    event PuzzleRepairCreator( uint256 indexed tokenId, string creator );

    //-----------------------------------------
    // 定数
    //-----------------------------------------
    string constant private TOKEN_NAME = "Puzzle (Number Place)";
    string constant private TOKEN_SYMBOL = "PNP";
    uint256 constant private TOKEN_ID_OFS = 1;

    //-----------------------------------------
    // 文字列
    //-----------------------------------------
    string[] private _strArrNum = [ "", "1", "2", "3", "4", "5", "6", "7", "8", "9" ];
    string[] private _strArrX = [ "16", "53", "90", "128", "165", "202", "240", "277", "314" ];
    string[] private _strArrY = [ "40", "77", "114", "152", "189", "226", "264", "301", "338" ];

    //------------------------------------------------------------
    // カートリッジ設定(NFT販売前に設定しておく値)
    //------------------------------------------------------------
    ICartridge[] private _cartridges;   // カートリッジ
    uint256 private _version;           // カートリッジのバージョン(第一弾、第二弾等やる場合の利用を想定)
    uint256 private _price;             // NFTの値段
    uint256 private _total;             // 装填弾数(リリース時の総数)
    uint256 private _max_shot;          // 一度に購入できるNFT数

    //------------------------------------------------------------
    // 販売管理
    //------------------------------------------------------------
    bool private _onSale;               // 販売中か?(NFTを購入できるか?)

    //------------------------------------------------------------
    // トークン管理
    //------------------------------------------------------------
    // カートリッジのアンロックフラグ(データを取り出す前に立てて、引いたら寝かす)
    bool private _unlock;

    // NFTのデータ:[tokenId-TOKEN_ID_OFS]でアクセスする
    uint256[] private _datas;
    address[] private _minters;
    string[] private _creators;

    //-----------------------------------------
    // コンストラクタ
    //-----------------------------------------
    constructor() Ownable() ERC721( TOKEN_NAME, TOKEN_SYMBOL ) {
    }

    //--------------------------------------
    // [external] 解錠中か?(IUnlockKey実装)
    //--------------------------------------
    function isUnlocking() external view override returns (bool) {
        return( _unlock );
    }
    
    //-----------------------------------------
    // [external] トークンの発行数
    //-----------------------------------------
    function totalSupply() external view returns( uint256 ) {
        return( _datas.length );
    }

    //-----------------------------------------
    // [external/payable] トークンの発行
    //-----------------------------------------
    function mintToken( uint256 num ) external payable {
        // 販売中か?
        require( _onSale, "not on sale" );

        // 試行回数は有効か?
        require( num > 0 && num <= _max_shot, "invalid num" );       

        // 入金額は有効か?
        uint256 amount = _price * num;
        require( msg.value >= amount, "insufficient value" );

        // 残りがあるか?
        uint256 remain = getRemain();
        require( num <= remain, "remaining data not enough" );
        
        //--------------------------
        // ここまできたらチェック完了
        //--------------------------
        // 乱数の初期化
        uint32 rand = RandLib.createRand32( _datas.length, uint8(remain) );     

        // フラグを立てる
        _unlock = true;

        // NFTの抽選
        for( uint256 i=0; i<num; i++ ){
            // 当選番号
            uint256 at = rand % remain;

            // 対象のスロットの特定
            uint256 target = 0;
            for( uint256 j=0; j<_cartridges.length; j++ ){
                uint256 temp = _cartridges[j].getNum();
                if( temp > at ){
                    target = j;
                    break;
                }
                at -= temp;
            }

            // データの取り出し&消費
            uint256 data = _cartridges[target].getData( at );
            string memory creator = _cartridges[target].getCreator( at );
            _cartridges[target].waste( at );

            // tokenIdは連番
            uint256 tokenId = _datas.length + TOKEN_ID_OFS;

            // トークンの付与(Tx発行者へ)
            _mint( msg.sender, tokenId );

            // データの紐付け
            _datas.push( data );
            _minters.push( msg.sender );
            _creators.push( creator );

            // イベント
            emit PuzzleMint( tokenId, data, msg.sender, creator );

            // 値の更新
            remain--;
            rand = RandLib.updateRand32( rand );
        }

        // フラグを寝かす
        _unlock = false;
    }

    //--------------------------------------
    // [public] トークンURIの上書き
    //--------------------------------------
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" );

        string memory strName = string( abi.encodePacked( '"name":"PNP #', StrLib.numToStr(tokenId), '",' ) );
        string memory strDescription = '"description":"Puzzle (Number Place)",';
        string memory strAttributes = string( abi.encodePacked( '"attributes":[{"trait_type":"Creator","value":"', _creators[tokenId-TOKEN_ID_OFS], '"}],' ) );
        string memory strSvg = createSvg( _datas[tokenId-TOKEN_ID_OFS] );

        string memory json = Base64Lib.encode( bytes( string( abi.encodePacked( '{', strName, strDescription, strAttributes, '"image": "data:image/svg+xml;base64,', Base64Lib.encode(bytes(strSvg)), '"}' ) ) ) );
        json = string( abi.encodePacked('data:application/json;base64,', json ) );
        return( json );
    }

    //--------------------------------------
    // [internal] svgの作成
    //--------------------------------------
    function createSvg( uint256 data ) internal view returns( string memory ){
        string memory strRet = "";
        string memory strLine;

        bytes memory nums = decodePuzzle( data );
        uint256 num;

        for( uint256 i=0; i<9; i++ ){
            strLine = "";
            for( uint256 j=0; j<9; j++ ){
                num = uint256( uint8(nums[9*i + j]) );
                if( num != 0 ){
                    strLine = string( abi.encodePacked( strLine, '<text x="', _strArrX[j], '" y="', _strArrY[i], '" class="f">', _strArrNum[num], '</text>' ) );
                }
            }

            strRet = string( abi.encodePacked( strRet, strLine ) );
        }

        strRet = string( abi.encodePacked( '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.f { font-family: serif; font-size:34px; fill:#ffffff;}</style><rect x="0" y="0" width="350" height="350" fill="#000000" /><rect x="5" y="5" width="340" height="340" fill="#ffffff" /><rect x="8" y="8" width="334" height="334" fill="#000000" /><rect x="118" y="6" width="2" height="338" fill="#ffffff" /><rect x="230" y="6" width="2" height="338" fill="#ffffff" /><rect y="118" x="6" height="2" width="338" fill="#ffffff" /><rect y="230" x="6" height="2" width="338" fill="#ffffff" /><rect x="44" y="6" width="1" height="338" fill="#ffffff" /><rect x="81" y="6" width="1" height="338" fill="#ffffff" /><rect y="44" x="6" height="1" width="338" fill="#ffffff" /><rect y="81" x="6" height="1" width="338" fill="#ffffff" /><rect x="155" y="6" width="1" height="338" fill="#ffffff" /><rect x="192" y="6" width="1" height="338" fill="#ffffff" /><rect y="155" x="6" height="1" width="338" fill="#ffffff" /><rect y="192" x="6" height="1" width="338" fill="#ffffff" /><rect x="267" y="6" width="1" height="338" fill="#ffffff" /><rect x="304" y="6" width="1" height="338" fill="#ffffff" /><rect y="267" x="6" height="1" width="338" fill="#ffffff" /><rect y="304" x="6" height="1" width="338" fill="#ffffff" />', strRet, '</svg>' ) );
        return( strRet );
    }

    //-----------------------------------------
    // [internal] データの解凍
    //-----------------------------------------
    function decodePuzzle( uint256 data ) internal pure returns (bytes memory) {
        bytes memory nums = new bytes(81);

        uint256 numCandX;
        bytes memory candX = new bytes(9);

        uint256 numCand;
        bytes memory cand = new bytes(9);

        // 先頭ビットの検出
        for( uint256 i=0; i<256; i++ ){
            if( (data & 0x8000000000000000000000000000000000000000000000000000000000000000 ) != 0 ){
                data <<= 1;
                break;
            }
            data <<= 1;
        }

        uint256 flags = data;
        data <<= 81;

        // 数字の復元
        for( uint256 i=0; i<9; i++ ){

            // 横方向の候補の抽出
            numCandX = 9;
            for( uint256 k=0; k<9; k++ ){
                candX[k] = bytes1(uint8(1+k));
            }

            for( uint256 j=0; j<9; j++ ){

                // フラグ立っていたら出力
                if( (flags & 0x8000000000000000000000000000000000000000000000000000000000000000 ) != 0 ){
                    // 候補の設定
                    numCand = numCandX;
                    for( uint256 k=0; k<numCandX; k++ ){
                        cand[k] = candX[k];
                    }

                    // 縦方向の除外
                    for( uint256 k=0; k<i; k++ ){
                        numCand -= removeVal( cand, numCand, nums[9*k+j] );
                    }

                    // 参照先の読み込み
                    uint256 target = 0;
                    if( numCand > 8){
                        target = (data >> 252) & 0xF;
                        data <<= 4;
                    }else if( numCand > 4 ){
                        target = (data >> 253) & 0x7;
                        data <<= 3;
                    }else if( numCand > 2 ){
                        target = (data >> 254) & 0x3;
                        data <<= 2;
                    }else if( numCand > 1 ){
                        target = (data >> 255) & 0x1;
                        data <<= 1;
                    }
                    nums[9*i+j] = cand[target];

                    // 候補配列から外す
                    numCandX -= removeVal( candX, numCandX, cand[target] );
                }

                flags <<= 1;
            }
        }

        return( nums );
    }

    //--------------------------------------
    // [internal] 配列内に対象の値があれば削除
    //--------------------------------------
    function removeVal( bytes memory vals, uint256 size, bytes1 val ) internal pure returns (uint256) {
        for( uint256 i=0; i<size; i++ ){
            if( vals[i] == val ){
                for( uint256 j=i+1; j<size; j++ ){
                    vals[j-1] = vals[j];
                }
                return( 1 );
            }
        }

        return( 0 );
    }

    //--------------------------------------------------------
    // [public] データ残数の確認
    //--------------------------------------------------------
    function getRemain() public view returns (uint256) {
        uint256 remain = 0;

        for( uint256 i=0; i<_cartridges.length; i++ ){
            remain += _cartridges[i].getNum();
        }

        return( remain );
    }

    //--------------------------------------------------------
    // [external] 確認
    //--------------------------------------------------------
    // カートリッジ
    function cartridges( uint256 at ) external view returns (address) {
        require( at < _cartridges.length, "out of range" );

        return( address(_cartridges[at]) );
    }

    // バージョン確認
    function version() external view returns (uint256) {
        return( _version );
    }

    // 価格確認
    function price() external view returns (uint256) {
        return( _price );
    }

    // 総数確認
    function total() external view returns (uint256) {
        return( _total );
    }

    // 最大回数確認
    function max_shot() external view returns (uint256) {
        return( _max_shot );
    }

    //--------------------------------------------------------
    // [extrnal/onlyOwner] カートリッジ設定
    //--------------------------------------------------------
    function setCartridges( address[] calldata __cartridges, uint256 __version, uint256 __price, uint256 __total, uint256 __max_shot ) external onlyOwner {
        // 用心
        uint256 temp = 0;
        for( uint256 i=0; i<__cartridges.length; i++ ){
            ICartridge cartridge = ICartridge( __cartridges[i] );
            temp += cartridge.getNum();
        }
        require( temp == __total, "mismatch total" );

        // 設定
        delete _cartridges;
        for( uint256 i=0; i<__cartridges.length; i++ ){
            _cartridges.push( ICartridge( __cartridges[i] ) );
        }
        _version = __version;
        _price = __price;
        _total = __total;
        _max_shot = __max_shot;
    }

    //--------------------------------------------------------
    // [external] 販売中か?
    //--------------------------------------------------------
    function onSale() external view returns (bool) {
        return( _onSale );
    }

    //--------------------------------------------------------
    // [extrnal/onlyOwner] 販売設定
    //--------------------------------------------------------
    function setOnSale( bool flag ) external onlyOwner {
        _onSale = flag;
    }

    //--------------------------------------------------------
    // [external] データの確認
    //--------------------------------------------------------
    function getData( uint256 tokenId ) external view returns (uint256) {
         require( _exists( tokenId ), "token not exist" );

         return( _datas[tokenId-TOKEN_ID_OFS] );
    }

    //--------------------------------------------------------
    // [external/onlyOwner] データの修復
    //--------------------------------------------------------
    function repairData( uint256 tokenId, uint256 data ) external onlyOwner {
         require( _exists( tokenId ), "token not exist" );

        _datas[tokenId-TOKEN_ID_OFS] = data;
        emit PuzzleRepairData( tokenId, data );
    }

    //--------------------------------------------------------
    // [external] 発行者の確認
    //--------------------------------------------------------
    function getMinter( uint256 tokenId ) external view returns (address) {
         require( _exists( tokenId ), "token not exist" );

         return( _minters[tokenId-TOKEN_ID_OFS] );
    }

    //--------------------------------------------------------
    // [external/onlyOwner] 発行者の修復
    //--------------------------------------------------------
    function repairMinter( uint256 tokenId, address minter ) external onlyOwner {
         require( _exists( tokenId ), "token not exist" );

        _minters[tokenId-TOKEN_ID_OFS] = minter;
        emit PuzzleRepairMinter( tokenId, minter );
    }

    //--------------------------------------------------------
    // [external] クリエイターの確認
    //--------------------------------------------------------
    function getCreator( uint256 tokenId ) external view returns (string memory) {
         require( _exists( tokenId ), "token not exist" );

         return( _creators[tokenId-TOKEN_ID_OFS] );
    }

    //--------------------------------------------------------
    // [external/onlyOwner] クリエイターの修復
    //--------------------------------------------------------
    function repairCreator( uint256 tokenId, string calldata creator ) external onlyOwner {
         require( _exists( tokenId ), "token not exist" );

        _creators[tokenId-TOKEN_ID_OFS] = creator;
        emit PuzzleRepairCreator( tokenId, creator );
    }

    //--------------------------------------------------------
    // [external] 残高の確認
    //--------------------------------------------------------
    function checkBalance() external view returns (uint256) {
        return( address(this).balance );
    }

    //--------------------------------------------------------
    // [external/onlyOwner] 引き出し
    //--------------------------------------------------------
    function withdraw( uint256 amount ) external onlyOwner {
        require( amount <= address(this).balance, "insufficient balance" );

        address payable target = payable( msg.sender );
        target.transfer( amount );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"data","type":"uint256"},{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"string","name":"creator","type":"string"}],"name":"PuzzleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"creator","type":"string"}],"name":"PuzzleRepairCreator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"data","type":"uint256"}],"name":"PuzzleRepairData","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"minter","type":"address"}],"name":"PuzzleRepairMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"at","type":"uint256"}],"name":"cartridges","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCreator","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getData","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRemain","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isUnlocking","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_shot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"creator","type":"string"}],"name":"repairCreator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"data","type":"uint256"}],"name":"repairData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"minter","type":"address"}],"name":"repairMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"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":"address[]","name":"__cartridges","type":"address[]"},{"internalType":"uint256","name":"__version","type":"uint256"},{"internalType":"uint256","name":"__price","type":"uint256"},{"internalType":"uint256","name":"__total","type":"uint256"},{"internalType":"uint256","name":"__max_shot","type":"uint256"}],"name":"setCartridges","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"setOnSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"total","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60006101c0908152608090815260016101e0818152603160f81b6102005260a052610220818152601960f91b6102405260c052610260818152603360f81b6102805260e0526102a0818152600d60fa1b6102c052610100526102e0818152603560f81b6103005261012052610320818152601b60f91b6103405261014052610360818152603760f81b61038052610160526103a0818152600760fb1b6103c052610180526104206040526103e0908152603960f81b610400526101a052620000cc90600790600a620003f4565b5060408051610160810182526002610120820181815261189b60f11b61014084015282528251808401845281815261353360f01b602082810191909152808401919091528351808501855291825261039360f41b82820152828401919091528251808401845260038082526206264760eb1b828401526060840191909152835180850185528181526231363560e81b818401526080840152835180850185528181526219181960e91b8184015260a0840152835180850185528181526203234360ec1b8184015260c0840152835180850185528181526232373760e81b8184015260e084015283518085019094528352620ccc4d60ea1b90830152610100810191909152620001e090600890600962000458565b5060408051610160810182526002610120820181815261034360f41b61014084015282528251808401845290815261373760f01b60208281019190915280830191909152825180840184526003808252620c4c4d60ea1b82840152838501919091528351808501855281815262189a9960e91b818401526060840152835180850185528181526231383960e81b818401526080840152835180850185528181526219191b60e91b8184015260a084015283518085018552818152620c8d8d60ea1b8184015260c0840152835180850185528181526233303160e81b8184015260e0840152835180850190945283526206666760eb1b90830152610100810191909152620002f1906009908162000458565b50348015620002ff57600080fd5b506040518060400160405280601581526020017f50757a7a6c6520284e756d62657220506c616365290000000000000000000000815250604051806040016040528060038152602001620504e560ec1b8152506200036c62000366620003a060201b60201c565b620003a4565b815162000381906001906020850190620004aa565b50805162000397906002906020840190620004aa565b505050620005ec565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805482825590600052602060002090810192821562000446579160200282015b8281111562000446578251805162000435918491602090910190620004aa565b509160200191906001019062000415565b506200045492915062000535565b5090565b82805482825590600052602060002090810192821562000446579160200282015b8281111562000446578251805162000499918491602090910190620004aa565b509160200191906001019062000479565b828054620004b890620005af565b90600052602060002090601f016020900481019282620004dc576000855562000527565b82601f10620004f757805160ff191683800117855562000527565b8280016001018555821562000527579182015b82811115620005275782518255916020019190600101906200050a565b506200045492915062000556565b80821115620004545760006200054c82826200056d565b5060010162000535565b5b8082111562000454576000815560010162000557565b5080546200057b90620005af565b6000825580601f106200058c575050565b601f016020900490600052602060002090810190620005ac919062000556565b50565b600181811c90821680620005c457607f821691505b60208210811415620005e657634e487b7160e01b600052602260045260246000fd5b50919050565b613c1080620005fc6000396000f3fe60806040526004361061020f5760003560e01c806365ad170111610118578063b88d4fde116100a0578063d48e638a1161006f578063d48e638a146105b4578063dc330004146105d4578063e985e9c5146105f4578063f2fde38b1461063d578063fa5077c41461065d57600080fd5b8063b88d4fde1461054e578063c634d0321461056e578063c71daccb14610581578063c87b56dd1461059457600080fd5b80638da5cb5b116100e75780638da5cb5b146104c957806395d89b41146104e757806398b3ee6c146104fc578063a035b1fe14610519578063a22cb4651461052e57600080fd5b806365ad17011461045f57806370a082311461047f578063715018a61461049f5780637fc0f98b146104b457600080fd5b80632ddbd13a1161019b57806342842e0e1161016a57806342842e0e146103ca57806354fd4d50146103ea5780635b7121f8146103ff5780635b8c0ab91461041f5780636352211e1461043f57600080fd5b80632ddbd13a146103685780632e1a7d4d1461037d57806330dc55ec1461039d578063326687b9146103b257600080fd5b806306fdde03116101e257806306fdde03146102b9578063081812fc146102db578063095ea7b31461031357806318160ddd1461033357806323b872dd1461034857600080fd5b80630178fe3f14610214578063019e24331461024757806301ffc9a714610269578063068b0f1f14610299575b600080fd5b34801561022057600080fd5b5061023461022f366004612d58565b61067d565b6040519081526020015b60405180910390f35b34801561025357600080fd5b50610267610262366004612d8a565b6106dc565b005b34801561027557600080fd5b50610289610284366004612ca7565b61079d565b604051901515815260200161023e565b3480156102a557600080fd5b506102676102b4366004612c8c565b6107ef565b3480156102c557600080fd5b506102ce61082c565b60405161023e9190613820565b3480156102e757600080fd5b506102fb6102f6366004612d58565b6108be565b6040516001600160a01b03909116815260200161023e565b34801561031f57600080fd5b5061026761032e366004612bcf565b610946565b34801561033f57600080fd5b50601054610234565b34801561035457600080fd5b50610267610363366004612abe565b610a5c565b34801561037457600080fd5b50600d54610234565b34801561038957600080fd5b50610267610398366004612d58565b610a8d565b3480156103a957600080fd5b50600e54610234565b3480156103be57600080fd5b50600f5460ff16610289565b3480156103d657600080fd5b506102676103e5366004612abe565b610b2d565b3480156103f657600080fd5b50600b54610234565b34801561040b57600080fd5b506102fb61041a366004612d58565b610b48565b34801561042b57600080fd5b5061026761043a366004612dad565b610ba7565b34801561044b57600080fd5b506102fb61045a366004612d58565b610c6c565b34801561046b57600080fd5b5061026761047a366004612bf9565b610ce3565b34801561048b57600080fd5b5061023461049a366004612a70565b610eb2565b3480156104ab57600080fd5b50610267610f39565b3480156104c057600080fd5b50610234610f6f565b3480156104d557600080fd5b506000546001600160a01b03166102fb565b3480156104f357600080fd5b506102ce611036565b34801561050857600080fd5b50600f54610100900460ff16610289565b34801561052557600080fd5b50600c54610234565b34801561053a57600080fd5b50610267610549366004612ba5565b611045565b34801561055a57600080fd5b50610267610569366004612afa565b61110a565b61026761057c366004612d58565b611142565b34801561058d57600080fd5b5047610234565b3480156105a057600080fd5b506102ce6105af366004612d58565b6116bf565b3480156105c057600080fd5b506102ce6105cf366004612d58565b611858565b3480156105e057600080fd5b506102fb6105ef366004612d58565b611936565b34801561060057600080fd5b5061028961060f366004612a8b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561064957600080fd5b50610267610658366004612a70565b61198c565b34801561066957600080fd5b50610267610678366004612e29565b611a27565b600061068882611ad1565b6106ad5760405162461bcd60e51b81526004016106a4906138ba565b60405180910390fd5b60106106ba600184613a26565b815481106106ca576106ca613b32565b90600052602060002001549050919050565b6000546001600160a01b031633146107065760405162461bcd60e51b81526004016106a490613885565b61070f82611ad1565b61072b5760405162461bcd60e51b81526004016106a4906138ba565b806011610739600185613a26565b8154811061074957610749613b32565b6000918252602082200180546001600160a01b0319166001600160a01b039384161790556040519183169184917f31536c5505dbffd5d3de71665954ae68d501d8bae9f3ce397219da37fb5b4fb291a35050565b60006001600160e01b031982166380ac58cd60e01b14806107ce57506001600160e01b03198216635b5e139f60e01b145b806107e957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146108195760405162461bcd60e51b81526004016106a490613885565b600f805460ff1916911515919091179055565b60606001805461083b90613a80565b80601f016020809104026020016040519081016040528092919081815260200182805461086790613a80565b80156108b45780601f10610889576101008083540402835291602001916108b4565b820191906000526020600020905b81548152906001019060200180831161089757829003601f168201915b5050505050905090565b60006108c982611ad1565b61092a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106a4565b506000908152600560205260409020546001600160a01b031690565b600061095182610c6c565b9050806001600160a01b0316836001600160a01b031614156109bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106a4565b336001600160a01b03821614806109db57506109db813361060f565b610a4d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106a4565b610a578383611aee565b505050565b610a663382611b5c565b610a825760405162461bcd60e51b81526004016106a4906138e3565b610a57838383611c46565b6000546001600160a01b03163314610ab75760405162461bcd60e51b81526004016106a490613885565b47811115610afe5760405162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b60448201526064016106a4565b6040513390819083156108fc029084906000818181858888f19350505050158015610a57573d6000803e3d6000fd5b610a578383836040518060200160405280600081525061110a565b6000610b5382611ad1565b610b6f5760405162461bcd60e51b81526004016106a4906138ba565b6011610b7c600184613a26565b81548110610b8c57610b8c613b32565b6000918252602090912001546001600160a01b031692915050565b6000546001600160a01b03163314610bd15760405162461bcd60e51b81526004016106a490613885565b610bda83611ad1565b610bf65760405162461bcd60e51b81526004016106a4906138ba565b81816012610c05600187613a26565b81548110610c1557610c15613b32565b906000526020600020019190610c2c929190612919565b50827f74579b0eca9bbe60eb124d6923b226587b840bbee3ebdcc5ac7bd686c1b550938383604051610c5f9291906137f1565b60405180910390a2505050565b6000818152600360205260408120546001600160a01b0316806107e95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106a4565b6000546001600160a01b03163314610d0d5760405162461bcd60e51b81526004016106a490613885565b6000805b86811015610dd5576000888883818110610d2d57610d2d613b32565b9050602002016020810190610d429190612a70565b9050806001600160a01b03166367e0badb6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d7d57600080fd5b505afa158015610d91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db59190612d71565b610dbf908461398d565b9250508080610dcd90613ab5565b915050610d11565b50828114610e165760405162461bcd60e51b815260206004820152600e60248201526d1b5a5cdb585d18da081d1bdd185b60921b60448201526064016106a4565b610e22600a600061299d565b60005b86811015610e9a57600a888883818110610e4157610e41613b32565b9050602002016020810190610e569190612a70565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b0390921691909117905580610e9281613ab5565b915050610e25565b5050600b93909355600c91909155600d55600e555050565b60006001600160a01b038216610f1d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106a4565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610f635760405162461bcd60e51b81526004016106a490613885565b610f6d6000611de6565b565b600080805b600a5481101561103057600a8181548110610f9157610f91613b32565b60009182526020918290200154604080516367e0badb60e01b815290516001600160a01b03909216926367e0badb92600480840193829003018186803b158015610fda57600080fd5b505afa158015610fee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110129190612d71565b61101c908361398d565b91508061102881613ab5565b915050610f74565b50919050565b60606002805461083b90613a80565b6001600160a01b03821633141561109e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106a4565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111143383611b5c565b6111305760405162461bcd60e51b81526004016106a4906138e3565b61113c84848484611e36565b50505050565b600f5460ff166111825760405162461bcd60e51b815260206004820152600b60248201526a6e6f74206f6e2073616c6560a81b60448201526064016106a4565b6000811180156111945750600e548111155b6111ce5760405162461bcd60e51b815260206004820152600b60248201526a696e76616c6964206e756d60a81b60448201526064016106a4565b600081600c546111de91906139de565b9050803410156112255760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742076616c756560701b60448201526064016106a4565b600061122f610f6f565b9050808311156112815760405162461bcd60e51b815260206004820152601960248201527f72656d61696e696e672064617461206e6f7420656e6f7567680000000000000060448201526064016106a4565b6010546000906112919083611e69565b600f805461ff001916610100179055905060005b848110156116ad5760006112bf8463ffffffff8516613ad0565b90506000805b600a54811015611398576000600a82815481106112e4576112e4613b32565b60009182526020918290200154604080516367e0badb60e01b815290516001600160a01b03909216926367e0badb92600480840193829003018186803b15801561132d57600080fd5b505afa158015611341573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113659190612d71565b9050838111156113785781925050611398565b6113828185613a26565b935050808061139090613ab5565b9150506112c5565b506000600a82815481106113ae576113ae613b32565b600091825260209091200154604051630178fe3f60e01b8152600481018590526001600160a01b0390911690630178fe3f9060240160206040518083038186803b1580156113fb57600080fd5b505afa15801561140f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114339190612d71565b90506000600a838154811061144a5761144a613b32565b600091825260209091200154604051636a4731c560e11b8152600481018690526001600160a01b039091169063d48e638a9060240160006040518083038186803b15801561149757600080fd5b505afa1580156114ab573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114d39190810190612ce1565b9050600a83815481106114e8576114e8613b32565b6000918252602090912001546040516349afefb160e11b8152600481018690526001600160a01b039091169063935fdf6290602401600060405180830381600087803b15801561153757600080fd5b505af115801561154b573d6000803e3d6000fd5b505060105460009250611561915060019061398d565b905061156d3382611eb3565b6010805460018181019092557f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67201849055601180548083019091557f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180546001600160a01b031916331790556012805491820181556000528251611619917fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444019060208501906129bb565b50336001600160a01b031683827fd331232ed27f7aa9fe1f0e363afc60d41378fd3acd08092b32699cc332fb13f4856040516116559190613820565b60405180910390a48761166781613a69565b985050600d87901c6207ffff168718601181901b6601fffffffe00001618600f81901b657fffffff800016189650505050505080806116a590613ab5565b9150506112a5565b5050600f805461ff0019169055505050565b60606116ca82611ad1565b61172e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106a4565b600061173983611fe6565b6040516020016117499190613772565b60408051601f1981840301815260608301909152602680835290925060009190613b756020830139905060006012611782600187613a26565b8154811061179257611792613b32565b906000526020600020016040516020016117ac919061361e565b60408051601f19818403018152919052905060006117f060106117d0600189613a26565b815481106117e0576117e0613b32565b90600052602060002001546120ef565b9050600061182a85858561180386612269565b604051602001611816949392919061367c565b604051602081830303815290604052612269565b90508060405160200161183d919061372d565b60408051601f19818403018152919052979650505050505050565b606061186382611ad1565b61187f5760405162461bcd60e51b81526004016106a4906138ba565b601261188c600184613a26565b8154811061189c5761189c613b32565b9060005260206000200180546118b190613a80565b80601f01602080910402602001604051908101604052809291908181526020018280546118dd90613a80565b801561192a5780601f106118ff5761010080835404028352916020019161192a565b820191906000526020600020905b81548152906001019060200180831161190d57829003601f168201915b50505050509050919050565b600a5460009082106119795760405162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b60448201526064016106a4565b600a8281548110610b8c57610b8c613b32565b6000546001600160a01b031633146119b65760405162461bcd60e51b81526004016106a490613885565b6001600160a01b038116611a1b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a4565b611a2481611de6565b50565b6000546001600160a01b03163314611a515760405162461bcd60e51b81526004016106a490613885565b611a5a82611ad1565b611a765760405162461bcd60e51b81526004016106a4906138ba565b806010611a84600185613a26565b81548110611a9457611a94613b32565b6000918252602082200191909155604051829184917f275d3a4d79c3df60390bd5b2d64fa370e65af38e4e61c25ae72c17aab5d5719f9190a35050565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b2382610c6c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b6782611ad1565b611bc85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106a4565b6000611bd383610c6c565b9050806001600160a01b0316846001600160a01b03161480611c0e5750836001600160a01b0316611c03846108be565b6001600160a01b0316145b80611c3e57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c5982610c6c565b6001600160a01b031614611cc15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106a4565b6001600160a01b038216611d235760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106a4565b611d2e600082611aee565b6001600160a01b0383166000908152600460205260408120805460019290611d57908490613a26565b90915550506001600160a01b0382166000908152600460205260408120805460019290611d8590849061398d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611e41848484611c46565b611e4d848484846123cf565b61113c5760405162461bcd60e51b81526004016106a490613833565b60003348848218811883611e7d82876124dc565b9050600d81901c6207ffff168118601181901b6601fffffffe00001618600f81901b657fffffff80001618979650505050505050565b6001600160a01b038216611f095760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106a4565b611f1281611ad1565b15611f5f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106a4565b6001600160a01b0382166000908152600460205260408120805460019290611f8890849061398d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606001825b600a811061201357611fff600a826139ca565b90508161200b81613ab5565b925050611fec565b60008267ffffffffffffffff81111561202e5761202e613b48565b6040519080825280601f01601f191660200182016040528015612058576020820181803683370190505b50905084915060005b838110156120e6576000612076600a85613ad0565b61208190603061398d565b905060f881901b8361209484600161398d565b61209e9088613a26565b815181106120ae576120ae613b32565b60200101906001600160f81b031916908160001a9053506120d0600a856139ca565b93505080806120de90613ab5565b915050612061565b50949350505050565b606060006040518060200160405280600081525090506060600061211285612516565b90506000805b600981101561223d5760405180602001604052806000815250935060005b600981101561220557838161214c8460096139de565b612156919061398d565b8151811061216657612166613b32565b016020015160f81c925082156121f357846008828154811061218a5761218a613b32565b90600052602060002001600984815481106121a7576121a7613b32565b90600052602060002001600786815481106121c4576121c4613b32565b906000526020600020016040516020016121e19493929190612f5c565b60405160208183030381529060405294505b806121fd81613ab5565b915050612136565b508484604051602001612219929190612f2d565b6040516020818303038152906040529450808061223590613ab5565b915050612118565b508360405160200161224f9190612fe4565b60408051601f198184030181529190529695505050505050565b805160609080612289575050604080516020810190915260008152919050565b6000600361229883600261398d565b6122a291906139ca565b6122ad9060046139de565b905060006122bc82602061398d565b67ffffffffffffffff8111156122d4576122d4613b48565b6040519080825280601f01601f1916602001820160405280156122fe576020820181803683370190505b5090506000604051806060016040528060408152602001613b9b604091399050600181016020830160005b8681101561238a576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612329565b5060038606600181146123a457600281146123b5576123c1565b613d3d60f01b6001198301526123c1565b603d60f81b6000198301525b505050918152949350505050565b60006001600160a01b0384163b156124d157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124139033908990889088906004016137b4565b602060405180830381600087803b15801561242d57600080fd5b505af192505050801561245d575060408051601f3d908101601f1916820190925261245a91810190612cc4565b60015b6124b7573d80801561248b576040519150601f19603f3d011682016040523d82523d6000602084013e612490565b606091505b5080516124af5760405162461bcd60e51b81526004016106a490613833565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c3e565b506001949350505050565b60006124e9602683613ae4565b6124f4600884613ae4565b6124ff90600d6139fd565b61250991906139a5565b60ff169290921c92915050565b604080516051808252608082019092526060916000919060208201818036833701905050604080516009808252818301909252919250600091829160208201818036833701905050604080516009808252818301909252919250600091829160208201818036833701905050905060005b6101008110156125c257600160ff1b8816156125a957600188901b97506125c2565b60019790971b96806125ba81613ab5565b915050612587565b50605187901b9660005b6009811015612826576009955060005b600981101561262e576125f081600161398d565b60f81b86828151811061260557612605613b32565b60200101906001600160f81b031916908160001a9053508061262681613ab5565b9150506125dc565b5060005b600981101561281357600160ff1b8316156127fa5786945060005b878110156126ad5786818151811061266757612667613b32565b602001015160f81c60f81b85828151811061268457612684613b32565b60200101906001600160f81b031916908160001a905350806126a581613ab5565b91505061264d565b5060005b82811015612717576126f985878b856126cb8660096139de565b6126d5919061398d565b815181106126e5576126e5613b32565b01602001516001600160f81b031916612833565b6127039087613a26565b95508061270f81613ab5565b9150506126b1565b5060006008861115612732575060048a901b9960fc1c612776565b600486111561274a575060038a901b9960fd1c612776565b6002861115612762575060028a901b9960fe1c612776565b6001861115612776575060018a901b9960ff1c5b84818151811061278857612788613b32565b01602001516001600160f81b03191689836127a48660096139de565b6127ae919061398d565b815181106127be576127be613b32565b60200101906001600160f81b031916908160001a9053506127ec87898784815181106126e5576126e5613b32565b6127f69089613a26565b9750505b60019290921b918061280b81613ab5565b915050612632565b508061281e81613ab5565b9150506125cc565b5094979650505050505050565b6000805b8381101561290c57826001600160f81b03191685828151811061285c5761285c613b32565b01602001516001600160f81b03191614156128fa57600061287e82600161398d565b90505b848110156128ef5785818151811061289b5761289b613b32565b01602001516001600160f81b031916866128b6600184613a26565b815181106128c6576128c6613b32565b60200101906001600160f81b031916908160001a905350806128e781613ab5565b915050612881565b506001915050612912565b8061290481613ab5565b915050612837565b50600090505b9392505050565b82805461292590613a80565b90600052602060002090601f016020900481019282612947576000855561298d565b82601f106129605782800160ff1982351617855561298d565b8280016001018555821561298d579182015b8281111561298d578235825591602001919060010190612972565b50612999929150612a2f565b5090565b5080546000825590600052602060002090810190611a249190612a2f565b8280546129c790613a80565b90600052602060002090601f0160209004810192826129e9576000855561298d565b82601f10612a0257805160ff191683800117855561298d565b8280016001018555821561298d579182015b8281111561298d578251825591602001919060010190612a14565b5b808211156129995760008155600101612a30565b80356001600160a01b0381168114612a5b57600080fd5b919050565b80358015158114612a5b57600080fd5b600060208284031215612a8257600080fd5b61291282612a44565b60008060408385031215612a9e57600080fd5b612aa783612a44565b9150612ab560208401612a44565b90509250929050565b600080600060608486031215612ad357600080fd5b612adc84612a44565b9250612aea60208501612a44565b9150604084013590509250925092565b60008060008060808587031215612b1057600080fd5b612b1985612a44565b9350612b2760208601612a44565b925060408501359150606085013567ffffffffffffffff811115612b4a57600080fd5b8501601f81018713612b5b57600080fd5b8035612b6e612b6982613965565b613934565b818152886020838501011115612b8357600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060408385031215612bb857600080fd5b612bc183612a44565b9150612ab560208401612a60565b60008060408385031215612be257600080fd5b612beb83612a44565b946020939093013593505050565b60008060008060008060a08789031215612c1257600080fd5b863567ffffffffffffffff80821115612c2a57600080fd5b818901915089601f830112612c3e57600080fd5b813581811115612c4d57600080fd5b8a60208260051b8501011115612c6257600080fd5b60209283019b909a5091890135986040810135985060608101359750608001359550909350505050565b600060208284031215612c9e57600080fd5b61291282612a60565b600060208284031215612cb957600080fd5b813561291281613b5e565b600060208284031215612cd657600080fd5b815161291281613b5e565b600060208284031215612cf357600080fd5b815167ffffffffffffffff811115612d0a57600080fd5b8201601f81018413612d1b57600080fd5b8051612d29612b6982613965565b818152856020838501011115612d3e57600080fd5b612d4f826020830160208601613a3d565b95945050505050565b600060208284031215612d6a57600080fd5b5035919050565b600060208284031215612d8357600080fd5b5051919050565b60008060408385031215612d9d57600080fd5b82359150612ab560208401612a44565b600080600060408486031215612dc257600080fd5b83359250602084013567ffffffffffffffff80821115612de157600080fd5b818601915086601f830112612df557600080fd5b813581811115612e0457600080fd5b876020828501011115612e1657600080fd5b6020830194508093505050509250925092565b60008060408385031215612e3c57600080fd5b50508035926020909101359150565b60008151808452612e63816020860160208601613a3d565b601f01601f19169290920160200192915050565b60008151612e89818560208601613a3d565b9290920192915050565b8054600090600181811c9080831680612ead57607f831692505b6020808410821415612ecf57634e487b7160e01b600052602260045260246000fd5b818015612ee35760018114612ef457612f21565b60ff19861689528489019650612f21565b60008881526020902060005b86811015612f195781548b820152908501908301612f00565b505084890196505b50505050505092915050565b60008351612f3f818460208801613a3d565b835190830190612f53818360208801613a3d565b01949350505050565b60008551612f6e818460208a01613a3d565b681e3a32bc3a103c1e9160b91b908301908152612f8e6009820187612e93565b6411103c9e9160d91b81529050612fa86005820186612e93565b6b111031b630b9b99e9133111f60a11b81529050612fc9600c820185612e93565b661e17ba32bc3a1f60c91b8152600701979650505050505050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f73766722207072657365727665417370656374526174696f3d22784d6960208201527f6e594d696e206d656574222076696577426f783d22302030203335302033353060408201527f223e3c7374796c653e2e66207b20666f6e742d66616d696c793a20736572696660608201527f3b20666f6e742d73697a653a333470783b2066696c6c3a236666666666663b7d60808201527f3c2f7374796c653e3c7265637420783d22302220793d2230222077696474683d60a08201527f2233353022206865696768743d22333530222066696c6c3d222330303030303060c08201527f22202f3e3c7265637420783d22352220793d2235222077696474683d2233343060e08201527f22206865696768743d22333430222066696c6c3d222366666666666622202f3e6101008201527f3c7265637420783d22382220793d2238222077696474683d22333334222068656101208201527f696768743d22333334222066696c6c3d222330303030303022202f3e3c7265636101408201527f7420783d223131382220793d2236222077696474683d223222206865696768746101608201527f3d22333338222066696c6c3d222366666666666622202f3e3c7265637420783d61018082018190527f223233302220793d2236222077696474683d223222206865696768743d2233336101a08301527f38222066696c6c3d222366666666666622202f3e3c7265637420793d223131386101c08301527f2220783d223622206865696768743d2232222077696474683d223333382220666101e08301527f696c6c3d222366666666666622202f3e3c7265637420793d223233302220783d6102008301527f223622206865696768743d2232222077696474683d22333338222066696c6c3d6102208301527f222366666666666622202f3e3c7265637420783d2234342220793d22362220776102408301527f696474683d223122206865696768743d22333338222066696c6c3d22236666666102608301527f66666622202f3e3c7265637420783d2238312220793d2236222077696474683d6102808301527f223122206865696768743d22333338222066696c6c3d222366666666666622206102a08301527f2f3e3c7265637420793d2234342220783d223622206865696768743d223122206102c08301527f77696474683d22333338222066696c6c3d222366666666666622202f3e3c72656102e08301527f637420793d2238312220783d223622206865696768743d2231222077696474686103008301526103208201527f223135352220793d2236222077696474683d223122206865696768743d2233336103408201527f38222066696c6c3d222366666666666622202f3e3c7265637420783d223139326103608201527f2220793d2236222077696474683d223122206865696768743d223333382220666103808201527f696c6c3d222366666666666622202f3e3c7265637420793d223135352220783d6103a08201527f223622206865696768743d2231222077696474683d22333338222066696c6c3d6103c08201527f222366666666666622202f3e3c7265637420793d223139322220783d223622206103e08201527f6865696768743d2231222077696474683d22333338222066696c6c3d222366666104008201527f6666666622202f3e3c7265637420783d223236372220793d22362220776964746104208201527f683d223122206865696768743d22333338222066696c6c3d22236666666666666104408201527f22202f3e3c7265637420783d223330342220793d2236222077696474683d22316104608201527f22206865696768743d22333338222066696c6c3d222366666666666622202f3e6104808201527f3c7265637420793d223236372220783d223622206865696768743d22312220776104a08201527f696474683d22333338222066696c6c3d222366666666666622202f3e3c7265636104c08201527f7420793d223330342220783d223622206865696768743d2231222077696474686104e08201527f3d22333338222066696c6c3d222366666666666622202f3e0000000000000000610500820152600061291261360c610518840185612e77565b651e17b9bb339f60d11b815260060190565b7f2261747472696275746573223a5b7b2274726169745f74797065223a2243726581526e30ba37b91116113b30b63ab2911d1160891b60208201526000613668602f830184612e93565b63089f574b60e21b81526004019392505050565b607b60f81b815260008551613698816001850160208a01613a3d565b8551908301906136af816001840160208a01613a3d565b85519101906136c5816001840160208901613a3d565b7f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736001929091019182015263194d8d0b60e21b60218201528351613710816025840160208801613a3d565b61227d60f01b602592909101918201526027019695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161376581601d850160208701613a3d565b91909101601d0192915050565b6c226e616d65223a22504e50202360981b8152815160009061379b81600d850160208701613a3d565b61088b60f21b600d939091019283015250600f01919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906137e790830184612e4b565b9695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6020815260006129126020830184612e4b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600f908201526e1d1bdad95b881b9bdd08195e1a5cdd608a1b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561395d5761395d613b48565b604052919050565b600067ffffffffffffffff82111561397f5761397f613b48565b50601f01601f191660200190565b600082198211156139a0576139a0613b06565b500190565b600060ff821660ff84168060ff038211156139c2576139c2613b06565b019392505050565b6000826139d9576139d9613b1c565b500490565b60008160001904831182151516156139f8576139f8613b06565b500290565b600060ff821660ff84168160ff0481118215151615613a1e57613a1e613b06565b029392505050565b600082821015613a3857613a38613b06565b500390565b60005b83811015613a58578181015183820152602001613a40565b8381111561113c5750506000910152565b600081613a7857613a78613b06565b506000190190565b600181811c90821680613a9457607f821691505b6020821081141561103057634e487b7160e01b600052602260045260246000fd5b6000600019821415613ac957613ac9613b06565b5060010190565b600082613adf57613adf613b1c565b500690565b600060ff831680613af757613af7613b1c565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a2457600080fdfe226465736372697074696f6e223a2250757a7a6c6520284e756d62657220506c61636529222c4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212207731e5b59f376b218fb33e720fe6624498b74eb92b1ff7008b875e2e517de78464736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806365ad170111610118578063b88d4fde116100a0578063d48e638a1161006f578063d48e638a146105b4578063dc330004146105d4578063e985e9c5146105f4578063f2fde38b1461063d578063fa5077c41461065d57600080fd5b8063b88d4fde1461054e578063c634d0321461056e578063c71daccb14610581578063c87b56dd1461059457600080fd5b80638da5cb5b116100e75780638da5cb5b146104c957806395d89b41146104e757806398b3ee6c146104fc578063a035b1fe14610519578063a22cb4651461052e57600080fd5b806365ad17011461045f57806370a082311461047f578063715018a61461049f5780637fc0f98b146104b457600080fd5b80632ddbd13a1161019b57806342842e0e1161016a57806342842e0e146103ca57806354fd4d50146103ea5780635b7121f8146103ff5780635b8c0ab91461041f5780636352211e1461043f57600080fd5b80632ddbd13a146103685780632e1a7d4d1461037d57806330dc55ec1461039d578063326687b9146103b257600080fd5b806306fdde03116101e257806306fdde03146102b9578063081812fc146102db578063095ea7b31461031357806318160ddd1461033357806323b872dd1461034857600080fd5b80630178fe3f14610214578063019e24331461024757806301ffc9a714610269578063068b0f1f14610299575b600080fd5b34801561022057600080fd5b5061023461022f366004612d58565b61067d565b6040519081526020015b60405180910390f35b34801561025357600080fd5b50610267610262366004612d8a565b6106dc565b005b34801561027557600080fd5b50610289610284366004612ca7565b61079d565b604051901515815260200161023e565b3480156102a557600080fd5b506102676102b4366004612c8c565b6107ef565b3480156102c557600080fd5b506102ce61082c565b60405161023e9190613820565b3480156102e757600080fd5b506102fb6102f6366004612d58565b6108be565b6040516001600160a01b03909116815260200161023e565b34801561031f57600080fd5b5061026761032e366004612bcf565b610946565b34801561033f57600080fd5b50601054610234565b34801561035457600080fd5b50610267610363366004612abe565b610a5c565b34801561037457600080fd5b50600d54610234565b34801561038957600080fd5b50610267610398366004612d58565b610a8d565b3480156103a957600080fd5b50600e54610234565b3480156103be57600080fd5b50600f5460ff16610289565b3480156103d657600080fd5b506102676103e5366004612abe565b610b2d565b3480156103f657600080fd5b50600b54610234565b34801561040b57600080fd5b506102fb61041a366004612d58565b610b48565b34801561042b57600080fd5b5061026761043a366004612dad565b610ba7565b34801561044b57600080fd5b506102fb61045a366004612d58565b610c6c565b34801561046b57600080fd5b5061026761047a366004612bf9565b610ce3565b34801561048b57600080fd5b5061023461049a366004612a70565b610eb2565b3480156104ab57600080fd5b50610267610f39565b3480156104c057600080fd5b50610234610f6f565b3480156104d557600080fd5b506000546001600160a01b03166102fb565b3480156104f357600080fd5b506102ce611036565b34801561050857600080fd5b50600f54610100900460ff16610289565b34801561052557600080fd5b50600c54610234565b34801561053a57600080fd5b50610267610549366004612ba5565b611045565b34801561055a57600080fd5b50610267610569366004612afa565b61110a565b61026761057c366004612d58565b611142565b34801561058d57600080fd5b5047610234565b3480156105a057600080fd5b506102ce6105af366004612d58565b6116bf565b3480156105c057600080fd5b506102ce6105cf366004612d58565b611858565b3480156105e057600080fd5b506102fb6105ef366004612d58565b611936565b34801561060057600080fd5b5061028961060f366004612a8b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561064957600080fd5b50610267610658366004612a70565b61198c565b34801561066957600080fd5b50610267610678366004612e29565b611a27565b600061068882611ad1565b6106ad5760405162461bcd60e51b81526004016106a4906138ba565b60405180910390fd5b60106106ba600184613a26565b815481106106ca576106ca613b32565b90600052602060002001549050919050565b6000546001600160a01b031633146107065760405162461bcd60e51b81526004016106a490613885565b61070f82611ad1565b61072b5760405162461bcd60e51b81526004016106a4906138ba565b806011610739600185613a26565b8154811061074957610749613b32565b6000918252602082200180546001600160a01b0319166001600160a01b039384161790556040519183169184917f31536c5505dbffd5d3de71665954ae68d501d8bae9f3ce397219da37fb5b4fb291a35050565b60006001600160e01b031982166380ac58cd60e01b14806107ce57506001600160e01b03198216635b5e139f60e01b145b806107e957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146108195760405162461bcd60e51b81526004016106a490613885565b600f805460ff1916911515919091179055565b60606001805461083b90613a80565b80601f016020809104026020016040519081016040528092919081815260200182805461086790613a80565b80156108b45780601f10610889576101008083540402835291602001916108b4565b820191906000526020600020905b81548152906001019060200180831161089757829003601f168201915b5050505050905090565b60006108c982611ad1565b61092a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106a4565b506000908152600560205260409020546001600160a01b031690565b600061095182610c6c565b9050806001600160a01b0316836001600160a01b031614156109bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106a4565b336001600160a01b03821614806109db57506109db813361060f565b610a4d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106a4565b610a578383611aee565b505050565b610a663382611b5c565b610a825760405162461bcd60e51b81526004016106a4906138e3565b610a57838383611c46565b6000546001600160a01b03163314610ab75760405162461bcd60e51b81526004016106a490613885565b47811115610afe5760405162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b60448201526064016106a4565b6040513390819083156108fc029084906000818181858888f19350505050158015610a57573d6000803e3d6000fd5b610a578383836040518060200160405280600081525061110a565b6000610b5382611ad1565b610b6f5760405162461bcd60e51b81526004016106a4906138ba565b6011610b7c600184613a26565b81548110610b8c57610b8c613b32565b6000918252602090912001546001600160a01b031692915050565b6000546001600160a01b03163314610bd15760405162461bcd60e51b81526004016106a490613885565b610bda83611ad1565b610bf65760405162461bcd60e51b81526004016106a4906138ba565b81816012610c05600187613a26565b81548110610c1557610c15613b32565b906000526020600020019190610c2c929190612919565b50827f74579b0eca9bbe60eb124d6923b226587b840bbee3ebdcc5ac7bd686c1b550938383604051610c5f9291906137f1565b60405180910390a2505050565b6000818152600360205260408120546001600160a01b0316806107e95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106a4565b6000546001600160a01b03163314610d0d5760405162461bcd60e51b81526004016106a490613885565b6000805b86811015610dd5576000888883818110610d2d57610d2d613b32565b9050602002016020810190610d429190612a70565b9050806001600160a01b03166367e0badb6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d7d57600080fd5b505afa158015610d91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db59190612d71565b610dbf908461398d565b9250508080610dcd90613ab5565b915050610d11565b50828114610e165760405162461bcd60e51b815260206004820152600e60248201526d1b5a5cdb585d18da081d1bdd185b60921b60448201526064016106a4565b610e22600a600061299d565b60005b86811015610e9a57600a888883818110610e4157610e41613b32565b9050602002016020810190610e569190612a70565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b0390921691909117905580610e9281613ab5565b915050610e25565b5050600b93909355600c91909155600d55600e555050565b60006001600160a01b038216610f1d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106a4565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610f635760405162461bcd60e51b81526004016106a490613885565b610f6d6000611de6565b565b600080805b600a5481101561103057600a8181548110610f9157610f91613b32565b60009182526020918290200154604080516367e0badb60e01b815290516001600160a01b03909216926367e0badb92600480840193829003018186803b158015610fda57600080fd5b505afa158015610fee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110129190612d71565b61101c908361398d565b91508061102881613ab5565b915050610f74565b50919050565b60606002805461083b90613a80565b6001600160a01b03821633141561109e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106a4565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111143383611b5c565b6111305760405162461bcd60e51b81526004016106a4906138e3565b61113c84848484611e36565b50505050565b600f5460ff166111825760405162461bcd60e51b815260206004820152600b60248201526a6e6f74206f6e2073616c6560a81b60448201526064016106a4565b6000811180156111945750600e548111155b6111ce5760405162461bcd60e51b815260206004820152600b60248201526a696e76616c6964206e756d60a81b60448201526064016106a4565b600081600c546111de91906139de565b9050803410156112255760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742076616c756560701b60448201526064016106a4565b600061122f610f6f565b9050808311156112815760405162461bcd60e51b815260206004820152601960248201527f72656d61696e696e672064617461206e6f7420656e6f7567680000000000000060448201526064016106a4565b6010546000906112919083611e69565b600f805461ff001916610100179055905060005b848110156116ad5760006112bf8463ffffffff8516613ad0565b90506000805b600a54811015611398576000600a82815481106112e4576112e4613b32565b60009182526020918290200154604080516367e0badb60e01b815290516001600160a01b03909216926367e0badb92600480840193829003018186803b15801561132d57600080fd5b505afa158015611341573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113659190612d71565b9050838111156113785781925050611398565b6113828185613a26565b935050808061139090613ab5565b9150506112c5565b506000600a82815481106113ae576113ae613b32565b600091825260209091200154604051630178fe3f60e01b8152600481018590526001600160a01b0390911690630178fe3f9060240160206040518083038186803b1580156113fb57600080fd5b505afa15801561140f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114339190612d71565b90506000600a838154811061144a5761144a613b32565b600091825260209091200154604051636a4731c560e11b8152600481018690526001600160a01b039091169063d48e638a9060240160006040518083038186803b15801561149757600080fd5b505afa1580156114ab573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114d39190810190612ce1565b9050600a83815481106114e8576114e8613b32565b6000918252602090912001546040516349afefb160e11b8152600481018690526001600160a01b039091169063935fdf6290602401600060405180830381600087803b15801561153757600080fd5b505af115801561154b573d6000803e3d6000fd5b505060105460009250611561915060019061398d565b905061156d3382611eb3565b6010805460018181019092557f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67201849055601180548083019091557f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180546001600160a01b031916331790556012805491820181556000528251611619917fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444019060208501906129bb565b50336001600160a01b031683827fd331232ed27f7aa9fe1f0e363afc60d41378fd3acd08092b32699cc332fb13f4856040516116559190613820565b60405180910390a48761166781613a69565b985050600d87901c6207ffff168718601181901b6601fffffffe00001618600f81901b657fffffff800016189650505050505080806116a590613ab5565b9150506112a5565b5050600f805461ff0019169055505050565b60606116ca82611ad1565b61172e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106a4565b600061173983611fe6565b6040516020016117499190613772565b60408051601f1981840301815260608301909152602680835290925060009190613b756020830139905060006012611782600187613a26565b8154811061179257611792613b32565b906000526020600020016040516020016117ac919061361e565b60408051601f19818403018152919052905060006117f060106117d0600189613a26565b815481106117e0576117e0613b32565b90600052602060002001546120ef565b9050600061182a85858561180386612269565b604051602001611816949392919061367c565b604051602081830303815290604052612269565b90508060405160200161183d919061372d565b60408051601f19818403018152919052979650505050505050565b606061186382611ad1565b61187f5760405162461bcd60e51b81526004016106a4906138ba565b601261188c600184613a26565b8154811061189c5761189c613b32565b9060005260206000200180546118b190613a80565b80601f01602080910402602001604051908101604052809291908181526020018280546118dd90613a80565b801561192a5780601f106118ff5761010080835404028352916020019161192a565b820191906000526020600020905b81548152906001019060200180831161190d57829003601f168201915b50505050509050919050565b600a5460009082106119795760405162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b60448201526064016106a4565b600a8281548110610b8c57610b8c613b32565b6000546001600160a01b031633146119b65760405162461bcd60e51b81526004016106a490613885565b6001600160a01b038116611a1b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a4565b611a2481611de6565b50565b6000546001600160a01b03163314611a515760405162461bcd60e51b81526004016106a490613885565b611a5a82611ad1565b611a765760405162461bcd60e51b81526004016106a4906138ba565b806010611a84600185613a26565b81548110611a9457611a94613b32565b6000918252602082200191909155604051829184917f275d3a4d79c3df60390bd5b2d64fa370e65af38e4e61c25ae72c17aab5d5719f9190a35050565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b2382610c6c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b6782611ad1565b611bc85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106a4565b6000611bd383610c6c565b9050806001600160a01b0316846001600160a01b03161480611c0e5750836001600160a01b0316611c03846108be565b6001600160a01b0316145b80611c3e57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c5982610c6c565b6001600160a01b031614611cc15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106a4565b6001600160a01b038216611d235760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106a4565b611d2e600082611aee565b6001600160a01b0383166000908152600460205260408120805460019290611d57908490613a26565b90915550506001600160a01b0382166000908152600460205260408120805460019290611d8590849061398d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611e41848484611c46565b611e4d848484846123cf565b61113c5760405162461bcd60e51b81526004016106a490613833565b60003348848218811883611e7d82876124dc565b9050600d81901c6207ffff168118601181901b6601fffffffe00001618600f81901b657fffffff80001618979650505050505050565b6001600160a01b038216611f095760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106a4565b611f1281611ad1565b15611f5f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106a4565b6001600160a01b0382166000908152600460205260408120805460019290611f8890849061398d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606001825b600a811061201357611fff600a826139ca565b90508161200b81613ab5565b925050611fec565b60008267ffffffffffffffff81111561202e5761202e613b48565b6040519080825280601f01601f191660200182016040528015612058576020820181803683370190505b50905084915060005b838110156120e6576000612076600a85613ad0565b61208190603061398d565b905060f881901b8361209484600161398d565b61209e9088613a26565b815181106120ae576120ae613b32565b60200101906001600160f81b031916908160001a9053506120d0600a856139ca565b93505080806120de90613ab5565b915050612061565b50949350505050565b606060006040518060200160405280600081525090506060600061211285612516565b90506000805b600981101561223d5760405180602001604052806000815250935060005b600981101561220557838161214c8460096139de565b612156919061398d565b8151811061216657612166613b32565b016020015160f81c925082156121f357846008828154811061218a5761218a613b32565b90600052602060002001600984815481106121a7576121a7613b32565b90600052602060002001600786815481106121c4576121c4613b32565b906000526020600020016040516020016121e19493929190612f5c565b60405160208183030381529060405294505b806121fd81613ab5565b915050612136565b508484604051602001612219929190612f2d565b6040516020818303038152906040529450808061223590613ab5565b915050612118565b508360405160200161224f9190612fe4565b60408051601f198184030181529190529695505050505050565b805160609080612289575050604080516020810190915260008152919050565b6000600361229883600261398d565b6122a291906139ca565b6122ad9060046139de565b905060006122bc82602061398d565b67ffffffffffffffff8111156122d4576122d4613b48565b6040519080825280601f01601f1916602001820160405280156122fe576020820181803683370190505b5090506000604051806060016040528060408152602001613b9b604091399050600181016020830160005b8681101561238a576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612329565b5060038606600181146123a457600281146123b5576123c1565b613d3d60f01b6001198301526123c1565b603d60f81b6000198301525b505050918152949350505050565b60006001600160a01b0384163b156124d157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124139033908990889088906004016137b4565b602060405180830381600087803b15801561242d57600080fd5b505af192505050801561245d575060408051601f3d908101601f1916820190925261245a91810190612cc4565b60015b6124b7573d80801561248b576040519150601f19603f3d011682016040523d82523d6000602084013e612490565b606091505b5080516124af5760405162461bcd60e51b81526004016106a490613833565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c3e565b506001949350505050565b60006124e9602683613ae4565b6124f4600884613ae4565b6124ff90600d6139fd565b61250991906139a5565b60ff169290921c92915050565b604080516051808252608082019092526060916000919060208201818036833701905050604080516009808252818301909252919250600091829160208201818036833701905050604080516009808252818301909252919250600091829160208201818036833701905050905060005b6101008110156125c257600160ff1b8816156125a957600188901b97506125c2565b60019790971b96806125ba81613ab5565b915050612587565b50605187901b9660005b6009811015612826576009955060005b600981101561262e576125f081600161398d565b60f81b86828151811061260557612605613b32565b60200101906001600160f81b031916908160001a9053508061262681613ab5565b9150506125dc565b5060005b600981101561281357600160ff1b8316156127fa5786945060005b878110156126ad5786818151811061266757612667613b32565b602001015160f81c60f81b85828151811061268457612684613b32565b60200101906001600160f81b031916908160001a905350806126a581613ab5565b91505061264d565b5060005b82811015612717576126f985878b856126cb8660096139de565b6126d5919061398d565b815181106126e5576126e5613b32565b01602001516001600160f81b031916612833565b6127039087613a26565b95508061270f81613ab5565b9150506126b1565b5060006008861115612732575060048a901b9960fc1c612776565b600486111561274a575060038a901b9960fd1c612776565b6002861115612762575060028a901b9960fe1c612776565b6001861115612776575060018a901b9960ff1c5b84818151811061278857612788613b32565b01602001516001600160f81b03191689836127a48660096139de565b6127ae919061398d565b815181106127be576127be613b32565b60200101906001600160f81b031916908160001a9053506127ec87898784815181106126e5576126e5613b32565b6127f69089613a26565b9750505b60019290921b918061280b81613ab5565b915050612632565b508061281e81613ab5565b9150506125cc565b5094979650505050505050565b6000805b8381101561290c57826001600160f81b03191685828151811061285c5761285c613b32565b01602001516001600160f81b03191614156128fa57600061287e82600161398d565b90505b848110156128ef5785818151811061289b5761289b613b32565b01602001516001600160f81b031916866128b6600184613a26565b815181106128c6576128c6613b32565b60200101906001600160f81b031916908160001a905350806128e781613ab5565b915050612881565b506001915050612912565b8061290481613ab5565b915050612837565b50600090505b9392505050565b82805461292590613a80565b90600052602060002090601f016020900481019282612947576000855561298d565b82601f106129605782800160ff1982351617855561298d565b8280016001018555821561298d579182015b8281111561298d578235825591602001919060010190612972565b50612999929150612a2f565b5090565b5080546000825590600052602060002090810190611a249190612a2f565b8280546129c790613a80565b90600052602060002090601f0160209004810192826129e9576000855561298d565b82601f10612a0257805160ff191683800117855561298d565b8280016001018555821561298d579182015b8281111561298d578251825591602001919060010190612a14565b5b808211156129995760008155600101612a30565b80356001600160a01b0381168114612a5b57600080fd5b919050565b80358015158114612a5b57600080fd5b600060208284031215612a8257600080fd5b61291282612a44565b60008060408385031215612a9e57600080fd5b612aa783612a44565b9150612ab560208401612a44565b90509250929050565b600080600060608486031215612ad357600080fd5b612adc84612a44565b9250612aea60208501612a44565b9150604084013590509250925092565b60008060008060808587031215612b1057600080fd5b612b1985612a44565b9350612b2760208601612a44565b925060408501359150606085013567ffffffffffffffff811115612b4a57600080fd5b8501601f81018713612b5b57600080fd5b8035612b6e612b6982613965565b613934565b818152886020838501011115612b8357600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060408385031215612bb857600080fd5b612bc183612a44565b9150612ab560208401612a60565b60008060408385031215612be257600080fd5b612beb83612a44565b946020939093013593505050565b60008060008060008060a08789031215612c1257600080fd5b863567ffffffffffffffff80821115612c2a57600080fd5b818901915089601f830112612c3e57600080fd5b813581811115612c4d57600080fd5b8a60208260051b8501011115612c6257600080fd5b60209283019b909a5091890135986040810135985060608101359750608001359550909350505050565b600060208284031215612c9e57600080fd5b61291282612a60565b600060208284031215612cb957600080fd5b813561291281613b5e565b600060208284031215612cd657600080fd5b815161291281613b5e565b600060208284031215612cf357600080fd5b815167ffffffffffffffff811115612d0a57600080fd5b8201601f81018413612d1b57600080fd5b8051612d29612b6982613965565b818152856020838501011115612d3e57600080fd5b612d4f826020830160208601613a3d565b95945050505050565b600060208284031215612d6a57600080fd5b5035919050565b600060208284031215612d8357600080fd5b5051919050565b60008060408385031215612d9d57600080fd5b82359150612ab560208401612a44565b600080600060408486031215612dc257600080fd5b83359250602084013567ffffffffffffffff80821115612de157600080fd5b818601915086601f830112612df557600080fd5b813581811115612e0457600080fd5b876020828501011115612e1657600080fd5b6020830194508093505050509250925092565b60008060408385031215612e3c57600080fd5b50508035926020909101359150565b60008151808452612e63816020860160208601613a3d565b601f01601f19169290920160200192915050565b60008151612e89818560208601613a3d565b9290920192915050565b8054600090600181811c9080831680612ead57607f831692505b6020808410821415612ecf57634e487b7160e01b600052602260045260246000fd5b818015612ee35760018114612ef457612f21565b60ff19861689528489019650612f21565b60008881526020902060005b86811015612f195781548b820152908501908301612f00565b505084890196505b50505050505092915050565b60008351612f3f818460208801613a3d565b835190830190612f53818360208801613a3d565b01949350505050565b60008551612f6e818460208a01613a3d565b681e3a32bc3a103c1e9160b91b908301908152612f8e6009820187612e93565b6411103c9e9160d91b81529050612fa86005820186612e93565b6b111031b630b9b99e9133111f60a11b81529050612fc9600c820185612e93565b661e17ba32bc3a1f60c91b8152600701979650505050505050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f73766722207072657365727665417370656374526174696f3d22784d6960208201527f6e594d696e206d656574222076696577426f783d22302030203335302033353060408201527f223e3c7374796c653e2e66207b20666f6e742d66616d696c793a20736572696660608201527f3b20666f6e742d73697a653a333470783b2066696c6c3a236666666666663b7d60808201527f3c2f7374796c653e3c7265637420783d22302220793d2230222077696474683d60a08201527f2233353022206865696768743d22333530222066696c6c3d222330303030303060c08201527f22202f3e3c7265637420783d22352220793d2235222077696474683d2233343060e08201527f22206865696768743d22333430222066696c6c3d222366666666666622202f3e6101008201527f3c7265637420783d22382220793d2238222077696474683d22333334222068656101208201527f696768743d22333334222066696c6c3d222330303030303022202f3e3c7265636101408201527f7420783d223131382220793d2236222077696474683d223222206865696768746101608201527f3d22333338222066696c6c3d222366666666666622202f3e3c7265637420783d61018082018190527f223233302220793d2236222077696474683d223222206865696768743d2233336101a08301527f38222066696c6c3d222366666666666622202f3e3c7265637420793d223131386101c08301527f2220783d223622206865696768743d2232222077696474683d223333382220666101e08301527f696c6c3d222366666666666622202f3e3c7265637420793d223233302220783d6102008301527f223622206865696768743d2232222077696474683d22333338222066696c6c3d6102208301527f222366666666666622202f3e3c7265637420783d2234342220793d22362220776102408301527f696474683d223122206865696768743d22333338222066696c6c3d22236666666102608301527f66666622202f3e3c7265637420783d2238312220793d2236222077696474683d6102808301527f223122206865696768743d22333338222066696c6c3d222366666666666622206102a08301527f2f3e3c7265637420793d2234342220783d223622206865696768743d223122206102c08301527f77696474683d22333338222066696c6c3d222366666666666622202f3e3c72656102e08301527f637420793d2238312220783d223622206865696768743d2231222077696474686103008301526103208201527f223135352220793d2236222077696474683d223122206865696768743d2233336103408201527f38222066696c6c3d222366666666666622202f3e3c7265637420783d223139326103608201527f2220793d2236222077696474683d223122206865696768743d223333382220666103808201527f696c6c3d222366666666666622202f3e3c7265637420793d223135352220783d6103a08201527f223622206865696768743d2231222077696474683d22333338222066696c6c3d6103c08201527f222366666666666622202f3e3c7265637420793d223139322220783d223622206103e08201527f6865696768743d2231222077696474683d22333338222066696c6c3d222366666104008201527f6666666622202f3e3c7265637420783d223236372220793d22362220776964746104208201527f683d223122206865696768743d22333338222066696c6c3d22236666666666666104408201527f22202f3e3c7265637420783d223330342220793d2236222077696474683d22316104608201527f22206865696768743d22333338222066696c6c3d222366666666666622202f3e6104808201527f3c7265637420793d223236372220783d223622206865696768743d22312220776104a08201527f696474683d22333338222066696c6c3d222366666666666622202f3e3c7265636104c08201527f7420793d223330342220783d223622206865696768743d2231222077696474686104e08201527f3d22333338222066696c6c3d222366666666666622202f3e0000000000000000610500820152600061291261360c610518840185612e77565b651e17b9bb339f60d11b815260060190565b7f2261747472696275746573223a5b7b2274726169745f74797065223a2243726581526e30ba37b91116113b30b63ab2911d1160891b60208201526000613668602f830184612e93565b63089f574b60e21b81526004019392505050565b607b60f81b815260008551613698816001850160208a01613a3d565b8551908301906136af816001840160208a01613a3d565b85519101906136c5816001840160208901613a3d565b7f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736001929091019182015263194d8d0b60e21b60218201528351613710816025840160208801613a3d565b61227d60f01b602592909101918201526027019695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161376581601d850160208701613a3d565b91909101601d0192915050565b6c226e616d65223a22504e50202360981b8152815160009061379b81600d850160208701613a3d565b61088b60f21b600d939091019283015250600f01919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906137e790830184612e4b565b9695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6020815260006129126020830184612e4b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600f908201526e1d1bdad95b881b9bdd08195e1a5cdd608a1b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561395d5761395d613b48565b604052919050565b600067ffffffffffffffff82111561397f5761397f613b48565b50601f01601f191660200190565b600082198211156139a0576139a0613b06565b500190565b600060ff821660ff84168060ff038211156139c2576139c2613b06565b019392505050565b6000826139d9576139d9613b1c565b500490565b60008160001904831182151516156139f8576139f8613b06565b500290565b600060ff821660ff84168160ff0481118215151615613a1e57613a1e613b06565b029392505050565b600082821015613a3857613a38613b06565b500390565b60005b83811015613a58578181015183820152602001613a40565b8381111561113c5750506000910152565b600081613a7857613a78613b06565b506000190190565b600181811c90821680613a9457607f821691505b6020821081141561103057634e487b7160e01b600052602260045260246000fd5b6000600019821415613ac957613ac9613b06565b5060010190565b600082613adf57613adf613b1c565b500690565b600060ff831680613af757613af7613b1c565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a2457600080fdfe226465736372697074696f6e223a2250757a7a6c6520284e756d62657220506c61636529222c4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212207731e5b59f376b218fb33e720fe6624498b74eb92b1ff7008b875e2e517de78464736f6c63430008070033

Deployed Bytecode Sourcemap

42440:17852:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57352:188;;;;;;;;;;-1:-1:-1;57352:188:0;;;;;:::i;:::-;;:::i;:::-;;;27901:25:1;;;27889:2;27874:18;57352:188:0;;;;;;;;58511:249;;;;;;;;;;-1:-1:-1;58511:249:0;;;;;:::i;:::-;;:::i;:::-;;22039:305;;;;;;;;;;-1:-1:-1;22039:305:0;;;;;:::i;:::-;;:::i;:::-;;;17969:14:1;;17962:22;17944:41;;17932:2;17917:18;22039:305:0;17804:187:1;57094:84:0;;;;;;;;;;-1:-1:-1;57094:84:0;;;;;:::i;:::-;;:::i;22984:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24543:221::-;;;;;;;;;;-1:-1:-1;24543:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;17267:32:1;;;17249:51;;17237:2;17222:18;24543:221:0;17103:203:1;24066:411:0;;;;;;;;;;-1:-1:-1;24066:411:0;;;;;:::i;:::-;;:::i;45618:98::-;;;;;;;;;;-1:-1:-1;45693:6:0;:13;45618:98;;25433:339;;;;;;;;;;-1:-1:-1;25433:339:0;;;;;:::i;:::-;;:::i;55530:84::-;;;;;;;;;;-1:-1:-1;55598:6:0;;55530:84;;60054:235;;;;;;;;;;-1:-1:-1;60054:235:0;;;;;:::i;:::-;;:::i;55649:90::-;;;;;;;;;;-1:-1:-1;55720:9:0;;55649:90;;56834:83;;;;;;;;;;-1:-1:-1;56900:7:0;;;;56834:83;;25843:185;;;;;;;;;;-1:-1:-1;25843:185:0;;;;;:::i;:::-;;:::i;55300:88::-;;;;;;;;;;-1:-1:-1;55370:8:0;;55300:88;;58135:192;;;;;;;;;;-1:-1:-1;58135:192:0;;;;;:::i;:::-;;:::i;59336:263::-;;;;;;;;;;-1:-1:-1;59336:263:0;;;;;:::i;:::-;;:::i;22678:239::-;;;;;;;;;;-1:-1:-1;22678:239:0;;;;;:::i;:::-;;:::i;55928:735::-;;;;;;;;;;-1:-1:-1;55928:735:0;;;;;:::i;:::-;;:::i;22408:208::-;;;;;;;;;;-1:-1:-1;22408:208:0;;;;;:::i;:::-;;:::i;2383:94::-;;;;;;;;;;;;;:::i;54657:234::-;;;;;;;;;;;;;:::i;1732:87::-;;;;;;;;;;-1:-1:-1;1778:7:0;1805:6;-1:-1:-1;;;;;1805:6:0;1732:87;;23153:104;;;;;;;;;;;;;:::i;45367:97::-;;;;;;;;;;-1:-1:-1;45447:7:0;;;;;;;45367:97;;55417:84;;;;;;;;;;-1:-1:-1;55485:6:0;;55417:84;;24836:295;;;;;;;;;;-1:-1:-1;24836:295:0;;;;;:::i;:::-;;:::i;26099:328::-;;;;;;;;;;-1:-1:-1;26099:328:0;;;;;:::i;:::-;;:::i;45871:2199::-;;;;;;:::i;:::-;;:::i;59770:106::-;;;;;;;;;;-1:-1:-1;59845:21:0;59770:106;;48215:933;;;;;;;;;;-1:-1:-1;48215:933:0;;;;;:::i;:::-;;:::i;58943:200::-;;;;;;;;;;-1:-1:-1;58943:200:0;;;;;:::i;:::-;;:::i;55080:182::-;;;;;;;;;;-1:-1:-1;55080:182:0;;;;;:::i;:::-;;:::i;25202:164::-;;;;;;;;;;-1:-1:-1;25202:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25323:25:0;;;25299:4;25323:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25202:164;2632:192;;;;;;;;;;-1:-1:-1;2632:192:0;;;;;:::i;:::-;;:::i;57724:237::-;;;;;;;;;;-1:-1:-1;57724:237:0;;;;;:::i;:::-;;:::i;57352:188::-;57411:7;57441:18;57450:7;57441;:18::i;:::-;57432:48;;;;-1:-1:-1;;;57432:48:0;;;;;;;:::i;:::-;;;;;;;;;57502:6;57509:20;43232:1;57509:7;:20;:::i;:::-;57502:28;;;;;;;;:::i;:::-;;;;;;;;;57494:38;;57352:188;;;:::o;58511:249::-;1778:7;1805:6;-1:-1:-1;;;;;1805:6:0;688:10;1952:23;1944:68;;;;-1:-1:-1;;;1944:68:0;;;;;;;:::i;:::-;58608:18:::1;58617:7;58608;:18::i;:::-;58599:48;;;;-1:-1:-1::0;;;58599:48:0::1;;;;;;;:::i;:::-;58693:6:::0;58660:8:::1;58669:20;43232:1;58669:7:::0;:20:::1;:::i;:::-;58660:30;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;::::1;:39:::0;;-1:-1:-1;;;;;;58660:39:0::1;-1:-1:-1::0;;;;;58660:39:0;;::::1;;::::0;;58715:37:::1;::::0;;;::::1;::::0;58735:7;;58715:37:::1;::::0;::::1;58511:249:::0;;:::o;22039:305::-;22141:4;-1:-1:-1;;;;;;22178:40:0;;-1:-1:-1;;;22178:40:0;;:105;;-1:-1:-1;;;;;;;22235:48:0;;-1:-1:-1;;;22235:48:0;22178:105;:158;;;-1:-1:-1;;;;;;;;;;9276:40:0;;;22300:36;22158:178;22039:305;-1:-1:-1;;22039:305:0:o;57094:84::-;1778:7;1805:6;-1:-1:-1;;;;;1805:6:0;688:10;1952:23;1944:68;;;;-1:-1:-1;;;1944:68:0;;;;;;;:::i;:::-;57156:7:::1;:14:::0;;-1:-1:-1;;57156:14:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57094:84::o;22984:100::-;23038:13;23071:5;23064:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22984:100;:::o;24543:221::-;24619:7;24647:16;24655:7;24647;:16::i;:::-;24639:73;;;;-1:-1:-1;;;24639:73:0;;24161:2:1;24639:73:0;;;24143:21:1;24200:2;24180:18;;;24173:30;24239:34;24219:18;;;24212:62;-1:-1:-1;;;24290:18:1;;;24283:42;24342:19;;24639:73:0;23959:408:1;24639:73:0;-1:-1:-1;24732:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24732:24:0;;24543:221::o;24066:411::-;24147:13;24163:23;24178:7;24163:14;:23::i;:::-;24147:39;;24211:5;-1:-1:-1;;;;;24205:11:0;:2;-1:-1:-1;;;;;24205:11:0;;;24197:57;;;;-1:-1:-1;;;24197:57:0;;26454:2:1;24197:57:0;;;26436:21:1;26493:2;26473:18;;;26466:30;26532:34;26512:18;;;26505:62;-1:-1:-1;;;26583:18:1;;;26576:31;26624:19;;24197:57:0;26252:397:1;24197:57:0;688:10;-1:-1:-1;;;;;24289:21:0;;;;:62;;-1:-1:-1;24314:37:0;24331:5;688:10;25202:164;:::i;24314:37::-;24267:168;;;;-1:-1:-1;;;24267:168:0;;22554:2:1;24267:168:0;;;22536:21:1;22593:2;22573:18;;;22566:30;22632:34;22612:18;;;22605:62;22703:26;22683:18;;;22676:54;22747:19;;24267:168:0;22352:420:1;24267:168:0;24448:21;24457:2;24461:7;24448:8;:21::i;:::-;24136:341;24066:411;;:::o;25433:339::-;25628:41;688:10;25661:7;25628:18;:41::i;:::-;25620:103;;;;-1:-1:-1;;;25620:103:0;;;;;;;:::i;:::-;25736:28;25746:4;25752:2;25756:7;25736:9;:28::i;60054:235::-;1778:7;1805:6;-1:-1:-1;;;;;1805:6:0;688:10;1952:23;1944:68;;;;-1:-1:-1;;;1944:68:0;;;;;;;:::i;:::-;60139:21:::1;60129:6;:31;;60120:66;;;::::0;-1:-1:-1;;;60120:66:0;;25761:2:1;60120:66:0::1;::::0;::::1;25743:21:1::0;25800:2;25780:18;;;25773:30;-1:-1:-1;;;25819:18:1;;;25812:50;25879:18;;60120:66:0::1;25559:344:1::0;60120:66:0::1;60256:25;::::0;60233:10:::1;::::0;;;60256:25;::::1;;;::::0;60273:6;;60199:22:::1;60256:25:::0;60199:22;60256:25;60273:6;60233:10;60256:25;::::1;;;;;;;;;;;;;::::0;::::1;;;;25843:185:::0;25981:39;25998:4;26004:2;26008:7;25981:39;;;;;;;;;;;;:16;:39::i;58135:192::-;58196:7;58226:18;58235:7;58226;:18::i;:::-;58217:48;;;;-1:-1:-1;;;58217:48:0;;;;;;;:::i;:::-;58287:8;58296:20;43232:1;58296:7;:20;:::i;:::-;58287:30;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;58287:30:0;;58135:192;-1:-1:-1;;58135:192:0:o;59336:263::-;1778:7;1805:6;-1:-1:-1;;;;;1805:6:0;688:10;1952:23;1944:68;;;;-1:-1:-1;;;1944:68:0;;;;;;;:::i;:::-;59443:18:::1;59452:7;59443;:18::i;:::-;59434:48;;;;-1:-1:-1::0;;;59434:48:0::1;;;;;;;:::i;:::-;59529:7:::0;;59495:9:::1;59505:20;43232:1;59505:7:::0;:20:::1;:::i;:::-;59495:31;;;;;;;;:::i;:::-;;;;;;;;:41;;;;;;;:::i;:::-;;59573:7;59552:39;59582:7;;59552:39;;;;;;;:::i;:::-;;;;;;;;59336:263:::0;;;:::o;22678:239::-;22750:7;22786:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22786:16:0;22821:19;22813:73;;;;-1:-1:-1;;;22813:73:0;;23390:2:1;22813:73:0;;;23372:21:1;23429:2;23409:18;;;23402:30;23468:34;23448:18;;;23441:62;-1:-1:-1;;;23519:18:1;;;23512:39;23568:19;;22813:73:0;23188:405:1;55928:735:0;1778:7;1805:6;-1:-1:-1;;;;;1805:6:0;688:10;1952:23;1944:68;;;;-1:-1:-1;;;1944:68:0;;;;;;;:::i;:::-;56108:12:::1;56140:9:::0;56135:166:::1;56153:21:::0;;::::1;56135:166;;;56196:20;56231:12;;56244:1;56231:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;56196:52;;56271:9;-1:-1:-1::0;;;;;56271:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56263:26;::::0;;::::1;:::i;:::-;;;56181:120;56176:3;;;;;:::i;:::-;;;;56135:166;;;;56328:7;56320:4;:15;56311:44;;;::::0;-1:-1:-1;;;56311:44:0;;27614:2:1;56311:44:0::1;::::0;::::1;27596:21:1::0;27653:2;27633:18;;;27626:30;-1:-1:-1;;;27672:18:1;;;27665:44;27726:18;;56311:44:0::1;27412:338:1::0;56311:44:0::1;56387:18;56394:11;;56387:18;:::i;:::-;56421:9;56416:122;56434:21:::0;;::::1;56416:122;;;56477:11;56507:12;;56520:1;56507:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;56477:49:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;56477:49:0;;;::::1;::::0;;;;;::::1;::::0;;-1:-1:-1;;;;;;56477:49:0::1;-1:-1:-1::0;;;;;56477:49:0;;::::1;::::0;;;::::1;::::0;;56457:3;::::1;::::0;::::1;:::i;:::-;;;;56416:122;;;-1:-1:-1::0;;56548:8:0::1;:20:::0;;;;56579:6:::1;:16:::0;;;;56606:6:::1;:16:::0;56633:9:::1;:22:::0;-1:-1:-1;;55928:735:0:o;22408:208::-;22480:7;-1:-1:-1;;;;;22508:19:0;;22500:74;;;;-1:-1:-1;;;22500:74:0;;22979:2:1;22500:74:0;;;22961:21:1;23018:2;22998:18;;;22991:30;23057:34;23037:18;;;23030:62;-1:-1:-1;;;23108:18:1;;;23101:40;23158:19;;22500:74:0;22777:406:1;22500:74:0;-1:-1:-1;;;;;;22592:16:0;;;;;:9;:16;;;;;;;22408:208::o;2383:94::-;1778:7;1805:6;-1:-1:-1;;;;;1805:6:0;688:10;1952:23;1944:68;;;;-1:-1:-1;;;1944:68:0;;;;;;;:::i;:::-;2448:21:::1;2466:1;2448:9;:21::i;:::-;2383:94::o:0;54657:234::-;54699:7;;;54750:105;54770:11;:18;54768:20;;54750:105;;;54820:11;54832:1;54820:14;;;;;;;;:::i;:::-;;;;;;;;;;;;:23;;;-1:-1:-1;;;54820:23:0;;;;-1:-1:-1;;;;;54820:14:0;;;;:21;;:23;;;;;;;;;;:14;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54810:33;;;;:::i;:::-;;-1:-1:-1;54790:3:0;;;;:::i;:::-;;;;54750:105;;;-1:-1:-1;54875:6:0;54657:234;-1:-1:-1;54657:234:0:o;23153:104::-;23209:13;23242:7;23235:14;;;;;:::i;24836:295::-;-1:-1:-1;;;;;24939:24:0;;688:10;24939:24;;24931:62;;;;-1:-1:-1;;;24931:62:0;;21446:2:1;24931:62:0;;;21428:21:1;21485:2;21465:18;;;21458:30;21524:27;21504:18;;;21497:55;21569:18;;24931:62:0;21244:349:1;24931:62:0;688:10;25006:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25006:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25006:53:0;;;;;;;;;;25075:48;;17944:41:1;;;25006:42:0;;688:10;25075:48;;17917:18:1;25075:48:0;;;;;;;24836:295;;:::o;26099:328::-;26274:41;688:10;26307:7;26274:18;:41::i;:::-;26266:103;;;;-1:-1:-1;;;26266:103:0;;;;;;;:::i;:::-;26380:39;26394:4;26400:2;26404:7;26413:5;26380:13;:39::i;:::-;26099:328;;;;:::o;45871:2199::-;45970:7;;;;45961:33;;;;-1:-1:-1;;;45961:33:0;;27274:2:1;45961:33:0;;;27256:21:1;27313:2;27293:18;;;27286:30;-1:-1:-1;;;27332:18:1;;;27325:41;27383:18;;45961:33:0;27072:335:1;45961:33:0;46062:1;46056:3;:7;:27;;;;;46074:9;;46067:3;:16;;46056:27;46047:53;;;;-1:-1:-1;;;46047:53:0;;20000:2:1;46047:53:0;;;19982:21:1;20039:2;20019:18;;;20012:30;-1:-1:-1;;;20058:18:1;;;20051:41;20109:18;;46047:53:0;19798:335:1;46047:53:0;46157:14;46183:3;46174:6;;:12;;;;:::i;:::-;46157:29;;46219:6;46206:9;:19;;46197:52;;;;-1:-1:-1;;;46197:52:0;;20694:2:1;46197:52:0;;;20676:21:1;20733:2;20713:18;;;20706:30;-1:-1:-1;;;20752:18:1;;;20745:48;20810:18;;46197:52:0;20492:342:1;46197:52:0;46296:14;46313:11;:9;:11::i;:::-;46296:28;;46351:6;46344:3;:13;;46335:53;;;;-1:-1:-1;;;46335:53:0;;20340:2:1;46335:53:0;;;20322:21:1;20379:2;20359:18;;;20352:30;20418:27;20398:18;;;20391:55;20463:18;;46335:53:0;20138:349:1;46335:53:0;46604:6;:13;46568:11;;46582:52;;46625:6;46582:20;:52::i;:::-;46686:7;:14;;-1:-1:-1;;46686:14:0;;;;;46568:66;-1:-1:-1;46686:14:0;46738:1263;46758:3;46756:1;:5;46738:1263;;;46812:10;46825:13;46832:6;46825:13;;;;:::i;:::-;46812:26;;46902:14;46940:9;46935:261;46955:11;:18;46953:20;;46935:261;;;46999:12;47014:11;47026:1;47014:14;;;;;;;;:::i;:::-;;;;;;;;;;;;:23;;;-1:-1:-1;;;47014:23:0;;;;-1:-1:-1;;;;;47014:14:0;;;;:21;;:23;;;;;;;;;;:14;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46999:38;;47067:2;47060:4;:9;47056:96;;;47103:1;47094:10;;47127:5;;;47056:96;47170:10;47176:4;47170:10;;:::i;:::-;;;46980:216;46975:3;;;;;:::i;:::-;;;;46935:261;;;;47262:12;47277:11;47289:6;47277:19;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;-1:-1:-1;;;47277:33:0;;;;;27901:25:1;;;-1:-1:-1;;;;;47277:19:0;;;;:27;;27874:18:1;;47277:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47262:48;;47325:21;47349:11;47361:6;47349:19;;;;;;;;:::i;:::-;;;;;;;;;;;:36;;-1:-1:-1;;;47349:36:0;;;;;27901:25:1;;;-1:-1:-1;;;;;47349:19:0;;;;:30;;27874:18:1;;47349:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47349:36:0;;;;;;;;;;;;:::i;:::-;47325:60;;47400:11;47412:6;47400:19;;;;;;;;:::i;:::-;;;;;;;;;;;:31;;-1:-1:-1;;;47400:31:0;;;;;27901:25:1;;;-1:-1:-1;;;;;47400:19:0;;;;:25;;27874:18:1;;47400:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47499:6:0;:13;47481:15;;-1:-1:-1;47499:28:0;;-1:-1:-1;43232:1:0;;47499:28;:::i;:::-;47481:46;;47602:28;47609:10;47621:7;47602:5;:28::i;:::-;47685:6;:19;;;;;;;;;;;;;;47719:8;:27;;;;;;;;;;;;-1:-1:-1;;;;;;47719:27:0;47734:10;47719:27;;;47761:9;:25;;;;;;;-1:-1:-1;47761:25:0;;;;;;;;47685:19;47761:25;;;;:::i;:::-;;47864:10;-1:-1:-1;;;;;47837:48:0;47858:4;47849:7;47837:48;47876:7;47837:48;;;;;;:::i;:::-;;;;;;;;47931:8;;;;:::i;:::-;;-1:-1:-1;;40562:2:0;40555:9;;;;;40547:18;;40591:2;40584:9;;;;;40576:18;40620:2;40613:9;;;;;40605:18;47954:35;;46768:1233;;;;;46763:3;;;;;:::i;:::-;;;;46738:1263;;;-1:-1:-1;;48047:7:0;:15;;-1:-1:-1;;48047:15:0;;;-1:-1:-1;;;45871:2199:0:o;48215:933::-;48280:13;48315:16;48323:7;48315;:16::i;:::-;48306:78;;;;-1:-1:-1;;;48306:78:0;;25345:2:1;48306:78:0;;;25327:21:1;25384:2;25364:18;;;25357:30;25423:34;25403:18;;;25396:62;-1:-1:-1;;;25474:18:1;;;25467:45;25529:19;;48306:78:0;25143:411:1;48306:78:0;48397:21;48464:24;48480:7;48464:15;:24::i;:::-;48429:67;;;;;;;;:::i;:::-;;;;-1:-1:-1;;48429:67:0;;;;;;48509:71;;;;;;;;;;48429:67;;-1:-1:-1;48509:28:0;;48429:67;48509:71;48429:67;48509:71;;;;-1:-1:-1;48591:27:0;48698:9;48708:20;43232:1;48708:7;:20;:::i;:::-;48698:31;;;;;;;;:::i;:::-;;;;;;;;48629:110;;;;;;;;:::i;:::-;;;;-1:-1:-1;;48629:110:0;;;;;;;;;;-1:-1:-1;48752:20:0;48775:41;48786:6;48793:20;43232:1;48793:7;:20;:::i;:::-;48786:28;;;;;;;;:::i;:::-;;;;;;;;;48775:9;:41::i;:::-;48752:64;;48829:18;48850:181;48906:7;48915:14;48931:13;48986:31;49009:6;48986:16;:31::i;:::-;48883:142;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48850:16;:181::i;:::-;48829:202;;49107:4;49057:56;;;;;;;;:::i;:::-;;;;-1:-1:-1;;49057:56:0;;;;;;;;;;48215:933;-1:-1:-1;;;;;;;48215:933:0:o;58943:200::-;59005:13;59041:18;59050:7;59041;:18::i;:::-;59032:48;;;;-1:-1:-1;;;59032:48:0;;;;;;;:::i;:::-;59102:9;59112:20;43232:1;59112:7;:20;:::i;:::-;59102:31;;;;;;;;:::i;:::-;;;;;;;;59094:41;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58943:200;;;:::o;55080:182::-;55171:11;:18;55137:7;;55166:23;;55157:50;;;;-1:-1:-1;;;55157:50:0;;21800:2:1;55157:50:0;;;21782:21:1;21839:2;21819:18;;;21812:30;-1:-1:-1;;;21858:18:1;;;21851:42;21910:18;;55157:50:0;21598:336:1;55157:50:0;55236:11;55248:2;55236:15;;;;;;;;:::i;2632:192::-;1778:7;1805:6;-1:-1:-1;;;;;1805:6:0;688:10;1952:23;1944:68;;;;-1:-1:-1;;;1944:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2721:22:0;::::1;2713:73;;;::::0;-1:-1:-1;;;2713:73:0;;19236:2:1;2713:73:0::1;::::0;::::1;19218:21:1::0;19275:2;19255:18;;;19248:30;19314:34;19294:18;;;19287:62;-1:-1:-1;;;19365:18:1;;;19358:36;19411:19;;2713:73:0::1;19034:402:1::0;2713:73:0::1;2797:19;2807:8;2797:9;:19::i;:::-;2632:192:::0;:::o;57724:237::-;1778:7;1805:6;-1:-1:-1;;;;;1805:6:0;688:10;1952:23;1944:68;;;;-1:-1:-1;;;1944:68:0;;;;;;;:::i;:::-;57817:18:::1;57826:7;57817;:18::i;:::-;57808:48;;;;-1:-1:-1::0;;;57808:48:0::1;;;;;;;:::i;:::-;57900:4:::0;57869:6:::1;57876:20;43232:1;57876:7:::0;:20:::1;:::i;:::-;57869:28;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;::::1;:35:::0;;;;57920:33:::1;::::0;57947:4;;57938:7;;57920:33:::1;::::0;57869:28;57920:33:::1;57724:237:::0;;:::o;27937:127::-;28002:4;28026:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28026:16:0;:30;;;27937:127::o;31919:174::-;31994:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31994:29:0;-1:-1:-1;;;;;31994:29:0;;;;;;;;:24;;32048:23;31994:24;32048:14;:23::i;:::-;-1:-1:-1;;;;;32039:46:0;;;;;;;;;;;31919:174;;:::o;28231:348::-;28324:4;28349:16;28357:7;28349;:16::i;:::-;28341:73;;;;-1:-1:-1;;;28341:73:0;;22141:2:1;28341:73:0;;;22123:21:1;22180:2;22160:18;;;22153:30;22219:34;22199:18;;;22192:62;-1:-1:-1;;;22270:18:1;;;22263:42;22322:19;;28341:73:0;21939:408:1;28341:73:0;28425:13;28441:23;28456:7;28441:14;:23::i;:::-;28425:39;;28494:5;-1:-1:-1;;;;;28483:16:0;:7;-1:-1:-1;;;;;28483:16:0;;:51;;;;28527:7;-1:-1:-1;;;;;28503:31:0;:20;28515:7;28503:11;:20::i;:::-;-1:-1:-1;;;;;28503:31:0;;28483:51;:87;;;-1:-1:-1;;;;;;25323:25:0;;;25299:4;25323:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28538:32;28475:96;28231:348;-1:-1:-1;;;;28231:348:0:o;31223:578::-;31382:4;-1:-1:-1;;;;;31355:31:0;:23;31370:7;31355:14;:23::i;:::-;-1:-1:-1;;;;;31355:31:0;;31347:85;;;;-1:-1:-1;;;31347:85:0;;24935:2:1;31347:85:0;;;24917:21:1;24974:2;24954:18;;;24947:30;25013:34;24993:18;;;24986:62;-1:-1:-1;;;25064:18:1;;;25057:39;25113:19;;31347:85:0;24733:405:1;31347:85:0;-1:-1:-1;;;;;31451:16:0;;31443:65;;;;-1:-1:-1;;;31443:65:0;;21041:2:1;31443:65:0;;;21023:21:1;21080:2;21060:18;;;21053:30;21119:34;21099:18;;;21092:62;-1:-1:-1;;;21170:18:1;;;21163:34;21214:19;;31443:65:0;20839:400:1;31443:65:0;31625:29;31642:1;31646:7;31625:8;:29::i;:::-;-1:-1:-1;;;;;31667:15:0;;;;;;:9;:15;;;;;:20;;31686:1;;31667:15;:20;;31686:1;;31667:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31698:13:0;;;;;;:9;:13;;;;;:18;;31715:1;;31698:13;:18;;31715:1;;31698:18;:::i;:::-;;;;-1:-1:-1;;31727:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31727:21:0;-1:-1:-1;;;;;31727:21:0;;;;;;;;;31766:27;;31727:16;;31766:27;;;;;;;31223:578;;;:::o;2832:173::-;2888:16;2907:6;;-1:-1:-1;;;;;2924:17:0;;;-1:-1:-1;;;;;;2924:17:0;;;;;;2957:40;;2907:6;;;;;;;2957:40;;2888:16;2957:40;2877:128;2832:173;:::o;27309:315::-;27466:28;27476:4;27482:2;27486:7;27466:9;:28::i;:::-;27513:48;27536:4;27542:2;27546:7;27555:5;27513:22;:48::i;:::-;27505:111;;;;-1:-1:-1;;;27505:111:0;;;;;;;:::i;39779:445::-;39852:6;39933:10;39993:13;40085;;;:21;;39852:6;40137:35;40085:21;40166:4;40137:21;:35::i;:::-;40120:52;-1:-1:-1;40562:2:0;40555:9;;;;;40547:18;;40591:2;40584:9;;;;;40576:18;40620:2;40613:9;;;;;40605:18;40183:33;39779:445;-1:-1:-1;;;;;;;39779:445:0:o;29915:382::-;-1:-1:-1;;;;;29995:16:0;;29987:61;;;;-1:-1:-1;;;29987:61:0;;23800:2:1;29987:61:0;;;23782:21:1;;;23819:18;;;23812:30;23878:34;23858:18;;;23851:62;23930:18;;29987:61:0;23598:356:1;29987:61:0;30068:16;30076:7;30068;:16::i;:::-;30067:17;30059:58;;;;-1:-1:-1;;;30059:58:0;;19643:2:1;30059:58:0;;;19625:21:1;19682:2;19662:18;;;19655:30;19721;19701:18;;;19694:58;19769:18;;30059:58:0;19441:352:1;30059:58:0;-1:-1:-1;;;;;30188:13:0;;;;;;:9;:13;;;;;:18;;30205:1;;30188:13;:18;;30205:1;;30188:18;:::i;:::-;;;;-1:-1:-1;;30217:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30217:21:0;-1:-1:-1;;;;;30217:21:0;;;;;;;;30256:33;;30217:16;;;30256:33;;30217:16;;30256:33;29915:382;;:::o;36282:601::-;36338:13;36403:1;36430:3;36444:82;36459:2;36451:4;:10;36444:82;;36485:9;36492:2;36485:4;:9;:::i;:::-;36478:16;-1:-1:-1;36509:5:0;;;;:::i;:::-;;;;36444:82;;;36569:16;36598:3;36588:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36588:14:0;;36569:33;;36650:3;36643:10;;36669:9;36664:178;36684:3;36682:1;:5;36664:178;;;36709:6;36724:7;36729:2;36724:4;:7;:::i;:::-;36718:14;;:2;:14;:::i;:::-;36709:23;-1:-1:-1;36789:16:0;;;;36772:3;36781;:1;36783;36781:3;:::i;:::-;36776:9;;:3;:9;:::i;:::-;36772:14;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;36772:33:0;;;;;;;;-1:-1:-1;36820:10:0;36828:2;36820:10;;:::i;:::-;;;36694:148;36689:3;;;;;:::i;:::-;;;;36664:178;;;-1:-1:-1;36869:3:0;36282:601;-1:-1:-1;;;;36282:601:0:o;49280:2105::-;49338:13;49364:20;:25;;;;;;;;;;;;;;49400:21;49434:17;49454:20;49468:4;49454:12;:20::i;:::-;49434:40;-1:-1:-1;49485:11:0;;49509:466;49529:1;49527;:3;49509:466;;;49552:12;;;;;;;;;;;;;;49584:9;49579:314;49599:1;49597;:3;49579:314;;;49647:4;49658:1;49652:3;49654:1;49652;:3;:::i;:::-;:7;;;;:::i;:::-;49647:13;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;49686:8:0;;49682:196;;49755:7;49777:8;49786:1;49777:11;;;;;;;;:::i;:::-;;;;;;;;49799:8;49808:1;49799:11;;;;;;;;:::i;:::-;;;;;;;;49828:10;49839:3;49828:15;;;;;;;;:::i;:::-;;;;;;;;49737:119;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49719:139;;49682:196;49602:3;;;;:::i;:::-;;;;49579:314;;;;49944:6;49952:7;49926:35;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49909:54;;49532:3;;;;;:::i;:::-;;;;49509:466;;;;51330:6;50004:1344;;;;;;;;:::i;:::-;;;;-1:-1:-1;;50004:1344:0;;;;;;;;;;49280:2105;-1:-1:-1;;;;;;49280:2105:0:o;34448:1594::-;34546:11;;34506:13;;34572:8;34568:23;;-1:-1:-1;;34582:9:0;;;;;;;;;-1:-1:-1;34582:9:0;;;34448:1594;-1:-1:-1;34448:1594:0:o;34568:23::-;34641:18;34679:1;34668:7;:3;34674:1;34668:7;:::i;:::-;34667:13;;;;:::i;:::-;34662:19;;:1;:19;:::i;:::-;34641:40;-1:-1:-1;34728:19:0;34760:15;34641:40;34773:2;34760:15;:::i;:::-;34750:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34750:26:0;;34728:48;;34789:18;34810:5;;;;;;;;;;;;;;;;;34789:26;;34879:1;34872:5;34868:13;34924:2;34916:6;34912:15;34975:1;34943:777;34998:3;34995:1;34992:10;34943:777;;;35053:1;35096:12;;;;;35090:19;35191:4;35179:2;35175:14;;;;;35157:40;;35151:47;35300:2;35296:14;;;35292:25;;35278:40;;35272:47;35429:1;35425:13;;;35421:24;;35407:39;;35401:46;35549:16;;;;35535:31;;35529:38;35227:1;35223:11;;;35321:4;35268:58;;;35259:68;35352:11;;35397:57;;;35388:67;;;;35480:11;;35525:49;;35516:59;35604:3;35600:13;35633:22;;35703:1;35688:17;;;;35046:9;34943:777;;;34947:44;35752:1;35747:3;35743:11;35773:1;35768:84;;;;35871:1;35866:82;;;;35736:212;;35768:84;-1:-1:-1;;;;;35801:17:0;;35794:43;35768:84;;35866:82;-1:-1:-1;;;;;35899:17:0;;35892:41;35736:212;-1:-1:-1;;;35964:26:0;;;35971:6;34448:1594;-1:-1:-1;;;;34448:1594:0:o;32658:799::-;32813:4;-1:-1:-1;;;;;32834:13:0;;11817:20;11865:8;32830:620;;32870:72;;-1:-1:-1;;;32870:72:0;;-1:-1:-1;;;;;32870:36:0;;;;;:72;;688:10;;32921:4;;32927:7;;32936:5;;32870:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32870:72:0;;;;;;;;-1:-1:-1;;32870:72:0;;;;;;;;;;;;:::i;:::-;;;32866:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33112:13:0;;33108:272;;33155:60;;-1:-1:-1;;;33155:60:0;;;;;;;:::i;33108:272::-;33330:6;33324:13;33315:6;33311:2;33307:15;33300:38;32866:529;-1:-1:-1;;;;;;32993:51:0;-1:-1:-1;;;32993:51:0;;-1:-1:-1;32986:58:0;;32830:620;-1:-1:-1;33434:4:0;32658:799;;;;;;:::o;39032:440::-;39114:6;39451:7;39456:2;39451:4;:7;:::i;:::-;39440:6;39445:1;39440:4;:6;:::i;:::-;39436:11;;:2;:11;:::i;:::-;:23;;;;:::i;:::-;39427:33;;;;;;;39032:440;-1:-1:-1;;39032:440:0:o;51529:2412::-;51635:13;;;51645:2;51635:13;;;;;;;;;51590:12;;51615:17;;51635:13;;;;;;;;;;;-1:-1:-1;;51709:12:0;;;51719:1;51709:12;;;;;;;;;51615:33;;-1:-1:-1;51661:16:0;;;;51709:12;;;;;;;;;;-1:-1:-1;;51780:12:0;;;51790:1;51780:12;;;;;;;;;51688:33;;-1:-1:-1;51734:15:0;;;;51780:12;;;;;;;;;;-1:-1:-1;51780:12:0;51760:32;;51847:9;51842:237;51862:3;51860:1;:5;51842:237;;;-1:-1:-1;;;51892:73:0;;51891:81;51887:156;;52002:1;51993:10;;;;;52022:5;;51887:156;52066:1;52057:10;;;;;51867:3;;;;:::i;:::-;;;;51842:237;;;-1:-1:-1;52131:2:0;52122:11;;;;52091:13;52174:1733;52194:1;52192;:3;52174:1733;;;52274:1;52263:12;;52295:9;52290:92;52310:1;52308;:3;52290:92;;;52361:3;52363:1;52361;:3;:::i;:::-;52348:18;;52337:5;52343:1;52337:8;;;;;;;;:::i;:::-;;;;:29;-1:-1:-1;;;;;52337:29:0;;;;;;;;-1:-1:-1;52313:3:0;;;;:::i;:::-;;;;52290:92;;;;52403:9;52398:1498;52418:1;52416;:3;52398:1498;;;-1:-1:-1;;;52506:74:0;;52505:82;52501:1348;;52662:8;52652:18;;52698:9;52693:104;52713:8;52711:1;:10;52693:104;;;52765:5;52771:1;52765:8;;;;;;;;:::i;:::-;;;;;;;;;52755:4;52760:1;52755:7;;;;;;;;:::i;:::-;;;;:18;-1:-1:-1;;;;;52755:18:0;;;;;;;;-1:-1:-1;52723:3:0;;;;:::i;:::-;;;;52693:104;;;;52869:9;52864:129;52884:1;52882;:3;52864:129;;;52930:39;52941:4;52947:7;52956:4;52965:1;52961:3;52963:1;52961;:3;:::i;:::-;:5;;;;:::i;:::-;52956:11;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;52956:11:0;52930:9;:39::i;:::-;52919:50;;;;:::i;:::-;;-1:-1:-1;52887:3:0;;;;:::i;:::-;;;;52864:129;;;;53066:14;53121:1;53111:7;:11;53107:546;;;-1:-1:-1;53214:1:0;53205:10;;;;53168:3;53160:11;53107:546;;;53258:1;53248:7;:11;53244:409;;;-1:-1:-1;53352:1:0;53343:10;;;;53306:3;53298:11;53244:409;;;53396:1;53386:7;:11;53382:271;;;-1:-1:-1;53490:1:0;53481:10;;;;53444:3;53436:11;53382:271;;;53534:1;53524:7;:11;53520:133;;;-1:-1:-1;53589:3:0;53619:10;;;;53582:3;53574:11;53520:133;53689:4;53694:6;53689:12;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;53689:12:0;53675:4;53684:1;53680:3;53682:1;53680;:3;:::i;:::-;:5;;;;:::i;:::-;53675:11;;;;;;;;:::i;:::-;;;;:26;-1:-1:-1;;;;;53675:26:0;;;;;;;;;53787:42;53798:5;53805:8;53815:4;53820:6;53815:12;;;;;;;;:::i;53787:42::-;53775:54;;;;:::i;:::-;;;52589:1260;52501:1348;53879:1;53869:11;;;;;52421:3;;;;:::i;:::-;;;;52398:1498;;;-1:-1:-1;52197:3:0;;;;:::i;:::-;;;;52174:1733;;;-1:-1:-1;53927:4:0;;51529:2412;-1:-1:-1;;;;;;;51529:2412:0:o;54103:376::-;54192:7;;54212:236;54232:4;54230:1;:6;54212:236;;;54273:3;-1:-1:-1;;;;;54262:14:0;;:4;54267:1;54262:7;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;54262:7:0;:14;54258:179;;;54302:9;54312:3;:1;54314;54312:3;:::i;:::-;54302:13;;54297:95;54319:4;54317:1;:6;54297:95;;;54365:4;54370:1;54365:7;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;54365:7:0;54353:4;54358:3;54360:1;54358;:3;:::i;:::-;54353:9;;;;;;;;:::i;:::-;;;;:19;-1:-1:-1;;;;;54353:19:0;;;;;;;;-1:-1:-1;54325:3:0;;;;:::i;:::-;;;;54297:95;;;;54418:1;54410:11;;;;;54258:179;54238:3;;;;:::i;:::-;;;;54212:236;;;;54468:1;54460:11;;54103:376;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:888::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1573:18;1565:6;1562:30;1559:50;;;1605:1;1602;1595:12;1559:50;1628:22;;1681:4;1673:13;;1669:27;-1:-1:-1;1659:55:1;;1710:1;1707;1700:12;1659:55;1746:2;1733:16;1771:48;1787:31;1815:2;1787:31;:::i;:::-;1771:48;:::i;:::-;1842:2;1835:5;1828:17;1882:7;1877:2;1872;1868;1864:11;1860:20;1857:33;1854:53;;;1903:1;1900;1893:12;1854:53;1958:2;1953;1949;1945:11;1940:2;1933:5;1929:14;1916:45;2002:1;1997:2;1992;1985:5;1981:14;1977:23;1970:34;2023:5;2013:15;;;;;1146:888;;;;;;;:::o;2039:254::-;2104:6;2112;2165:2;2153:9;2144:7;2140:23;2136:32;2133:52;;;2181:1;2178;2171:12;2133:52;2204:29;2223:9;2204:29;:::i;:::-;2194:39;;2252:35;2283:2;2272:9;2268:18;2252:35;:::i;2298:254::-;2366:6;2374;2427:2;2415:9;2406:7;2402:23;2398:32;2395:52;;;2443:1;2440;2433:12;2395:52;2466:29;2485:9;2466:29;:::i;:::-;2456:39;2542:2;2527:18;;;;2514:32;;-1:-1:-1;;;2298:254:1:o;2557:895::-;2679:6;2687;2695;2703;2711;2719;2772:3;2760:9;2751:7;2747:23;2743:33;2740:53;;;2789:1;2786;2779:12;2740:53;2829:9;2816:23;2858:18;2899:2;2891:6;2888:14;2885:34;;;2915:1;2912;2905:12;2885:34;2953:6;2942:9;2938:22;2928:32;;2998:7;2991:4;2987:2;2983:13;2979:27;2969:55;;3020:1;3017;3010:12;2969:55;3060:2;3047:16;3086:2;3078:6;3075:14;3072:34;;;3102:1;3099;3092:12;3072:34;3157:7;3150:4;3140:6;3137:1;3133:14;3129:2;3125:23;3121:34;3118:47;3115:67;;;3178:1;3175;3168:12;3115:67;3209:4;3201:13;;;;3233:6;;-1:-1:-1;3271:20:1;;;3258:34;;3339:2;3324:18;;3311:32;;-1:-1:-1;3390:2:1;3375:18;;3362:32;;-1:-1:-1;3441:3:1;3426:19;3413:33;;-1:-1:-1;2557:895:1;;-1:-1:-1;;;;2557:895:1:o;3457:180::-;3513:6;3566:2;3554:9;3545:7;3541:23;3537:32;3534:52;;;3582:1;3579;3572:12;3534:52;3605:26;3621:9;3605:26;:::i;3642:245::-;3700:6;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:30;3851:5;3827:30;:::i;3892:249::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4062:9;4056:16;4081:30;4105:5;4081:30;:::i;4146:635::-;4226:6;4279:2;4267:9;4258:7;4254:23;4250:32;4247:52;;;4295:1;4292;4285:12;4247:52;4328:9;4322:16;4361:18;4353:6;4350:30;4347:50;;;4393:1;4390;4383:12;4347:50;4416:22;;4469:4;4461:13;;4457:27;-1:-1:-1;4447:55:1;;4498:1;4495;4488:12;4447:55;4527:2;4521:9;4552:48;4568:31;4596:2;4568:31;:::i;4552:48::-;4623:2;4616:5;4609:17;4663:7;4658:2;4653;4649;4645:11;4641:20;4638:33;4635:53;;;4684:1;4681;4674:12;4635:53;4697:54;4748:2;4743;4736:5;4732:14;4727:2;4723;4719:11;4697:54;:::i;:::-;4770:5;4146:635;-1:-1:-1;;;;;4146:635:1:o;4786:180::-;4845:6;4898:2;4886:9;4877:7;4873:23;4869:32;4866:52;;;4914:1;4911;4904:12;4866:52;-1:-1:-1;4937:23:1;;4786:180;-1:-1:-1;4786:180:1:o;4971:184::-;5041:6;5094:2;5082:9;5073:7;5069:23;5065:32;5062:52;;;5110:1;5107;5100:12;5062:52;-1:-1:-1;5133:16:1;;4971:184;-1:-1:-1;4971:184:1:o;5160:254::-;5228:6;5236;5289:2;5277:9;5268:7;5264:23;5260:32;5257:52;;;5305:1;5302;5295:12;5257:52;5341:9;5328:23;5318:33;;5370:38;5404:2;5393:9;5389:18;5370:38;:::i;5419:660::-;5499:6;5507;5515;5568:2;5556:9;5547:7;5543:23;5539:32;5536:52;;;5584:1;5581;5574:12;5536:52;5620:9;5607:23;5597:33;;5681:2;5670:9;5666:18;5653:32;5704:18;5745:2;5737:6;5734:14;5731:34;;;5761:1;5758;5751:12;5731:34;5799:6;5788:9;5784:22;5774:32;;5844:7;5837:4;5833:2;5829:13;5825:27;5815:55;;5866:1;5863;5856:12;5815:55;5906:2;5893:16;5932:2;5924:6;5921:14;5918:34;;;5948:1;5945;5938:12;5918:34;5993:7;5988:2;5979:6;5975:2;5971:15;5967:24;5964:37;5961:57;;;6014:1;6011;6004:12;5961:57;6045:2;6041;6037:11;6027:21;;6067:6;6057:16;;;;;5419:660;;;;;:::o;6084:248::-;6152:6;6160;6213:2;6201:9;6192:7;6188:23;6184:32;6181:52;;;6229:1;6226;6219:12;6181:52;-1:-1:-1;;6252:23:1;;;6322:2;6307:18;;;6294:32;;-1:-1:-1;6084:248:1:o;6337:257::-;6378:3;6416:5;6410:12;6443:6;6438:3;6431:19;6459:63;6515:6;6508:4;6503:3;6499:14;6492:4;6485:5;6481:16;6459:63;:::i;:::-;6576:2;6555:15;-1:-1:-1;;6551:29:1;6542:39;;;;6583:4;6538:50;;6337:257;-1:-1:-1;;6337:257:1:o;6599:185::-;6641:3;6679:5;6673:12;6694:52;6739:6;6734:3;6727:4;6720:5;6716:16;6694:52;:::i;:::-;6762:16;;;;;6599:185;-1:-1:-1;;6599:185:1:o;6789:973::-;6874:12;;6839:3;;6929:1;6949:18;;;;7002;;;;7029:61;;7083:4;7075:6;7071:17;7061:27;;7029:61;7109:2;7157;7149:6;7146:14;7126:18;7123:38;7120:161;;;7203:10;7198:3;7194:20;7191:1;7184:31;7238:4;7235:1;7228:15;7266:4;7263:1;7256:15;7120:161;7297:18;7324:104;;;;7442:1;7437:319;;;;7290:466;;7324:104;-1:-1:-1;;7357:24:1;;7345:37;;7402:16;;;;-1:-1:-1;7324:104:1;;7437:319;28481:1;28474:14;;;28518:4;28505:18;;7531:1;7545:165;7559:6;7556:1;7553:13;7545:165;;;7637:14;;7624:11;;;7617:35;7680:16;;;;7574:10;;7545:165;;;7549:3;;7739:6;7734:3;7730:16;7723:23;;7290:466;;;;;;;6789:973;;;;:::o;7891:470::-;8070:3;8108:6;8102:13;8124:53;8170:6;8165:3;8158:4;8150:6;8146:17;8124:53;:::i;:::-;8240:13;;8199:16;;;;8262:57;8240:13;8199:16;8296:4;8284:17;;8262:57;:::i;:::-;8335:20;;7891:470;-1:-1:-1;;;;7891:470:1:o;8366:1227::-;9036:3;9074:6;9068:13;9090:53;9136:6;9131:3;9124:4;9116:6;9112:17;9090:53;:::i;:::-;-1:-1:-1;;;9165:16:1;;;9190:45;;;9254:48;9299:1;9288:13;;9280:6;9254:48;:::i;:::-;-1:-1:-1;;;9311:34:1;;9244:58;-1:-1:-1;9364:45:1;9406:1;9398:10;;9390:6;9364:45;:::i;:::-;-1:-1:-1;;;9418:48:1;;9354:55;-1:-1:-1;9485:46:1;9527:2;9519:11;;9511:6;9485:46;:::i;:::-;-1:-1:-1;;;9540:21:1;;9585:1;9577:10;;8366:1227;-1:-1:-1;;;;;;;8366:1227:1:o;9598:4375::-;9961:66;9949:79;;10058:66;10053:2;10044:12;;10037:88;10155:66;10150:2;10141:12;;10134:88;10252:66;10247:2;10238:12;;10231:88;10350:34;10344:3;10335:13;;10328:57;10416:66;10410:3;10401:13;;10394:89;10514:66;10508:3;10499:13;;10492:89;10612:66;10606:3;10597:13;;10590:89;10710:66;10704:3;10695:13;;10688:89;10808:66;10802:3;10793:13;;10786:89;10906:66;10900:3;10891:13;;10884:89;11004:66;10998:3;10989:13;;10982:89;11090:66;11181:3;11172:13;;11165:25;;;11221:66;11215:3;11206:13;;11199:89;11319:66;11313:3;11304:13;;11297:89;11417:66;11411:3;11402:13;;11395:89;11515:66;11509:3;11500:13;;11493:89;11613:66;11607:3;11598:13;;11591:89;11711:66;11705:3;11696:13;;11689:89;11809:66;11803:3;11794:13;;11787:89;11907:66;11901:3;11892:13;;11885:89;12005:66;11999:3;11990:13;;11983:89;12103:66;12097:3;12088:13;;12081:89;12201:66;12195:3;12186:13;;12179:89;12299:66;12293:3;12284:13;;12277:89;12391:3;12382:13;;12375:25;12431:66;12425:3;12416:13;;12409:89;12529:66;12523:3;12514:13;;12507:89;12627:66;12621:3;12612:13;;12605:89;12725:66;12719:3;12710:13;;12703:89;12823:66;12817:3;12808:13;;12801:89;12921:66;12915:3;12906:13;;12899:89;13020:66;13013:4;13004:14;;12997:90;13119:66;13112:4;13103:14;;13096:90;13218:66;13211:4;13202:14;;13195:90;13317:66;13310:4;13301:14;;13294:90;13416:66;13409:4;13400:14;;13393:90;13515:66;13508:4;13499:14;;13492:90;13614:66;13607:4;13598:14;;13591:90;13713:66;13706:4;13697:14;;13690:90;13812:66;13805:4;13796:14;;13789:90;-1:-1:-1;13895:72:1;13925:41;13960:4;13951:14;;13943:6;13925:41;:::i;:::-;-1:-1:-1;;;7832:21:1;;7878:1;7869:11;;7767:119;13978:639;14338:66;14326:79;;-1:-1:-1;;;14430:2:1;14421:12;;14414:64;-1:-1:-1;14497:47:1;14540:2;14531:12;;14523:6;14497:47;:::i;:::-;-1:-1:-1;;;14553:32:1;;14609:1;14601:10;;13978:639;-1:-1:-1;;;13978:639:1:o;14622:1397::-;-1:-1:-1;;;15225:3:1;15218:16;15200:3;15263:6;15257:13;15279:61;15333:6;15329:1;15324:3;15320:11;15313:4;15305:6;15301:17;15279:61;:::i;:::-;15400:13;;15359:16;;;;15422:62;15400:13;15471:1;15463:10;;15456:4;15444:17;;15422:62;:::i;:::-;15545:13;;15503:17;;;15567:62;15545:13;15616:1;15608:10;;15601:4;15589:17;;15567:62;:::i;:::-;15693:66;15689:1;15648:17;;;;15681:10;;;15674:86;-1:-1:-1;;;15784:2:1;15776:11;;15769:27;15821:13;;15843:63;15821:13;15892:2;15884:11;;15877:4;15865:17;;15843:63;:::i;:::-;-1:-1:-1;;;15966:2:1;15925:17;;;;15958:11;;;15951:35;16010:2;16002:11;;14622:1397;-1:-1:-1;;;;;;14622:1397:1:o;16024:448::-;16286:31;16281:3;16274:44;16256:3;16347:6;16341:13;16363:62;16418:6;16413:2;16408:3;16404:12;16397:4;16389:6;16385:17;16363:62;:::i;:::-;16445:16;;;;16463:2;16441:25;;16024:448;-1:-1:-1;;16024:448:1:o;16477:621::-;-1:-1:-1;;;16828:51:1;;16902:13;;16810:3;;16924:62;16902:13;16974:2;16965:12;;16958:4;16946:17;;16924:62;:::i;:::-;-1:-1:-1;;;17045:2:1;17005:16;;;;17037:11;;;17030:35;-1:-1:-1;17089:2:1;17081:11;;16477:621;-1:-1:-1;16477:621:1:o;17311:488::-;-1:-1:-1;;;;;17580:15:1;;;17562:34;;17632:15;;17627:2;17612:18;;17605:43;17679:2;17664:18;;17657:34;;;17727:3;17722:2;17707:18;;17700:31;;;17505:4;;17748:45;;17773:19;;17765:6;17748:45;:::i;:::-;17740:53;17311:488;-1:-1:-1;;;;;;17311:488:1:o;17996:390::-;18155:2;18144:9;18137:21;18194:6;18189:2;18178:9;18174:18;18167:34;18251:6;18243;18238:2;18227:9;18223:18;18210:48;18307:1;18278:22;;;18302:2;18274:31;;;18267:42;;;;18370:2;18349:15;;;-1:-1:-1;;18345:29:1;18330:45;18326:54;;17996:390;-1:-1:-1;17996:390:1:o;18391:219::-;18540:2;18529:9;18522:21;18503:4;18560:44;18600:2;18589:9;18585:18;18577:6;18560:44;:::i;18615:414::-;18817:2;18799:21;;;18856:2;18836:18;;;18829:30;18895:34;18890:2;18875:18;;18868:62;-1:-1:-1;;;18961:2:1;18946:18;;18939:48;19019:3;19004:19;;18615:414::o;24372:356::-;24574:2;24556:21;;;24593:18;;;24586:30;24652:34;24647:2;24632:18;;24625:62;24719:2;24704:18;;24372:356::o;25908:339::-;26110:2;26092:21;;;26149:2;26129:18;;;26122:30;-1:-1:-1;;;26183:2:1;26168:18;;26161:45;26238:2;26223:18;;25908:339::o;26654:413::-;26856:2;26838:21;;;26895:2;26875:18;;;26868:30;26934:34;26929:2;26914:18;;26907:62;-1:-1:-1;;;27000:2:1;26985:18;;26978:47;27057:3;27042:19;;26654:413::o;27937:275::-;28008:2;28002:9;28073:2;28054:13;;-1:-1:-1;;28050:27:1;28038:40;;28108:18;28093:34;;28129:22;;;28090:62;28087:88;;;28155:18;;:::i;:::-;28191:2;28184:22;27937:275;;-1:-1:-1;27937:275:1:o;28217:186::-;28265:4;28298:18;28290:6;28287:30;28284:56;;;28320:18;;:::i;:::-;-1:-1:-1;28386:2:1;28365:15;-1:-1:-1;;28361:29:1;28392:4;28357:40;;28217:186::o;28534:128::-;28574:3;28605:1;28601:6;28598:1;28595:13;28592:39;;;28611:18;;:::i;:::-;-1:-1:-1;28647:9:1;;28534:128::o;28667:204::-;28705:3;28741:4;28738:1;28734:12;28773:4;28770:1;28766:12;28808:3;28802:4;28798:14;28793:3;28790:23;28787:49;;;28816:18;;:::i;:::-;28852:13;;28667:204;-1:-1:-1;;;28667:204:1:o;28876:120::-;28916:1;28942;28932:35;;28947:18;;:::i;:::-;-1:-1:-1;28981:9:1;;28876:120::o;29001:168::-;29041:7;29107:1;29103;29099:6;29095:14;29092:1;29089:21;29084:1;29077:9;29070:17;29066:45;29063:71;;;29114:18;;:::i;:::-;-1:-1:-1;29154:9:1;;29001:168::o;29174:238::-;29212:7;29252:4;29249:1;29245:12;29284:4;29281:1;29277:12;29344:3;29338:4;29334:14;29329:3;29326:23;29319:3;29312:11;29305:19;29301:49;29298:75;;;29353:18;;:::i;:::-;29393:13;;29174:238;-1:-1:-1;;;29174:238:1:o;29417:125::-;29457:4;29485:1;29482;29479:8;29476:34;;;29490:18;;:::i;:::-;-1:-1:-1;29527:9:1;;29417:125::o;29547:258::-;29619:1;29629:113;29643:6;29640:1;29637:13;29629:113;;;29719:11;;;29713:18;29700:11;;;29693:39;29665:2;29658:10;29629:113;;;29760:6;29757:1;29754:13;29751:48;;;-1:-1:-1;;29795:1:1;29777:16;;29770:27;29547:258::o;29810:136::-;29849:3;29877:5;29867:39;;29886:18;;:::i;:::-;-1:-1:-1;;;29922:18:1;;29810:136::o;29951:380::-;30030:1;30026:12;;;;30073;;;30094:61;;30148:4;30140:6;30136:17;30126:27;;30094:61;30201:2;30193:6;30190:14;30170:18;30167:38;30164:161;;;30247:10;30242:3;30238:20;30235:1;30228:31;30282:4;30279:1;30272:15;30310:4;30307:1;30300:15;30336:135;30375:3;-1:-1:-1;;30396:17:1;;30393:43;;;30416:18;;:::i;:::-;-1:-1:-1;30463:1:1;30452:13;;30336:135::o;30476:112::-;30508:1;30534;30524:35;;30539:18;;:::i;:::-;-1:-1:-1;30573:9:1;;30476:112::o;30593:157::-;30623:1;30657:4;30654:1;30650:12;30681:3;30671:37;;30688:18;;:::i;:::-;30740:3;30733:4;30730:1;30726:12;30722:22;30717:27;;;30593:157;;;;:::o;30755:127::-;30816:10;30811:3;30807:20;30804:1;30797:31;30847:4;30844:1;30837:15;30871:4;30868:1;30861:15;30887:127;30948:10;30943:3;30939:20;30936:1;30929:31;30979:4;30976:1;30969:15;31003:4;31000:1;30993:15;31019:127;31080:10;31075:3;31071:20;31068:1;31061:31;31111:4;31108:1;31101:15;31135:4;31132:1;31125:15;31151:127;31212:10;31207:3;31203:20;31200:1;31193:31;31243:4;31240:1;31233:15;31267:4;31264:1;31257:15;31283:131;-1:-1:-1;;;;;;31357:32:1;;31347:43;;31337:71;;31404:1;31401;31394:12

Swarm Source

ipfs://7731e5b59f376b218fb33e720fe6624498b74eb92b1ff7008b875e2e517de784
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.