ETH Price: $3,437.80 (-0.52%)
Gas: 3 Gwei

Token

Fish-tank NFT (FISH-TANK)
 

Overview

Max Total Supply

1,111 FISH-TANK

Holders

264

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rybskey.eth
Balance
2 FISH-TANK
0x36cb7898012e3b19070554be377f7c0e708be229
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The GENESIS FISH is a collection of 1111 unique Fish NFTs living on the ETH blockchain. A motley crew of digital artists, game and blockchain developers as well as marketing specialists came together to develop fish-tank.io.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GenesisFish

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-01
*/

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/Projects/Fishtank/GenesisFish.sol


pragma solidity ^0.8.0;



contract GenesisFish is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string _baseTokenURI;
    uint256 private _totalMint = 1111;
    uint256 private _reserved = 50;
    uint256 private _privatePrice = 0.06 ether;
    uint256 private _publicPrice = 0.09 ether;
     
    address[] teamMembers = 
    [
        0xABDC5A6564AD23fd00ea1506039c7F183afB3f79,
        0x1F6d692D99a67dC96e4e5808a951007da64b2626,
        0x2f9D189fCeecE604910e422823F97295E54B1146,
        0x6D2861bA9DfaeA85e67B7e624C5B2619E8326636,
        0xf839Df16281Bd359DE95aF1469a30af8E5cCA19b,
        0x1826cd96604A6A159CA59c19365AddBf531c37C6,
        0x0070D3c8F717A36055B6D9221487fC8faDF2CC2a,
        0xF37db1D8bB5833B60121b994a3cF5A74CD0F6A90,
        0xEa87cd8dEb1Cf95e4e44d6cACE7B80F48b4ccF75,
        0x5C9282DC21d2cbDBa4007e8032Ec33455aD8c191,
        0xAEDdb365B2DaE66960A207c1DE9f1a6cB0E00676,
        0x93d7786dB4C54c8497B8EF81952B67b69446e2D9,
        0x37136d75a8D3A2d7E431aD731Db13258FeBd14ba,
        0xd2AC22997C23401a45578016D6C617f954Fe4746,
        0xA33e155EE5fBbEa12319B60C8922B7C250Bd49Ac,
        0x9c25f7090900d633ad145a425F91cE9a51Af03C7,
        0xc2f170c528C35D572acB49feeAE4E63757A404c4,
        0x843F0096685309Af473C3b3da32dc89E7FDa8D6A,
        0xdB692f06cE704d964530fa951cb565f5cbA3f696
    ];
 
    uint teamMembersLength = 19;
    
    bool preSale = false;
    bool publicSale = false;
    
    constructor() ERC721("Fish-tank NFT", "FISH-TANK")  {
   
    }
    
    function teamMint() public onlyOwner{
        
         _safeMint(msg.sender,0);
        uint256 supply = totalSupply();
        
         //TeamMint
        for(uint256 i; i < teamMembersLength; i++){
            _safeMint( teamMembers[i], supply + i );
        }
    }
    
    function mint(uint256 num) public payable  {
        uint256 supply = totalSupply();
        uint256 maxMint = MaxMint();
        uint price = MintPrice();
        
        //require( !_paused,                              "Sale paused" );
        require( IsAllowed(),                 "You are not allowed to mint");
        require( num <= maxMint,                         "You cannot mint that much fish");
        require( supply + num <= 1111 - _reserved,       "There is no fish anymore");
        require( msg.value >= price * num,             "Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }
    
    function startPresale() public onlyOwner{
        preSale = true;
    }
    
    function startPublicSale() public onlyOwner {
        preSale = false;
        publicSale = true;
    }
    
    function IsAllowed() public view returns (bool _isAllowed){
        if(publicSale) return true;
        else if(preSale) return  true;
        return false;
    }
    
    function MintPrice()public view returns (uint256 _price){
         if(preSale) return  _privatePrice;
         return _publicPrice;
    }
    
    function MaxMint()public pure returns (uint256 _maxMint){
        return 10;
    }
   
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        require( _amount <= _reserved, "Exceeds reserved fish supply" );

        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }

        _reserved -= _amount;
    }

    function withdraw( ) public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
   
    function getTokenIds(address  _owner) public view returns (uint256[] memory tokenIds)
    {
        uint256 supply = totalSupply();
        uint256[] memory result = new uint256[](balanceOf(_owner));
        uint256 counter=0;
        for (uint256 i = 0; i < supply; i++) 
        {
            if (ownerOf(i) == _owner) 
            {
                result[counter] = i;
                counter++;
            }
        }
        return result;
    }
}

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":"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":[],"name":"IsAllowed","outputs":[{"internalType":"bool","name":"_isAllowed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxMint","outputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"MintPrice","outputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIds","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","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":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610457600c556032600d5566d529ae9e860000600e5567013fbe85edc90000600f5560405180610260016040528073abdc5a6564ad23fd00ea1506039c7f183afb3f7973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001731f6d692d99a67dc96e4e5808a951007da64b262673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001732f9d189fceece604910e422823f97295e54b114673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001736d2861ba9dfaea85e67b7e624c5b2619e832663673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173f839df16281bd359de95af1469a30af8e5cca19b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001731826cd96604a6a159ca59c19365addbf531c37c673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017270d3c8f717a36055b6d9221487fc8fadf2cc2a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173f37db1d8bb5833b60121b994a3cf5a74cd0f6a9073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173ea87cd8deb1cf95e4e44d6cace7b80f48b4ccf7573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001735c9282dc21d2cbdba4007e8032ec33455ad8c19173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173aeddb365b2dae66960a207c1de9f1a6cb0e0067673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017393d7786db4c54c8497b8ef81952b67b69446e2d973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017337136d75a8d3a2d7e431ad731db13258febd14ba73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173d2ac22997c23401a45578016d6c617f954fe474673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173a33e155ee5fbbea12319b60c8922b7c250bd49ac73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001739c25f7090900d633ad145a425f91ce9a51af03c773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173c2f170c528c35d572acb49feeae4e63757a404c473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173843f0096685309af473c3b3da32dc89e7fda8d6a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173db692f06ce704d964530fa951cb565f5cba3f69673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525060109060136200057392919062000751565b5060136011556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff021916908315150217905550348015620005bc57600080fd5b506040518060400160405280600d81526020017f466973682d74616e6b204e4654000000000000000000000000000000000000008152506040518060400160405280600981526020017f464953482d54414e4b0000000000000000000000000000000000000000000000815250816000908051906020019062000641929190620007e0565b5080600190805190602001906200065a929190620007e0565b5050506200067d620006716200068360201b60201c565b6200068b60201b60201c565b620008f5565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054828255906000526020600020908101928215620007cd579160200282015b82811115620007cc5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000772565b5b509050620007dc919062000871565b5090565b828054620007ee9062000890565b90600052602060002090601f0160209004810192826200081257600085556200085e565b82601f106200082d57805160ff19168380011785556200085e565b828001600101855582156200085e579182015b828111156200085d57825182559160200191906001019062000840565b5b5090506200086d919062000871565b5090565b5b808211156200088c57600081600090555060010162000872565b5090565b60006002820490506001821680620008a957607f821691505b60208210811415620008c057620008bf620008c6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6142dc80620009056000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063d004b03611610064578063d004b0361461062d578063e985e9c51461066a578063f2fde38b146106a7578063fdbf9ef2146106d0576101cd565b8063b88d4fde14610587578063ba7a86b8146105b0578063c87b56dd146105c7578063ca80014414610604576101cd565b806394f74396116100d157806394f74396146104ec57806395d89b4114610517578063a0712d6814610542578063a22cb4651461055e576101cd565b806370a082311461046d578063715018a6146104aa5780638da5cb5b146104c1576101cd565b806318160ddd1161016f57806342842e0e1161013e57806342842e0e146103a15780634f6ccce7146103ca57806355f804b3146104075780636352211e14610430576101cd565b806318160ddd146102f957806323b872dd146103245780632f745c591461034d5780633ccfd60b1461038a576101cd565b8063075b1fcd116101ab578063075b1fcd14610251578063081812fc1461027c578063095ea7b3146102b95780630c1c972a146102e2576101cd565b806301ffc9a7146101d257806304c98b2b1461020f57806306fdde0314610226575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e6e565b6106fb565b6040516102069190613465565b60405180910390f35b34801561021b57600080fd5b50610224610775565b005b34801561023257600080fd5b5061023b61080e565b6040516102489190613480565b60405180910390f35b34801561025d57600080fd5b506102666108a0565b6040516102739190613465565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f11565b6108e6565b6040516102b091906133dc565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612e2e565b61096b565b005b3480156102ee57600080fd5b506102f7610a83565b005b34801561030557600080fd5b5061030e610b37565b60405161031b9190613782565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190612d18565b610b44565b005b34801561035957600080fd5b50610374600480360381019061036f9190612e2e565b610ba4565b6040516103819190613782565b60405180910390f35b34801561039657600080fd5b5061039f610c49565b005b3480156103ad57600080fd5b506103c860048036038101906103c39190612d18565b610d14565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612f11565b610d34565b6040516103fe9190613782565b60405180910390f35b34801561041357600080fd5b5061042e60048036038101906104299190612ec8565b610da5565b005b34801561043c57600080fd5b5061045760048036038101906104529190612f11565b610e3b565b60405161046491906133dc565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190612cab565b610eed565b6040516104a19190613782565b60405180910390f35b3480156104b657600080fd5b506104bf610fa5565b005b3480156104cd57600080fd5b506104d661102d565b6040516104e391906133dc565b60405180910390f35b3480156104f857600080fd5b50610501611057565b60405161050e9190613782565b60405180910390f35b34801561052357600080fd5b5061052c611060565b6040516105399190613480565b60405180910390f35b61055c60048036038101906105579190612f11565b6110f2565b005b34801561056a57600080fd5b5061058560048036038101906105809190612dee565b611285565b005b34801561059357600080fd5b506105ae60048036038101906105a99190612d6b565b611406565b005b3480156105bc57600080fd5b506105c5611468565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190612f11565b611572565b6040516105fb9190613480565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190612e2e565b611619565b005b34801561063957600080fd5b50610654600480360381019061064f9190612cab565b611738565b6040516106619190613443565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612cd8565b611831565b60405161069e9190613465565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190612cab565b6118c5565b005b3480156106dc57600080fd5b506106e56119bd565b6040516106f29190613782565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076e575061076d826119e7565b5b9050919050565b61077d611ac9565b73ffffffffffffffffffffffffffffffffffffffff1661079b61102d565b73ffffffffffffffffffffffffffffffffffffffff16146107f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e890613682565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550565b60606000805461081d90613a6b565b80601f016020809104026020016040519081016040528092919081815260200182805461084990613a6b565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b5050505050905090565b6000601260019054906101000a900460ff16156108c057600190506108e3565b601260009054906101000a900460ff16156108de57600190506108e3565b600090505b90565b60006108f182611ad1565b610930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092790613662565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097682610e3b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de906136e2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a06611ac9565b73ffffffffffffffffffffffffffffffffffffffff161480610a355750610a3481610a2f611ac9565b611831565b5b610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b906135e2565b60405180910390fd5b610a7e8383611b3d565b505050565b610a8b611ac9565b73ffffffffffffffffffffffffffffffffffffffff16610aa961102d565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613682565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550565b6000600880549050905090565b610b55610b4f611ac9565b82611bf6565b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90613742565b60405180910390fd5b610b9f838383611cd4565b505050565b6000610baf83610eed565b8210610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be7906134e2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c51611ac9565b73ffffffffffffffffffffffffffffffffffffffff16610c6f61102d565b73ffffffffffffffffffffffffffffffffffffffff1614610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90613682565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d10573d6000803e3d6000fd5b5050565b610d2f83838360405180602001604052806000815250611406565b505050565b6000610d3e610b37565b8210610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690613762565b60405180910390fd5b60088281548110610d9357610d92613c04565b5b90600052602060002001549050919050565b610dad611ac9565b73ffffffffffffffffffffffffffffffffffffffff16610dcb61102d565b73ffffffffffffffffffffffffffffffffffffffff1614610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890613682565b60405180910390fd5b80600b9080519060200190610e37929190612abf565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90613622565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590613602565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fad611ac9565b73ffffffffffffffffffffffffffffffffffffffff16610fcb61102d565b73ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890613682565b60405180910390fd5b61102b6000611f30565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a905090565b60606001805461106f90613a6b565b80601f016020809104026020016040519081016040528092919081815260200182805461109b90613a6b565b80156110e85780601f106110bd576101008083540402835291602001916110e8565b820191906000526020600020905b8154815290600101906020018083116110cb57829003601f168201915b5050505050905090565b60006110fc610b37565b90506000611108611057565b905060006111146119bd565b905061111e6108a0565b61115d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611154906134a2565b60405180910390fd5b818411156111a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611197906134c2565b60405180910390fd5b600d546104576111b09190613981565b84846111bc91906138a0565b11156111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613562565b60405180910390fd5b83816112099190613927565b34101561124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290613702565b60405180910390fd5b60005b8481101561127e5761126b33828661126691906138a0565b611ff6565b808061127690613ace565b91505061124e565b5050505050565b61128d611ac9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f2906135a2565b60405180910390fd5b8060056000611308611ac9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b5611ac9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fa9190613465565b60405180910390a35050565b611417611411611ac9565b83611bf6565b611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613742565b60405180910390fd5b61146284848484612014565b50505050565b611470611ac9565b73ffffffffffffffffffffffffffffffffffffffff1661148e61102d565b73ffffffffffffffffffffffffffffffffffffffff16146114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db90613682565b60405180910390fd5b6114ef336000611ff6565b60006114f9610b37565b905060005b60115481101561156e5761155b6010828154811061151f5761151e613c04565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828461155691906138a0565b611ff6565b808061156690613ace565b9150506114fe565b5050565b606061157d82611ad1565b6115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b3906136c2565b60405180910390fd5b60006115c6612070565b905060008151116115e65760405180602001604052806000815250611611565b806115f084612102565b6040516020016116019291906133b8565b6040516020818303038152906040525b915050919050565b611621611ac9565b73ffffffffffffffffffffffffffffffffffffffff1661163f61102d565b73ffffffffffffffffffffffffffffffffffffffff1614611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90613682565b60405180910390fd5b600d548111156116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190613722565b60405180910390fd5b60006116e4610b37565b905060005b828110156117195761170684828461170191906138a0565b611ff6565b808061171190613ace565b9150506116e9565b5081600d600082825461172c9190613981565b92505081905550505050565b60606000611744610b37565b9050600061175184610eed565b67ffffffffffffffff81111561176a57611769613c33565b5b6040519080825280602002602001820160405280156117985781602001602082028036833780820191505090505b5090506000805b83811015611825578573ffffffffffffffffffffffffffffffffffffffff166117c782610e3b565b73ffffffffffffffffffffffffffffffffffffffff16141561181257808383815181106117f7576117f6613c04565b5b602002602001018181525050818061180e90613ace565b9250505b808061181d90613ace565b91505061179f565b50819350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118cd611ac9565b73ffffffffffffffffffffffffffffffffffffffff166118eb61102d565b73ffffffffffffffffffffffffffffffffffffffff1614611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890613682565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890613522565b60405180910390fd5b6119ba81611f30565b50565b6000601260009054906101000a900460ff16156119de57600e5490506119e4565b600f5490505b90565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ab257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ac25750611ac182612263565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bb083610e3b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c0182611ad1565b611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c37906135c2565b60405180910390fd5b6000611c4b83610e3b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cba57508373ffffffffffffffffffffffffffffffffffffffff16611ca2846108e6565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ccb5750611cca8185611831565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cf482610e3b565b73ffffffffffffffffffffffffffffffffffffffff1614611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d41906136a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613582565b60405180910390fd5b611dc58383836122cd565b611dd0600082611b3d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e209190613981565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e7791906138a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120108282604051806020016040528060008152506123e1565b5050565b61201f848484611cd4565b61202b8484848461243c565b61206a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206190613502565b60405180910390fd5b50505050565b6060600b805461207f90613a6b565b80601f01602080910402602001604051908101604052809291908181526020018280546120ab90613a6b565b80156120f85780601f106120cd576101008083540402835291602001916120f8565b820191906000526020600020905b8154815290600101906020018083116120db57829003601f168201915b5050505050905090565b6060600082141561214a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061225e565b600082905060005b6000821461217c57808061216590613ace565b915050600a8261217591906138f6565b9150612152565b60008167ffffffffffffffff81111561219857612197613c33565b5b6040519080825280601f01601f1916602001820160405280156121ca5781602001600182028036833780820191505090505b5090505b60008514612257576001826121e39190613981565b9150600a856121f29190613b17565b60306121fe91906138a0565b60f81b81838151811061221457612213613c04565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561225091906138f6565b94506121ce565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122d88383836125d3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561231b57612316816125d8565b61235a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612359576123588382612621565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239d576123988161278e565b6123dc565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123db576123da828261285f565b5b5b505050565b6123eb83836128de565b6123f8600084848461243c565b612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90613502565b60405180910390fd5b505050565b600061245d8473ffffffffffffffffffffffffffffffffffffffff16612aac565b156125c6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612486611ac9565b8786866040518563ffffffff1660e01b81526004016124a894939291906133f7565b602060405180830381600087803b1580156124c257600080fd5b505af19250505080156124f357506040513d601f19601f820116820180604052508101906124f09190612e9b565b60015b612576573d8060008114612523576040519150601f19603f3d011682016040523d82523d6000602084013e612528565b606091505b5060008151141561256e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256590613502565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125cb565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161262e84610eed565b6126389190613981565b905060006007600084815260200190815260200160002054905081811461271d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127a29190613981565b90506000600960008481526020019081526020016000205490506000600883815481106127d2576127d1613c04565b5b9060005260206000200154905080600883815481106127f4576127f3613c04565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061284357612842613bd5565b5b6001900381819060005260206000200160009055905550505050565b600061286a83610eed565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561294e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294590613642565b60405180910390fd5b61295781611ad1565b15612997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298e90613542565b60405180910390fd5b6129a3600083836122cd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129f391906138a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612acb90613a6b565b90600052602060002090601f016020900481019282612aed5760008555612b34565b82601f10612b0657805160ff1916838001178555612b34565b82800160010185558215612b34579182015b82811115612b33578251825591602001919060010190612b18565b5b509050612b419190612b45565b5090565b5b80821115612b5e576000816000905550600101612b46565b5090565b6000612b75612b70846137c2565b61379d565b905082815260208101848484011115612b9157612b90613c67565b5b612b9c848285613a29565b509392505050565b6000612bb7612bb2846137f3565b61379d565b905082815260208101848484011115612bd357612bd2613c67565b5b612bde848285613a29565b509392505050565b600081359050612bf58161424a565b92915050565b600081359050612c0a81614261565b92915050565b600081359050612c1f81614278565b92915050565b600081519050612c3481614278565b92915050565b600082601f830112612c4f57612c4e613c62565b5b8135612c5f848260208601612b62565b91505092915050565b600082601f830112612c7d57612c7c613c62565b5b8135612c8d848260208601612ba4565b91505092915050565b600081359050612ca58161428f565b92915050565b600060208284031215612cc157612cc0613c71565b5b6000612ccf84828501612be6565b91505092915050565b60008060408385031215612cef57612cee613c71565b5b6000612cfd85828601612be6565b9250506020612d0e85828601612be6565b9150509250929050565b600080600060608486031215612d3157612d30613c71565b5b6000612d3f86828701612be6565b9350506020612d5086828701612be6565b9250506040612d6186828701612c96565b9150509250925092565b60008060008060808587031215612d8557612d84613c71565b5b6000612d9387828801612be6565b9450506020612da487828801612be6565b9350506040612db587828801612c96565b925050606085013567ffffffffffffffff811115612dd657612dd5613c6c565b5b612de287828801612c3a565b91505092959194509250565b60008060408385031215612e0557612e04613c71565b5b6000612e1385828601612be6565b9250506020612e2485828601612bfb565b9150509250929050565b60008060408385031215612e4557612e44613c71565b5b6000612e5385828601612be6565b9250506020612e6485828601612c96565b9150509250929050565b600060208284031215612e8457612e83613c71565b5b6000612e9284828501612c10565b91505092915050565b600060208284031215612eb157612eb0613c71565b5b6000612ebf84828501612c25565b91505092915050565b600060208284031215612ede57612edd613c71565b5b600082013567ffffffffffffffff811115612efc57612efb613c6c565b5b612f0884828501612c68565b91505092915050565b600060208284031215612f2757612f26613c71565b5b6000612f3584828501612c96565b91505092915050565b6000612f4a838361339a565b60208301905092915050565b612f5f816139b5565b82525050565b6000612f7082613834565b612f7a8185613862565b9350612f8583613824565b8060005b83811015612fb6578151612f9d8882612f3e565b9750612fa883613855565b925050600181019050612f89565b5085935050505092915050565b612fcc816139c7565b82525050565b6000612fdd8261383f565b612fe78185613873565b9350612ff7818560208601613a38565b61300081613c76565b840191505092915050565b60006130168261384a565b6130208185613884565b9350613030818560208601613a38565b61303981613c76565b840191505092915050565b600061304f8261384a565b6130598185613895565b9350613069818560208601613a38565b80840191505092915050565b6000613082601b83613884565b915061308d82613c87565b602082019050919050565b60006130a5601e83613884565b91506130b082613cb0565b602082019050919050565b60006130c8602b83613884565b91506130d382613cd9565b604082019050919050565b60006130eb603283613884565b91506130f682613d28565b604082019050919050565b600061310e602683613884565b915061311982613d77565b604082019050919050565b6000613131601c83613884565b915061313c82613dc6565b602082019050919050565b6000613154601883613884565b915061315f82613def565b602082019050919050565b6000613177602483613884565b915061318282613e18565b604082019050919050565b600061319a601983613884565b91506131a582613e67565b602082019050919050565b60006131bd602c83613884565b91506131c882613e90565b604082019050919050565b60006131e0603883613884565b91506131eb82613edf565b604082019050919050565b6000613203602a83613884565b915061320e82613f2e565b604082019050919050565b6000613226602983613884565b915061323182613f7d565b604082019050919050565b6000613249602083613884565b915061325482613fcc565b602082019050919050565b600061326c602c83613884565b915061327782613ff5565b604082019050919050565b600061328f602083613884565b915061329a82614044565b602082019050919050565b60006132b2602983613884565b91506132bd8261406d565b604082019050919050565b60006132d5602f83613884565b91506132e0826140bc565b604082019050919050565b60006132f8602183613884565b91506133038261410b565b604082019050919050565b600061331b601983613884565b91506133268261415a565b602082019050919050565b600061333e601c83613884565b915061334982614183565b602082019050919050565b6000613361603183613884565b915061336c826141ac565b604082019050919050565b6000613384602c83613884565b915061338f826141fb565b604082019050919050565b6133a381613a1f565b82525050565b6133b281613a1f565b82525050565b60006133c48285613044565b91506133d08284613044565b91508190509392505050565b60006020820190506133f16000830184612f56565b92915050565b600060808201905061340c6000830187612f56565b6134196020830186612f56565b61342660408301856133a9565b81810360608301526134388184612fd2565b905095945050505050565b6000602082019050818103600083015261345d8184612f65565b905092915050565b600060208201905061347a6000830184612fc3565b92915050565b6000602082019050818103600083015261349a818461300b565b905092915050565b600060208201905081810360008301526134bb81613075565b9050919050565b600060208201905081810360008301526134db81613098565b9050919050565b600060208201905081810360008301526134fb816130bb565b9050919050565b6000602082019050818103600083015261351b816130de565b9050919050565b6000602082019050818103600083015261353b81613101565b9050919050565b6000602082019050818103600083015261355b81613124565b9050919050565b6000602082019050818103600083015261357b81613147565b9050919050565b6000602082019050818103600083015261359b8161316a565b9050919050565b600060208201905081810360008301526135bb8161318d565b9050919050565b600060208201905081810360008301526135db816131b0565b9050919050565b600060208201905081810360008301526135fb816131d3565b9050919050565b6000602082019050818103600083015261361b816131f6565b9050919050565b6000602082019050818103600083015261363b81613219565b9050919050565b6000602082019050818103600083015261365b8161323c565b9050919050565b6000602082019050818103600083015261367b8161325f565b9050919050565b6000602082019050818103600083015261369b81613282565b9050919050565b600060208201905081810360008301526136bb816132a5565b9050919050565b600060208201905081810360008301526136db816132c8565b9050919050565b600060208201905081810360008301526136fb816132eb565b9050919050565b6000602082019050818103600083015261371b8161330e565b9050919050565b6000602082019050818103600083015261373b81613331565b9050919050565b6000602082019050818103600083015261375b81613354565b9050919050565b6000602082019050818103600083015261377b81613377565b9050919050565b600060208201905061379760008301846133a9565b92915050565b60006137a76137b8565b90506137b38282613a9d565b919050565b6000604051905090565b600067ffffffffffffffff8211156137dd576137dc613c33565b5b6137e682613c76565b9050602081019050919050565b600067ffffffffffffffff82111561380e5761380d613c33565b5b61381782613c76565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138ab82613a1f565b91506138b683613a1f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138eb576138ea613b48565b5b828201905092915050565b600061390182613a1f565b915061390c83613a1f565b92508261391c5761391b613b77565b5b828204905092915050565b600061393282613a1f565b915061393d83613a1f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561397657613975613b48565b5b828202905092915050565b600061398c82613a1f565b915061399783613a1f565b9250828210156139aa576139a9613b48565b5b828203905092915050565b60006139c0826139ff565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a56578082015181840152602081019050613a3b565b83811115613a65576000848401525b50505050565b60006002820490506001821680613a8357607f821691505b60208210811415613a9757613a96613ba6565b5b50919050565b613aa682613c76565b810181811067ffffffffffffffff82111715613ac557613ac4613c33565b5b80604052505050565b6000613ad982613a1f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b0c57613b0b613b48565b5b600182019050919050565b6000613b2282613a1f565b9150613b2d83613a1f565b925082613b3d57613b3c613b77565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7520617265206e6f7420616c6c6f77656420746f206d696e740000000000600082015250565b7f596f752063616e6e6f74206d696e742074686174206d75636820666973680000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5468657265206973206e6f206669736820616e796d6f72650000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f45786365656473207265736572766564206669736820737570706c7900000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614253816139b5565b811461425e57600080fd5b50565b61426a816139c7565b811461427557600080fd5b50565b614281816139d3565b811461428c57600080fd5b50565b61429881613a1f565b81146142a357600080fd5b5056fea2646970667358221220f72c48609dadbed2d01a1f5e1ea982626186aeba3a62444adf54731cf34147c764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063d004b03611610064578063d004b0361461062d578063e985e9c51461066a578063f2fde38b146106a7578063fdbf9ef2146106d0576101cd565b8063b88d4fde14610587578063ba7a86b8146105b0578063c87b56dd146105c7578063ca80014414610604576101cd565b806394f74396116100d157806394f74396146104ec57806395d89b4114610517578063a0712d6814610542578063a22cb4651461055e576101cd565b806370a082311461046d578063715018a6146104aa5780638da5cb5b146104c1576101cd565b806318160ddd1161016f57806342842e0e1161013e57806342842e0e146103a15780634f6ccce7146103ca57806355f804b3146104075780636352211e14610430576101cd565b806318160ddd146102f957806323b872dd146103245780632f745c591461034d5780633ccfd60b1461038a576101cd565b8063075b1fcd116101ab578063075b1fcd14610251578063081812fc1461027c578063095ea7b3146102b95780630c1c972a146102e2576101cd565b806301ffc9a7146101d257806304c98b2b1461020f57806306fdde0314610226575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e6e565b6106fb565b6040516102069190613465565b60405180910390f35b34801561021b57600080fd5b50610224610775565b005b34801561023257600080fd5b5061023b61080e565b6040516102489190613480565b60405180910390f35b34801561025d57600080fd5b506102666108a0565b6040516102739190613465565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f11565b6108e6565b6040516102b091906133dc565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612e2e565b61096b565b005b3480156102ee57600080fd5b506102f7610a83565b005b34801561030557600080fd5b5061030e610b37565b60405161031b9190613782565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190612d18565b610b44565b005b34801561035957600080fd5b50610374600480360381019061036f9190612e2e565b610ba4565b6040516103819190613782565b60405180910390f35b34801561039657600080fd5b5061039f610c49565b005b3480156103ad57600080fd5b506103c860048036038101906103c39190612d18565b610d14565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612f11565b610d34565b6040516103fe9190613782565b60405180910390f35b34801561041357600080fd5b5061042e60048036038101906104299190612ec8565b610da5565b005b34801561043c57600080fd5b5061045760048036038101906104529190612f11565b610e3b565b60405161046491906133dc565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190612cab565b610eed565b6040516104a19190613782565b60405180910390f35b3480156104b657600080fd5b506104bf610fa5565b005b3480156104cd57600080fd5b506104d661102d565b6040516104e391906133dc565b60405180910390f35b3480156104f857600080fd5b50610501611057565b60405161050e9190613782565b60405180910390f35b34801561052357600080fd5b5061052c611060565b6040516105399190613480565b60405180910390f35b61055c60048036038101906105579190612f11565b6110f2565b005b34801561056a57600080fd5b5061058560048036038101906105809190612dee565b611285565b005b34801561059357600080fd5b506105ae60048036038101906105a99190612d6b565b611406565b005b3480156105bc57600080fd5b506105c5611468565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190612f11565b611572565b6040516105fb9190613480565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190612e2e565b611619565b005b34801561063957600080fd5b50610654600480360381019061064f9190612cab565b611738565b6040516106619190613443565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612cd8565b611831565b60405161069e9190613465565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190612cab565b6118c5565b005b3480156106dc57600080fd5b506106e56119bd565b6040516106f29190613782565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076e575061076d826119e7565b5b9050919050565b61077d611ac9565b73ffffffffffffffffffffffffffffffffffffffff1661079b61102d565b73ffffffffffffffffffffffffffffffffffffffff16146107f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e890613682565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550565b60606000805461081d90613a6b565b80601f016020809104026020016040519081016040528092919081815260200182805461084990613a6b565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b5050505050905090565b6000601260019054906101000a900460ff16156108c057600190506108e3565b601260009054906101000a900460ff16156108de57600190506108e3565b600090505b90565b60006108f182611ad1565b610930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092790613662565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097682610e3b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de906136e2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a06611ac9565b73ffffffffffffffffffffffffffffffffffffffff161480610a355750610a3481610a2f611ac9565b611831565b5b610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b906135e2565b60405180910390fd5b610a7e8383611b3d565b505050565b610a8b611ac9565b73ffffffffffffffffffffffffffffffffffffffff16610aa961102d565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613682565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550565b6000600880549050905090565b610b55610b4f611ac9565b82611bf6565b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90613742565b60405180910390fd5b610b9f838383611cd4565b505050565b6000610baf83610eed565b8210610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be7906134e2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c51611ac9565b73ffffffffffffffffffffffffffffffffffffffff16610c6f61102d565b73ffffffffffffffffffffffffffffffffffffffff1614610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90613682565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d10573d6000803e3d6000fd5b5050565b610d2f83838360405180602001604052806000815250611406565b505050565b6000610d3e610b37565b8210610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690613762565b60405180910390fd5b60088281548110610d9357610d92613c04565b5b90600052602060002001549050919050565b610dad611ac9565b73ffffffffffffffffffffffffffffffffffffffff16610dcb61102d565b73ffffffffffffffffffffffffffffffffffffffff1614610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890613682565b60405180910390fd5b80600b9080519060200190610e37929190612abf565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90613622565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590613602565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fad611ac9565b73ffffffffffffffffffffffffffffffffffffffff16610fcb61102d565b73ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890613682565b60405180910390fd5b61102b6000611f30565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a905090565b60606001805461106f90613a6b565b80601f016020809104026020016040519081016040528092919081815260200182805461109b90613a6b565b80156110e85780601f106110bd576101008083540402835291602001916110e8565b820191906000526020600020905b8154815290600101906020018083116110cb57829003601f168201915b5050505050905090565b60006110fc610b37565b90506000611108611057565b905060006111146119bd565b905061111e6108a0565b61115d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611154906134a2565b60405180910390fd5b818411156111a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611197906134c2565b60405180910390fd5b600d546104576111b09190613981565b84846111bc91906138a0565b11156111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613562565b60405180910390fd5b83816112099190613927565b34101561124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290613702565b60405180910390fd5b60005b8481101561127e5761126b33828661126691906138a0565b611ff6565b808061127690613ace565b91505061124e565b5050505050565b61128d611ac9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f2906135a2565b60405180910390fd5b8060056000611308611ac9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b5611ac9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fa9190613465565b60405180910390a35050565b611417611411611ac9565b83611bf6565b611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613742565b60405180910390fd5b61146284848484612014565b50505050565b611470611ac9565b73ffffffffffffffffffffffffffffffffffffffff1661148e61102d565b73ffffffffffffffffffffffffffffffffffffffff16146114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db90613682565b60405180910390fd5b6114ef336000611ff6565b60006114f9610b37565b905060005b60115481101561156e5761155b6010828154811061151f5761151e613c04565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828461155691906138a0565b611ff6565b808061156690613ace565b9150506114fe565b5050565b606061157d82611ad1565b6115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b3906136c2565b60405180910390fd5b60006115c6612070565b905060008151116115e65760405180602001604052806000815250611611565b806115f084612102565b6040516020016116019291906133b8565b6040516020818303038152906040525b915050919050565b611621611ac9565b73ffffffffffffffffffffffffffffffffffffffff1661163f61102d565b73ffffffffffffffffffffffffffffffffffffffff1614611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90613682565b60405180910390fd5b600d548111156116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190613722565b60405180910390fd5b60006116e4610b37565b905060005b828110156117195761170684828461170191906138a0565b611ff6565b808061171190613ace565b9150506116e9565b5081600d600082825461172c9190613981565b92505081905550505050565b60606000611744610b37565b9050600061175184610eed565b67ffffffffffffffff81111561176a57611769613c33565b5b6040519080825280602002602001820160405280156117985781602001602082028036833780820191505090505b5090506000805b83811015611825578573ffffffffffffffffffffffffffffffffffffffff166117c782610e3b565b73ffffffffffffffffffffffffffffffffffffffff16141561181257808383815181106117f7576117f6613c04565b5b602002602001018181525050818061180e90613ace565b9250505b808061181d90613ace565b91505061179f565b50819350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118cd611ac9565b73ffffffffffffffffffffffffffffffffffffffff166118eb61102d565b73ffffffffffffffffffffffffffffffffffffffff1614611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890613682565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890613522565b60405180910390fd5b6119ba81611f30565b50565b6000601260009054906101000a900460ff16156119de57600e5490506119e4565b600f5490505b90565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ab257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ac25750611ac182612263565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bb083610e3b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c0182611ad1565b611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c37906135c2565b60405180910390fd5b6000611c4b83610e3b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cba57508373ffffffffffffffffffffffffffffffffffffffff16611ca2846108e6565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ccb5750611cca8185611831565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cf482610e3b565b73ffffffffffffffffffffffffffffffffffffffff1614611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d41906136a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613582565b60405180910390fd5b611dc58383836122cd565b611dd0600082611b3d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e209190613981565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e7791906138a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120108282604051806020016040528060008152506123e1565b5050565b61201f848484611cd4565b61202b8484848461243c565b61206a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206190613502565b60405180910390fd5b50505050565b6060600b805461207f90613a6b565b80601f01602080910402602001604051908101604052809291908181526020018280546120ab90613a6b565b80156120f85780601f106120cd576101008083540402835291602001916120f8565b820191906000526020600020905b8154815290600101906020018083116120db57829003601f168201915b5050505050905090565b6060600082141561214a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061225e565b600082905060005b6000821461217c57808061216590613ace565b915050600a8261217591906138f6565b9150612152565b60008167ffffffffffffffff81111561219857612197613c33565b5b6040519080825280601f01601f1916602001820160405280156121ca5781602001600182028036833780820191505090505b5090505b60008514612257576001826121e39190613981565b9150600a856121f29190613b17565b60306121fe91906138a0565b60f81b81838151811061221457612213613c04565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561225091906138f6565b94506121ce565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122d88383836125d3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561231b57612316816125d8565b61235a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612359576123588382612621565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239d576123988161278e565b6123dc565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123db576123da828261285f565b5b5b505050565b6123eb83836128de565b6123f8600084848461243c565b612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90613502565b60405180910390fd5b505050565b600061245d8473ffffffffffffffffffffffffffffffffffffffff16612aac565b156125c6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612486611ac9565b8786866040518563ffffffff1660e01b81526004016124a894939291906133f7565b602060405180830381600087803b1580156124c257600080fd5b505af19250505080156124f357506040513d601f19601f820116820180604052508101906124f09190612e9b565b60015b612576573d8060008114612523576040519150601f19603f3d011682016040523d82523d6000602084013e612528565b606091505b5060008151141561256e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256590613502565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125cb565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161262e84610eed565b6126389190613981565b905060006007600084815260200190815260200160002054905081811461271d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127a29190613981565b90506000600960008481526020019081526020016000205490506000600883815481106127d2576127d1613c04565b5b9060005260206000200154905080600883815481106127f4576127f3613c04565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061284357612842613bd5565b5b6001900381819060005260206000200160009055905550505050565b600061286a83610eed565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561294e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294590613642565b60405180910390fd5b61295781611ad1565b15612997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298e90613542565b60405180910390fd5b6129a3600083836122cd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129f391906138a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612acb90613a6b565b90600052602060002090601f016020900481019282612aed5760008555612b34565b82601f10612b0657805160ff1916838001178555612b34565b82800160010185558215612b34579182015b82811115612b33578251825591602001919060010190612b18565b5b509050612b419190612b45565b5090565b5b80821115612b5e576000816000905550600101612b46565b5090565b6000612b75612b70846137c2565b61379d565b905082815260208101848484011115612b9157612b90613c67565b5b612b9c848285613a29565b509392505050565b6000612bb7612bb2846137f3565b61379d565b905082815260208101848484011115612bd357612bd2613c67565b5b612bde848285613a29565b509392505050565b600081359050612bf58161424a565b92915050565b600081359050612c0a81614261565b92915050565b600081359050612c1f81614278565b92915050565b600081519050612c3481614278565b92915050565b600082601f830112612c4f57612c4e613c62565b5b8135612c5f848260208601612b62565b91505092915050565b600082601f830112612c7d57612c7c613c62565b5b8135612c8d848260208601612ba4565b91505092915050565b600081359050612ca58161428f565b92915050565b600060208284031215612cc157612cc0613c71565b5b6000612ccf84828501612be6565b91505092915050565b60008060408385031215612cef57612cee613c71565b5b6000612cfd85828601612be6565b9250506020612d0e85828601612be6565b9150509250929050565b600080600060608486031215612d3157612d30613c71565b5b6000612d3f86828701612be6565b9350506020612d5086828701612be6565b9250506040612d6186828701612c96565b9150509250925092565b60008060008060808587031215612d8557612d84613c71565b5b6000612d9387828801612be6565b9450506020612da487828801612be6565b9350506040612db587828801612c96565b925050606085013567ffffffffffffffff811115612dd657612dd5613c6c565b5b612de287828801612c3a565b91505092959194509250565b60008060408385031215612e0557612e04613c71565b5b6000612e1385828601612be6565b9250506020612e2485828601612bfb565b9150509250929050565b60008060408385031215612e4557612e44613c71565b5b6000612e5385828601612be6565b9250506020612e6485828601612c96565b9150509250929050565b600060208284031215612e8457612e83613c71565b5b6000612e9284828501612c10565b91505092915050565b600060208284031215612eb157612eb0613c71565b5b6000612ebf84828501612c25565b91505092915050565b600060208284031215612ede57612edd613c71565b5b600082013567ffffffffffffffff811115612efc57612efb613c6c565b5b612f0884828501612c68565b91505092915050565b600060208284031215612f2757612f26613c71565b5b6000612f3584828501612c96565b91505092915050565b6000612f4a838361339a565b60208301905092915050565b612f5f816139b5565b82525050565b6000612f7082613834565b612f7a8185613862565b9350612f8583613824565b8060005b83811015612fb6578151612f9d8882612f3e565b9750612fa883613855565b925050600181019050612f89565b5085935050505092915050565b612fcc816139c7565b82525050565b6000612fdd8261383f565b612fe78185613873565b9350612ff7818560208601613a38565b61300081613c76565b840191505092915050565b60006130168261384a565b6130208185613884565b9350613030818560208601613a38565b61303981613c76565b840191505092915050565b600061304f8261384a565b6130598185613895565b9350613069818560208601613a38565b80840191505092915050565b6000613082601b83613884565b915061308d82613c87565b602082019050919050565b60006130a5601e83613884565b91506130b082613cb0565b602082019050919050565b60006130c8602b83613884565b91506130d382613cd9565b604082019050919050565b60006130eb603283613884565b91506130f682613d28565b604082019050919050565b600061310e602683613884565b915061311982613d77565b604082019050919050565b6000613131601c83613884565b915061313c82613dc6565b602082019050919050565b6000613154601883613884565b915061315f82613def565b602082019050919050565b6000613177602483613884565b915061318282613e18565b604082019050919050565b600061319a601983613884565b91506131a582613e67565b602082019050919050565b60006131bd602c83613884565b91506131c882613e90565b604082019050919050565b60006131e0603883613884565b91506131eb82613edf565b604082019050919050565b6000613203602a83613884565b915061320e82613f2e565b604082019050919050565b6000613226602983613884565b915061323182613f7d565b604082019050919050565b6000613249602083613884565b915061325482613fcc565b602082019050919050565b600061326c602c83613884565b915061327782613ff5565b604082019050919050565b600061328f602083613884565b915061329a82614044565b602082019050919050565b60006132b2602983613884565b91506132bd8261406d565b604082019050919050565b60006132d5602f83613884565b91506132e0826140bc565b604082019050919050565b60006132f8602183613884565b91506133038261410b565b604082019050919050565b600061331b601983613884565b91506133268261415a565b602082019050919050565b600061333e601c83613884565b915061334982614183565b602082019050919050565b6000613361603183613884565b915061336c826141ac565b604082019050919050565b6000613384602c83613884565b915061338f826141fb565b604082019050919050565b6133a381613a1f565b82525050565b6133b281613a1f565b82525050565b60006133c48285613044565b91506133d08284613044565b91508190509392505050565b60006020820190506133f16000830184612f56565b92915050565b600060808201905061340c6000830187612f56565b6134196020830186612f56565b61342660408301856133a9565b81810360608301526134388184612fd2565b905095945050505050565b6000602082019050818103600083015261345d8184612f65565b905092915050565b600060208201905061347a6000830184612fc3565b92915050565b6000602082019050818103600083015261349a818461300b565b905092915050565b600060208201905081810360008301526134bb81613075565b9050919050565b600060208201905081810360008301526134db81613098565b9050919050565b600060208201905081810360008301526134fb816130bb565b9050919050565b6000602082019050818103600083015261351b816130de565b9050919050565b6000602082019050818103600083015261353b81613101565b9050919050565b6000602082019050818103600083015261355b81613124565b9050919050565b6000602082019050818103600083015261357b81613147565b9050919050565b6000602082019050818103600083015261359b8161316a565b9050919050565b600060208201905081810360008301526135bb8161318d565b9050919050565b600060208201905081810360008301526135db816131b0565b9050919050565b600060208201905081810360008301526135fb816131d3565b9050919050565b6000602082019050818103600083015261361b816131f6565b9050919050565b6000602082019050818103600083015261363b81613219565b9050919050565b6000602082019050818103600083015261365b8161323c565b9050919050565b6000602082019050818103600083015261367b8161325f565b9050919050565b6000602082019050818103600083015261369b81613282565b9050919050565b600060208201905081810360008301526136bb816132a5565b9050919050565b600060208201905081810360008301526136db816132c8565b9050919050565b600060208201905081810360008301526136fb816132eb565b9050919050565b6000602082019050818103600083015261371b8161330e565b9050919050565b6000602082019050818103600083015261373b81613331565b9050919050565b6000602082019050818103600083015261375b81613354565b9050919050565b6000602082019050818103600083015261377b81613377565b9050919050565b600060208201905061379760008301846133a9565b92915050565b60006137a76137b8565b90506137b38282613a9d565b919050565b6000604051905090565b600067ffffffffffffffff8211156137dd576137dc613c33565b5b6137e682613c76565b9050602081019050919050565b600067ffffffffffffffff82111561380e5761380d613c33565b5b61381782613c76565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138ab82613a1f565b91506138b683613a1f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138eb576138ea613b48565b5b828201905092915050565b600061390182613a1f565b915061390c83613a1f565b92508261391c5761391b613b77565b5b828204905092915050565b600061393282613a1f565b915061393d83613a1f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561397657613975613b48565b5b828202905092915050565b600061398c82613a1f565b915061399783613a1f565b9250828210156139aa576139a9613b48565b5b828203905092915050565b60006139c0826139ff565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a56578082015181840152602081019050613a3b565b83811115613a65576000848401525b50505050565b60006002820490506001821680613a8357607f821691505b60208210811415613a9757613a96613ba6565b5b50919050565b613aa682613c76565b810181811067ffffffffffffffff82111715613ac557613ac4613c33565b5b80604052505050565b6000613ad982613a1f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b0c57613b0b613b48565b5b600182019050919050565b6000613b2282613a1f565b9150613b2d83613a1f565b925082613b3d57613b3c613b77565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7520617265206e6f7420616c6c6f77656420746f206d696e740000000000600082015250565b7f596f752063616e6e6f74206d696e742074686174206d75636820666973680000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5468657265206973206e6f206669736820616e796d6f72650000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f45786365656473207265736572766564206669736820737570706c7900000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614253816139b5565b811461425e57600080fd5b50565b61426a816139c7565b811461427557600080fd5b50565b614281816139d3565b811461428c57600080fd5b50565b61429881613a1f565b81146142a357600080fd5b5056fea2646970667358221220f72c48609dadbed2d01a1f5e1ea982626186aeba3a62444adf54731cf34147c764736f6c63430008070033

Deployed Bytecode Sourcemap

43204:4350:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36967:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45741:73;;;;;;;;;;;;;:::i;:::-;;24859:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45944:166;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26418:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25941:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45826:106;;;;;;;;;;;;;:::i;:::-;;37607:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27308:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37275:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46933:141;;;;;;;;;;;;;:::i;:::-;;27718:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37797:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46491:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24553:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24283:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4558:94;;;;;;;;;;;;;:::i;:::-;;3907:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46274:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25028:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45030:699;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26711:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27974:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44739:279;;;;;;;;;;;;;:::i;:::-;;25203:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46601:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47085:466;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27077:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4807:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46122:140;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36967:224;37069:4;37108:35;37093:50;;;:11;:50;;;;:90;;;;37147:36;37171:11;37147:23;:36::i;:::-;37093:90;37086:97;;36967:224;;;:::o;45741:73::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45802:4:::1;45792:7;;:14;;;;;;;;;;;;;;;;;;45741:73::o:0;24859:100::-;24913:13;24946:5;24939:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24859:100;:::o;45944:166::-;45986:15;46016:10;;;;;;;;;;;46013:66;;;46035:4;46028:11;;;;46013:66;46058:7;;;;;;;;;;;46055:24;;;46075:4;46067:12;;;;46055:24;46097:5;46090:12;;45944:166;;:::o;26418:221::-;26494:7;26522:16;26530:7;26522;:16::i;:::-;26514:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26607:15;:24;26623:7;26607:24;;;;;;;;;;;;;;;;;;;;;26600:31;;26418:221;;;:::o;25941:411::-;26022:13;26038:23;26053:7;26038:14;:23::i;:::-;26022:39;;26086:5;26080:11;;:2;:11;;;;26072:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26180:5;26164:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26189:37;26206:5;26213:12;:10;:12::i;:::-;26189:16;:37::i;:::-;26164:62;26142:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26323:21;26332:2;26336:7;26323:8;:21::i;:::-;26011:341;25941:411;;:::o;45826:106::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45891:5:::1;45881:7;;:15;;;;;;;;;;;;;;;;;;45920:4;45907:10;;:17;;;;;;;;;;;;;;;;;;45826:106::o:0;37607:113::-;37668:7;37695:10;:17;;;;37688:24;;37607:113;:::o;27308:339::-;27503:41;27522:12;:10;:12::i;:::-;27536:7;27503:18;:41::i;:::-;27495:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27611:28;27621:4;27627:2;27631:7;27611:9;:28::i;:::-;27308:339;;;:::o;37275:256::-;37372:7;37408:23;37425:5;37408:16;:23::i;:::-;37400:5;:31;37392:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37497:12;:19;37510:5;37497:19;;;;;;;;;;;;;;;:26;37517:5;37497:26;;;;;;;;;;;;37490:33;;37275:256;;;;:::o;46933:141::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46982:12:::1;46997:21;46982:36;;47037:10;47029:28;;:37;47058:7;47029:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46971:103;46933:141::o:0;27718:185::-;27856:39;27873:4;27879:2;27883:7;27856:39;;;;;;;;;;;;:16;:39::i;:::-;27718:185;;;:::o;37797:233::-;37872:7;37908:30;:28;:30::i;:::-;37900:5;:38;37892:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38005:10;38016:5;38005:17;;;;;;;;:::i;:::-;;;;;;;;;;37998:24;;37797:233;;;:::o;46491:102::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46578:7:::1;46562:13;:23;;;;;;;;;;;;:::i;:::-;;46491:102:::0;:::o;24553:239::-;24625:7;24645:13;24661:7;:16;24669:7;24661:16;;;;;;;;;;;;;;;;;;;;;24645:32;;24713:1;24696:19;;:5;:19;;;;24688:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24779:5;24772:12;;;24553:239;;;:::o;24283:208::-;24355:7;24400:1;24383:19;;:5;:19;;;;24375:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24467:9;:16;24477:5;24467:16;;;;;;;;;;;;;;;;24460:23;;24283:208;;;:::o;4558:94::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;3907:87::-;3953:7;3980:6;;;;;;;;;;;3973:13;;3907:87;:::o;46274:84::-;46313:16;46348:2;46341:9;;46274:84;:::o;25028:104::-;25084:13;25117:7;25110:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25028:104;:::o;45030:699::-;45084:14;45101:13;:11;:13::i;:::-;45084:30;;45125:15;45143:9;:7;:9::i;:::-;45125:27;;45163:10;45176:11;:9;:11::i;:::-;45163:24;;45293:11;:9;:11::i;:::-;45284:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45379:7;45372:3;:14;;45363:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;45488:9;;45481:4;:16;;;;:::i;:::-;45474:3;45465:6;:12;;;;:::i;:::-;:32;;45456:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;45573:3;45565:5;:11;;;;:::i;:::-;45552:9;:24;;45543:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;45636:9;45632:90;45651:3;45647:1;:7;45632:90;;;45675:35;45686:10;45707:1;45698:6;:10;;;;:::i;:::-;45675:9;:35::i;:::-;45656:3;;;;;:::i;:::-;;;;45632:90;;;;45073:656;;;45030:699;:::o;26711:295::-;26826:12;:10;:12::i;:::-;26814:24;;:8;:24;;;;26806:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26926:8;26881:18;:32;26900:12;:10;:12::i;:::-;26881:32;;;;;;;;;;;;;;;:42;26914:8;26881:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26979:8;26950:48;;26965:12;:10;:12::i;:::-;26950:48;;;26989:8;26950:48;;;;;;:::i;:::-;;;;;;;;26711:295;;:::o;27974:328::-;28149:41;28168:12;:10;:12::i;:::-;28182:7;28149:18;:41::i;:::-;28141:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28255:39;28269:4;28275:2;28279:7;28288:5;28255:13;:39::i;:::-;27974:328;;;;:::o;44739:279::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44797:23:::1;44807:10;44818:1;44797:9;:23::i;:::-;44831:14;44848:13;:11;:13::i;:::-;44831:30;;44907:9;44903:108;44922:17;;44918:1;:21;44903:108;;;44960:39;44971:11;44983:1;44971:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44996:1;44987:6;:10;;;;:::i;:::-;44960:9;:39::i;:::-;44941:3;;;;;:::i;:::-;;;;44903:108;;;;44775:243;44739:279::o:0;25203:334::-;25276:13;25310:16;25318:7;25310;:16::i;:::-;25302:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25391:21;25415:10;:8;:10::i;:::-;25391:34;;25467:1;25449:7;25443:21;:25;:86;;;;;;;;;;;;;;;;;25495:7;25504:18;:7;:16;:18::i;:::-;25478:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25443:86;25436:93;;;25203:334;;;:::o;46601:324::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46701:9:::1;;46690:7;:20;;46681:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46757:14;46774:13;:11;:13::i;:::-;46757:30;;46802:9;46798:87;46817:7;46813:1;:11;46798:87;;;46845:28;46856:3;46870:1;46861:6;:10;;;;:::i;:::-;46845:9;:28::i;:::-;46826:3;;;;;:::i;:::-;;;;46798:87;;;;46910:7;46897:9;;:20;;;;;;;:::i;:::-;;;;;;;;46670:255;46601:324:::0;;:::o;47085:466::-;47144:25;47187:14;47204:13;:11;:13::i;:::-;47187:30;;47228:23;47268:17;47278:6;47268:9;:17::i;:::-;47254:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47228:58;;47297:15;47330:9;47325:195;47349:6;47345:1;:10;47325:195;;;47405:6;47391:20;;:10;47399:1;47391:7;:10::i;:::-;:20;;;47387:122;;;47464:1;47446:6;47453:7;47446:15;;;;;;;;:::i;:::-;;;;;;;:19;;;;;47484:9;;;;;:::i;:::-;;;;47387:122;47357:3;;;;;:::i;:::-;;;;47325:195;;;;47537:6;47530:13;;;;;47085:466;;;:::o;27077:164::-;27174:4;27198:18;:25;27217:5;27198:25;;;;;;;;;;;;;;;:35;27224:8;27198:35;;;;;;;;;;;;;;;;;;;;;;;;;27191:42;;27077:164;;;;:::o;4807:192::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4916:1:::1;4896:22;;:8;:22;;;;4888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;46122:140::-;46163:14;46193:7;;;;;;;;;;;46190:33;;;46210:13;;46202:21;;;;46190:33;46242:12;;46235:19;;46122:140;;:::o;23914:305::-;24016:4;24068:25;24053:40;;;:11;:40;;;;:105;;;;24125:33;24110:48;;;:11;:48;;;;24053:105;:158;;;;24175:36;24199:11;24175:23;:36::i;:::-;24053:158;24033:178;;23914:305;;;:::o;2695:98::-;2748:7;2775:10;2768:17;;2695:98;:::o;29812:127::-;29877:4;29929:1;29901:30;;:7;:16;29909:7;29901:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29894:37;;29812:127;;;:::o;33794:174::-;33896:2;33869:15;:24;33885:7;33869:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33952:7;33948:2;33914:46;;33923:23;33938:7;33923:14;:23::i;:::-;33914:46;;;;;;;;;;;;33794:174;;:::o;30106:348::-;30199:4;30224:16;30232:7;30224;:16::i;:::-;30216:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30300:13;30316:23;30331:7;30316:14;:23::i;:::-;30300:39;;30369:5;30358:16;;:7;:16;;;:51;;;;30402:7;30378:31;;:20;30390:7;30378:11;:20::i;:::-;:31;;;30358:51;:87;;;;30413:32;30430:5;30437:7;30413:16;:32::i;:::-;30358:87;30350:96;;;30106:348;;;;:::o;33098:578::-;33257:4;33230:31;;:23;33245:7;33230:14;:23::i;:::-;:31;;;33222:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33340:1;33326:16;;:2;:16;;;;33318:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33396:39;33417:4;33423:2;33427:7;33396:20;:39::i;:::-;33500:29;33517:1;33521:7;33500:8;:29::i;:::-;33561:1;33542:9;:15;33552:4;33542:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33590:1;33573:9;:13;33583:2;33573:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33621:2;33602:7;:16;33610:7;33602:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33660:7;33656:2;33641:27;;33650:4;33641:27;;;;;;;;;;;;33098:578;;;:::o;5007:173::-;5063:16;5082:6;;;;;;;;;;;5063:25;;5108:8;5099:6;;:17;;;;;;;;;;;;;;;;;;5163:8;5132:40;;5153:8;5132:40;;;;;;;;;;;;5052:128;5007:173;:::o;30796:110::-;30872:26;30882:2;30886:7;30872:26;;;;;;;;;;;;:9;:26::i;:::-;30796:110;;:::o;29184:315::-;29341:28;29351:4;29357:2;29361:7;29341:9;:28::i;:::-;29388:48;29411:4;29417:2;29421:7;29430:5;29388:22;:48::i;:::-;29380:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29184:315;;;;:::o;46369:114::-;46429:13;46462;46455:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46369:114;:::o;311:723::-;367:13;597:1;588:5;:10;584:53;;;615:10;;;;;;;;;;;;;;;;;;;;;584:53;647:12;662:5;647:20;;678:14;703:78;718:1;710:4;:9;703:78;;736:8;;;;;:::i;:::-;;;;767:2;759:10;;;;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791:39;;841:154;857:1;848:5;:10;841:154;;885:1;875:11;;;;;:::i;:::-;;;952:2;944:5;:10;;;;:::i;:::-;931:2;:24;;;;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;841:154;;;1019:6;1005:21;;;;;311:723;;;;:::o;15893:157::-;15978:4;16017:25;16002:40;;;:11;:40;;;;15995:47;;15893:157;;;:::o;38643:589::-;38787:45;38814:4;38820:2;38824:7;38787:26;:45::i;:::-;38865:1;38849:18;;:4;:18;;;38845:187;;;38884:40;38916:7;38884:31;:40::i;:::-;38845:187;;;38954:2;38946:10;;:4;:10;;;38942:90;;38973:47;39006:4;39012:7;38973:32;:47::i;:::-;38942:90;38845:187;39060:1;39046:16;;:2;:16;;;39042:183;;;39079:45;39116:7;39079:36;:45::i;:::-;39042:183;;;39152:4;39146:10;;:2;:10;;;39142:83;;39173:40;39201:2;39205:7;39173:27;:40::i;:::-;39142:83;39042:183;38643:589;;;:::o;31133:321::-;31263:18;31269:2;31273:7;31263:5;:18::i;:::-;31314:54;31345:1;31349:2;31353:7;31362:5;31314:22;:54::i;:::-;31292:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31133:321;;;:::o;34533:799::-;34688:4;34709:15;:2;:13;;;:15::i;:::-;34705:620;;;34761:2;34745:36;;;34782:12;:10;:12::i;:::-;34796:4;34802:7;34811:5;34745:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34741:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35004:1;34987:6;:13;:18;34983:272;;;35030:60;;;;;;;;;;:::i;:::-;;;;;;;;34983:272;35205:6;35199:13;35190:6;35186:2;35182:15;35175:38;34741:529;34878:41;;;34868:51;;;:6;:51;;;;34861:58;;;;;34705:620;35309:4;35302:11;;34533:799;;;;;;;:::o;35904:126::-;;;;:::o;39955:164::-;40059:10;:17;;;;40032:15;:24;40048:7;40032:24;;;;;;;;;;;:44;;;;40087:10;40103:7;40087:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39955:164;:::o;40746:988::-;41012:22;41062:1;41037:22;41054:4;41037:16;:22::i;:::-;:26;;;;:::i;:::-;41012:51;;41074:18;41095:17;:26;41113:7;41095:26;;;;;;;;;;;;41074:47;;41242:14;41228:10;:28;41224:328;;41273:19;41295:12;:18;41308:4;41295:18;;;;;;;;;;;;;;;:34;41314:14;41295:34;;;;;;;;;;;;41273:56;;41379:11;41346:12;:18;41359:4;41346:18;;;;;;;;;;;;;;;:30;41365:10;41346:30;;;;;;;;;;;:44;;;;41496:10;41463:17;:30;41481:11;41463:30;;;;;;;;;;;:43;;;;41258:294;41224:328;41648:17;:26;41666:7;41648:26;;;;;;;;;;;41641:33;;;41692:12;:18;41705:4;41692:18;;;;;;;;;;;;;;;:34;41711:14;41692:34;;;;;;;;;;;41685:41;;;40827:907;;40746:988;;:::o;42029:1079::-;42282:22;42327:1;42307:10;:17;;;;:21;;;;:::i;:::-;42282:46;;42339:18;42360:15;:24;42376:7;42360:24;;;;;;;;;;;;42339:45;;42711:19;42733:10;42744:14;42733:26;;;;;;;;:::i;:::-;;;;;;;;;;42711:48;;42797:11;42772:10;42783;42772:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42908:10;42877:15;:28;42893:11;42877:28;;;;;;;;;;;:41;;;;43049:15;:24;43065:7;43049:24;;;;;;;;;;;43042:31;;;43084:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42100:1008;;;42029:1079;:::o;39533:221::-;39618:14;39635:20;39652:2;39635:16;:20::i;:::-;39618:37;;39693:7;39666:12;:16;39679:2;39666:16;;;;;;;;;;;;;;;:24;39683:6;39666:24;;;;;;;;;;;:34;;;;39740:6;39711:17;:26;39729:7;39711:26;;;;;;;;;;;:35;;;;39607:147;39533:221;;:::o;31790:382::-;31884:1;31870:16;;:2;:16;;;;31862:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31943:16;31951:7;31943;:16::i;:::-;31942:17;31934:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32005:45;32034:1;32038:2;32042:7;32005:20;:45::i;:::-;32080:1;32063:9;:13;32073:2;32063:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32111:2;32092:7;:16;32100:7;32092:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32156:7;32152:2;32131:33;;32148:1;32131:33;;;;;;;;;;;;31790:382;;:::o;5953:387::-;6013:4;6221:12;6288:7;6276:20;6268:28;;6331:1;6324:4;:8;6317:15;;;5953:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:179::-;7227:10;7248:46;7290:3;7282:6;7248:46;:::i;:::-;7326:4;7321:3;7317:14;7303:28;;7158:179;;;;:::o;7343:118::-;7430:24;7448:5;7430:24;:::i;:::-;7425:3;7418:37;7343:118;;:::o;7497:732::-;7616:3;7645:54;7693:5;7645:54;:::i;:::-;7715:86;7794:6;7789:3;7715:86;:::i;:::-;7708:93;;7825:56;7875:5;7825:56;:::i;:::-;7904:7;7935:1;7920:284;7945:6;7942:1;7939:13;7920:284;;;8021:6;8015:13;8048:63;8107:3;8092:13;8048:63;:::i;:::-;8041:70;;8134:60;8187:6;8134:60;:::i;:::-;8124:70;;7980:224;7967:1;7964;7960:9;7955:14;;7920:284;;;7924:14;8220:3;8213:10;;7621:608;;;7497:732;;;;:::o;8235:109::-;8316:21;8331:5;8316:21;:::i;:::-;8311:3;8304:34;8235:109;;:::o;8350:360::-;8436:3;8464:38;8496:5;8464:38;:::i;:::-;8518:70;8581:6;8576:3;8518:70;:::i;:::-;8511:77;;8597:52;8642:6;8637:3;8630:4;8623:5;8619:16;8597:52;:::i;:::-;8674:29;8696:6;8674:29;:::i;:::-;8669:3;8665:39;8658:46;;8440:270;8350:360;;;;:::o;8716:364::-;8804:3;8832:39;8865:5;8832:39;:::i;:::-;8887:71;8951:6;8946:3;8887:71;:::i;:::-;8880:78;;8967:52;9012:6;9007:3;9000:4;8993:5;8989:16;8967:52;:::i;:::-;9044:29;9066:6;9044:29;:::i;:::-;9039:3;9035:39;9028:46;;8808:272;8716:364;;;;:::o;9086:377::-;9192:3;9220:39;9253:5;9220:39;:::i;:::-;9275:89;9357:6;9352:3;9275:89;:::i;:::-;9268:96;;9373:52;9418:6;9413:3;9406:4;9399:5;9395:16;9373:52;:::i;:::-;9450:6;9445:3;9441:16;9434:23;;9196:267;9086:377;;;;:::o;9469:366::-;9611:3;9632:67;9696:2;9691:3;9632:67;:::i;:::-;9625:74;;9708:93;9797:3;9708:93;:::i;:::-;9826:2;9821:3;9817:12;9810:19;;9469:366;;;:::o;9841:::-;9983:3;10004:67;10068:2;10063:3;10004:67;:::i;:::-;9997:74;;10080:93;10169:3;10080:93;:::i;:::-;10198:2;10193:3;10189:12;10182:19;;9841:366;;;:::o;10213:::-;10355:3;10376:67;10440:2;10435:3;10376:67;:::i;:::-;10369:74;;10452:93;10541:3;10452:93;:::i;:::-;10570:2;10565:3;10561:12;10554:19;;10213:366;;;:::o;10585:::-;10727:3;10748:67;10812:2;10807:3;10748:67;:::i;:::-;10741:74;;10824:93;10913:3;10824:93;:::i;:::-;10942:2;10937:3;10933:12;10926:19;;10585:366;;;:::o;10957:::-;11099:3;11120:67;11184:2;11179:3;11120:67;:::i;:::-;11113:74;;11196:93;11285:3;11196:93;:::i;:::-;11314:2;11309:3;11305:12;11298:19;;10957:366;;;:::o;11329:::-;11471:3;11492:67;11556:2;11551:3;11492:67;:::i;:::-;11485:74;;11568:93;11657:3;11568:93;:::i;:::-;11686:2;11681:3;11677:12;11670:19;;11329:366;;;:::o;11701:::-;11843:3;11864:67;11928:2;11923:3;11864:67;:::i;:::-;11857:74;;11940:93;12029:3;11940:93;:::i;:::-;12058:2;12053:3;12049:12;12042:19;;11701:366;;;:::o;12073:::-;12215:3;12236:67;12300:2;12295:3;12236:67;:::i;:::-;12229:74;;12312:93;12401:3;12312:93;:::i;:::-;12430:2;12425:3;12421:12;12414:19;;12073:366;;;:::o;12445:::-;12587:3;12608:67;12672:2;12667:3;12608:67;:::i;:::-;12601:74;;12684:93;12773:3;12684:93;:::i;:::-;12802:2;12797:3;12793:12;12786:19;;12445:366;;;:::o;12817:::-;12959:3;12980:67;13044:2;13039:3;12980:67;:::i;:::-;12973:74;;13056:93;13145:3;13056:93;:::i;:::-;13174:2;13169:3;13165:12;13158:19;;12817:366;;;:::o;13189:::-;13331:3;13352:67;13416:2;13411:3;13352:67;:::i;:::-;13345:74;;13428:93;13517:3;13428:93;:::i;:::-;13546:2;13541:3;13537:12;13530:19;;13189:366;;;:::o;13561:::-;13703:3;13724:67;13788:2;13783:3;13724:67;:::i;:::-;13717:74;;13800:93;13889:3;13800:93;:::i;:::-;13918:2;13913:3;13909:12;13902:19;;13561:366;;;:::o;13933:::-;14075:3;14096:67;14160:2;14155:3;14096:67;:::i;:::-;14089:74;;14172:93;14261:3;14172:93;:::i;:::-;14290:2;14285:3;14281:12;14274:19;;13933:366;;;:::o;14305:::-;14447:3;14468:67;14532:2;14527:3;14468:67;:::i;:::-;14461:74;;14544:93;14633:3;14544:93;:::i;:::-;14662:2;14657:3;14653:12;14646:19;;14305:366;;;:::o;14677:::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14677:366;;;:::o;15049:::-;15191:3;15212:67;15276:2;15271:3;15212:67;:::i;:::-;15205:74;;15288:93;15377:3;15288:93;:::i;:::-;15406:2;15401:3;15397:12;15390:19;;15049:366;;;:::o;15421:::-;15563:3;15584:67;15648:2;15643:3;15584:67;:::i;:::-;15577:74;;15660:93;15749:3;15660:93;:::i;:::-;15778:2;15773:3;15769:12;15762:19;;15421:366;;;:::o;15793:::-;15935:3;15956:67;16020:2;16015:3;15956:67;:::i;:::-;15949:74;;16032:93;16121:3;16032:93;:::i;:::-;16150:2;16145:3;16141:12;16134:19;;15793:366;;;:::o;16165:::-;16307:3;16328:67;16392:2;16387:3;16328:67;:::i;:::-;16321:74;;16404:93;16493:3;16404:93;:::i;:::-;16522:2;16517:3;16513:12;16506:19;;16165:366;;;:::o;16537:::-;16679:3;16700:67;16764:2;16759:3;16700:67;:::i;:::-;16693:74;;16776:93;16865:3;16776:93;:::i;:::-;16894:2;16889:3;16885:12;16878:19;;16537:366;;;:::o;16909:::-;17051:3;17072:67;17136:2;17131:3;17072:67;:::i;:::-;17065:74;;17148:93;17237:3;17148:93;:::i;:::-;17266:2;17261:3;17257:12;17250:19;;16909:366;;;:::o;17281:::-;17423:3;17444:67;17508:2;17503:3;17444:67;:::i;:::-;17437:74;;17520:93;17609:3;17520:93;:::i;:::-;17638:2;17633:3;17629:12;17622:19;;17281:366;;;:::o;17653:::-;17795:3;17816:67;17880:2;17875:3;17816:67;:::i;:::-;17809:74;;17892:93;17981:3;17892:93;:::i;:::-;18010:2;18005:3;18001:12;17994:19;;17653:366;;;:::o;18025:108::-;18102:24;18120:5;18102:24;:::i;:::-;18097:3;18090:37;18025:108;;:::o;18139:118::-;18226:24;18244:5;18226:24;:::i;:::-;18221:3;18214:37;18139:118;;:::o;18263:435::-;18443:3;18465:95;18556:3;18547:6;18465:95;:::i;:::-;18458:102;;18577:95;18668:3;18659:6;18577:95;:::i;:::-;18570:102;;18689:3;18682:10;;18263:435;;;;;:::o;18704:222::-;18797:4;18835:2;18824:9;18820:18;18812:26;;18848:71;18916:1;18905:9;18901:17;18892:6;18848:71;:::i;:::-;18704:222;;;;:::o;18932:640::-;19127:4;19165:3;19154:9;19150:19;19142:27;;19179:71;19247:1;19236:9;19232:17;19223:6;19179:71;:::i;:::-;19260:72;19328:2;19317:9;19313:18;19304:6;19260:72;:::i;:::-;19342;19410:2;19399:9;19395:18;19386:6;19342:72;:::i;:::-;19461:9;19455:4;19451:20;19446:2;19435:9;19431:18;19424:48;19489:76;19560:4;19551:6;19489:76;:::i;:::-;19481:84;;18932:640;;;;;;;:::o;19578:373::-;19721:4;19759:2;19748:9;19744:18;19736:26;;19808:9;19802:4;19798:20;19794:1;19783:9;19779:17;19772:47;19836:108;19939:4;19930:6;19836:108;:::i;:::-;19828:116;;19578:373;;;;:::o;19957:210::-;20044:4;20082:2;20071:9;20067:18;20059:26;;20095:65;20157:1;20146:9;20142:17;20133:6;20095:65;:::i;:::-;19957:210;;;;:::o;20173:313::-;20286:4;20324:2;20313:9;20309:18;20301:26;;20373:9;20367:4;20363:20;20359:1;20348:9;20344:17;20337:47;20401:78;20474:4;20465:6;20401:78;:::i;:::-;20393:86;;20173:313;;;;:::o;20492:419::-;20658:4;20696:2;20685:9;20681:18;20673:26;;20745:9;20739:4;20735:20;20731:1;20720:9;20716:17;20709:47;20773:131;20899:4;20773:131;:::i;:::-;20765:139;;20492:419;;;:::o;20917:::-;21083:4;21121:2;21110:9;21106:18;21098:26;;21170:9;21164:4;21160:20;21156:1;21145:9;21141:17;21134:47;21198:131;21324:4;21198:131;:::i;:::-;21190:139;;20917:419;;;:::o;21342:::-;21508:4;21546:2;21535:9;21531:18;21523:26;;21595:9;21589:4;21585:20;21581:1;21570:9;21566:17;21559:47;21623:131;21749:4;21623:131;:::i;:::-;21615:139;;21342:419;;;:::o;21767:::-;21933:4;21971:2;21960:9;21956:18;21948:26;;22020:9;22014:4;22010:20;22006:1;21995:9;21991:17;21984:47;22048:131;22174:4;22048:131;:::i;:::-;22040:139;;21767:419;;;:::o;22192:::-;22358:4;22396:2;22385:9;22381:18;22373:26;;22445:9;22439:4;22435:20;22431:1;22420:9;22416:17;22409:47;22473:131;22599:4;22473:131;:::i;:::-;22465:139;;22192:419;;;:::o;22617:::-;22783:4;22821:2;22810:9;22806:18;22798:26;;22870:9;22864:4;22860:20;22856:1;22845:9;22841:17;22834:47;22898:131;23024:4;22898:131;:::i;:::-;22890:139;;22617:419;;;:::o;23042:::-;23208:4;23246:2;23235:9;23231:18;23223:26;;23295:9;23289:4;23285:20;23281:1;23270:9;23266:17;23259:47;23323:131;23449:4;23323:131;:::i;:::-;23315:139;;23042:419;;;:::o;23467:::-;23633:4;23671:2;23660:9;23656:18;23648:26;;23720:9;23714:4;23710:20;23706:1;23695:9;23691:17;23684:47;23748:131;23874:4;23748:131;:::i;:::-;23740:139;;23467:419;;;:::o;23892:::-;24058:4;24096:2;24085:9;24081:18;24073:26;;24145:9;24139:4;24135:20;24131:1;24120:9;24116:17;24109:47;24173:131;24299:4;24173:131;:::i;:::-;24165:139;;23892:419;;;:::o;24317:::-;24483:4;24521:2;24510:9;24506:18;24498:26;;24570:9;24564:4;24560:20;24556:1;24545:9;24541:17;24534:47;24598:131;24724:4;24598:131;:::i;:::-;24590:139;;24317:419;;;:::o;24742:::-;24908:4;24946:2;24935:9;24931:18;24923:26;;24995:9;24989:4;24985:20;24981:1;24970:9;24966:17;24959:47;25023:131;25149:4;25023:131;:::i;:::-;25015:139;;24742:419;;;:::o;25167:::-;25333:4;25371:2;25360:9;25356:18;25348:26;;25420:9;25414:4;25410:20;25406:1;25395:9;25391:17;25384:47;25448:131;25574:4;25448:131;:::i;:::-;25440:139;;25167:419;;;:::o;25592:::-;25758:4;25796:2;25785:9;25781:18;25773:26;;25845:9;25839:4;25835:20;25831:1;25820:9;25816:17;25809:47;25873:131;25999:4;25873:131;:::i;:::-;25865:139;;25592:419;;;:::o;26017:::-;26183:4;26221:2;26210:9;26206:18;26198:26;;26270:9;26264:4;26260:20;26256:1;26245:9;26241:17;26234:47;26298:131;26424:4;26298:131;:::i;:::-;26290:139;;26017:419;;;:::o;26442:::-;26608:4;26646:2;26635:9;26631:18;26623:26;;26695:9;26689:4;26685:20;26681:1;26670:9;26666:17;26659:47;26723:131;26849:4;26723:131;:::i;:::-;26715:139;;26442:419;;;:::o;26867:::-;27033:4;27071:2;27060:9;27056:18;27048:26;;27120:9;27114:4;27110:20;27106:1;27095:9;27091:17;27084:47;27148:131;27274:4;27148:131;:::i;:::-;27140:139;;26867:419;;;:::o;27292:::-;27458:4;27496:2;27485:9;27481:18;27473:26;;27545:9;27539:4;27535:20;27531:1;27520:9;27516:17;27509:47;27573:131;27699:4;27573:131;:::i;:::-;27565:139;;27292:419;;;:::o;27717:::-;27883:4;27921:2;27910:9;27906:18;27898:26;;27970:9;27964:4;27960:20;27956:1;27945:9;27941:17;27934:47;27998:131;28124:4;27998:131;:::i;:::-;27990:139;;27717:419;;;:::o;28142:::-;28308:4;28346:2;28335:9;28331:18;28323:26;;28395:9;28389:4;28385:20;28381:1;28370:9;28366:17;28359:47;28423:131;28549:4;28423:131;:::i;:::-;28415:139;;28142:419;;;:::o;28567:::-;28733:4;28771:2;28760:9;28756:18;28748:26;;28820:9;28814:4;28810:20;28806:1;28795:9;28791:17;28784:47;28848:131;28974:4;28848:131;:::i;:::-;28840:139;;28567:419;;;:::o;28992:::-;29158:4;29196:2;29185:9;29181:18;29173:26;;29245:9;29239:4;29235:20;29231:1;29220:9;29216:17;29209:47;29273:131;29399:4;29273:131;:::i;:::-;29265:139;;28992:419;;;:::o;29417:::-;29583:4;29621:2;29610:9;29606:18;29598:26;;29670:9;29664:4;29660:20;29656:1;29645:9;29641:17;29634:47;29698:131;29824:4;29698:131;:::i;:::-;29690:139;;29417:419;;;:::o;29842:::-;30008:4;30046:2;30035:9;30031:18;30023:26;;30095:9;30089:4;30085:20;30081:1;30070:9;30066:17;30059:47;30123:131;30249:4;30123:131;:::i;:::-;30115:139;;29842:419;;;:::o;30267:222::-;30360:4;30398:2;30387:9;30383:18;30375:26;;30411:71;30479:1;30468:9;30464:17;30455:6;30411:71;:::i;:::-;30267:222;;;;:::o;30495:129::-;30529:6;30556:20;;:::i;:::-;30546:30;;30585:33;30613:4;30605:6;30585:33;:::i;:::-;30495:129;;;:::o;30630:75::-;30663:6;30696:2;30690:9;30680:19;;30630:75;:::o;30711:307::-;30772:4;30862:18;30854:6;30851:30;30848:56;;;30884:18;;:::i;:::-;30848:56;30922:29;30944:6;30922:29;:::i;:::-;30914:37;;31006:4;31000;30996:15;30988:23;;30711:307;;;:::o;31024:308::-;31086:4;31176:18;31168:6;31165:30;31162:56;;;31198:18;;:::i;:::-;31162:56;31236:29;31258:6;31236:29;:::i;:::-;31228:37;;31320:4;31314;31310:15;31302:23;;31024:308;;;:::o;31338:132::-;31405:4;31428:3;31420:11;;31458:4;31453:3;31449:14;31441:22;;31338:132;;;:::o;31476:114::-;31543:6;31577:5;31571:12;31561:22;;31476:114;;;:::o;31596:98::-;31647:6;31681:5;31675:12;31665:22;;31596:98;;;:::o;31700:99::-;31752:6;31786:5;31780:12;31770:22;;31700:99;;;:::o;31805:113::-;31875:4;31907;31902:3;31898:14;31890:22;;31805:113;;;:::o;31924:184::-;32023:11;32057:6;32052:3;32045:19;32097:4;32092:3;32088:14;32073:29;;31924:184;;;;:::o;32114:168::-;32197:11;32231:6;32226:3;32219:19;32271:4;32266:3;32262:14;32247:29;;32114:168;;;;:::o;32288:169::-;32372:11;32406:6;32401:3;32394:19;32446:4;32441:3;32437:14;32422:29;;32288:169;;;;:::o;32463:148::-;32565:11;32602:3;32587:18;;32463:148;;;;:::o;32617:305::-;32657:3;32676:20;32694:1;32676:20;:::i;:::-;32671:25;;32710:20;32728:1;32710:20;:::i;:::-;32705:25;;32864:1;32796:66;32792:74;32789:1;32786:81;32783:107;;;32870:18;;:::i;:::-;32783:107;32914:1;32911;32907:9;32900:16;;32617:305;;;;:::o;32928:185::-;32968:1;32985:20;33003:1;32985:20;:::i;:::-;32980:25;;33019:20;33037:1;33019:20;:::i;:::-;33014:25;;33058:1;33048:35;;33063:18;;:::i;:::-;33048:35;33105:1;33102;33098:9;33093:14;;32928:185;;;;:::o;33119:348::-;33159:7;33182:20;33200:1;33182:20;:::i;:::-;33177:25;;33216:20;33234:1;33216:20;:::i;:::-;33211:25;;33404:1;33336:66;33332:74;33329:1;33326:81;33321:1;33314:9;33307:17;33303:105;33300:131;;;33411:18;;:::i;:::-;33300:131;33459:1;33456;33452:9;33441:20;;33119:348;;;;:::o;33473:191::-;33513:4;33533:20;33551:1;33533:20;:::i;:::-;33528:25;;33567:20;33585:1;33567:20;:::i;:::-;33562:25;;33606:1;33603;33600:8;33597:34;;;33611:18;;:::i;:::-;33597:34;33656:1;33653;33649:9;33641:17;;33473:191;;;;:::o;33670:96::-;33707:7;33736:24;33754:5;33736:24;:::i;:::-;33725:35;;33670:96;;;:::o;33772:90::-;33806:7;33849:5;33842:13;33835:21;33824:32;;33772:90;;;:::o;33868:149::-;33904:7;33944:66;33937:5;33933:78;33922:89;;33868:149;;;:::o;34023:126::-;34060:7;34100:42;34093:5;34089:54;34078:65;;34023:126;;;:::o;34155:77::-;34192:7;34221:5;34210:16;;34155:77;;;:::o;34238:154::-;34322:6;34317:3;34312;34299:30;34384:1;34375:6;34370:3;34366:16;34359:27;34238:154;;;:::o;34398:307::-;34466:1;34476:113;34490:6;34487:1;34484:13;34476:113;;;34575:1;34570:3;34566:11;34560:18;34556:1;34551:3;34547:11;34540:39;34512:2;34509:1;34505:10;34500:15;;34476:113;;;34607:6;34604:1;34601:13;34598:101;;;34687:1;34678:6;34673:3;34669:16;34662:27;34598:101;34447:258;34398:307;;;:::o;34711:320::-;34755:6;34792:1;34786:4;34782:12;34772:22;;34839:1;34833:4;34829:12;34860:18;34850:81;;34916:4;34908:6;34904:17;34894:27;;34850:81;34978:2;34970:6;34967:14;34947:18;34944:38;34941:84;;;34997:18;;:::i;:::-;34941:84;34762:269;34711:320;;;:::o;35037:281::-;35120:27;35142:4;35120:27;:::i;:::-;35112:6;35108:40;35250:6;35238:10;35235:22;35214:18;35202:10;35199:34;35196:62;35193:88;;;35261:18;;:::i;:::-;35193:88;35301:10;35297:2;35290:22;35080:238;35037:281;;:::o;35324:233::-;35363:3;35386:24;35404:5;35386:24;:::i;:::-;35377:33;;35432:66;35425:5;35422:77;35419:103;;;35502:18;;:::i;:::-;35419:103;35549:1;35542:5;35538:13;35531:20;;35324:233;;;:::o;35563:176::-;35595:1;35612:20;35630:1;35612:20;:::i;:::-;35607:25;;35646:20;35664:1;35646:20;:::i;:::-;35641:25;;35685:1;35675:35;;35690:18;;:::i;:::-;35675:35;35731:1;35728;35724:9;35719:14;;35563:176;;;;:::o;35745:180::-;35793:77;35790:1;35783:88;35890:4;35887:1;35880:15;35914:4;35911:1;35904:15;35931:180;35979:77;35976:1;35969:88;36076:4;36073:1;36066:15;36100:4;36097:1;36090:15;36117:180;36165:77;36162:1;36155:88;36262:4;36259:1;36252:15;36286:4;36283:1;36276:15;36303:180;36351:77;36348:1;36341:88;36448:4;36445:1;36438:15;36472:4;36469:1;36462:15;36489:180;36537:77;36534:1;36527:88;36634:4;36631:1;36624:15;36658:4;36655:1;36648:15;36675:180;36723:77;36720:1;36713:88;36820:4;36817:1;36810:15;36844:4;36841:1;36834:15;36861:117;36970:1;36967;36960:12;36984:117;37093:1;37090;37083:12;37107:117;37216:1;37213;37206:12;37230:117;37339:1;37336;37329:12;37353:102;37394:6;37445:2;37441:7;37436:2;37429:5;37425:14;37421:28;37411:38;;37353:102;;;:::o;37461:177::-;37601:29;37597:1;37589:6;37585:14;37578:53;37461:177;:::o;37644:180::-;37784:32;37780:1;37772:6;37768:14;37761:56;37644:180;:::o;37830:230::-;37970:34;37966:1;37958:6;37954:14;37947:58;38039:13;38034:2;38026:6;38022:15;38015:38;37830:230;:::o;38066:237::-;38206:34;38202:1;38194:6;38190:14;38183:58;38275:20;38270:2;38262:6;38258:15;38251:45;38066:237;:::o;38309:225::-;38449:34;38445:1;38437:6;38433:14;38426:58;38518:8;38513:2;38505:6;38501:15;38494:33;38309:225;:::o;38540:178::-;38680:30;38676:1;38668:6;38664:14;38657:54;38540:178;:::o;38724:174::-;38864:26;38860:1;38852:6;38848:14;38841:50;38724:174;:::o;38904:223::-;39044:34;39040:1;39032:6;39028:14;39021:58;39113:6;39108:2;39100:6;39096:15;39089:31;38904:223;:::o;39133:175::-;39273:27;39269:1;39261:6;39257:14;39250:51;39133:175;:::o;39314:231::-;39454:34;39450:1;39442:6;39438:14;39431:58;39523:14;39518:2;39510:6;39506:15;39499:39;39314:231;:::o;39551:243::-;39691:34;39687:1;39679:6;39675:14;39668:58;39760:26;39755:2;39747:6;39743:15;39736:51;39551:243;:::o;39800:229::-;39940:34;39936:1;39928:6;39924:14;39917:58;40009:12;40004:2;39996:6;39992:15;39985:37;39800:229;:::o;40035:228::-;40175:34;40171:1;40163:6;40159:14;40152:58;40244:11;40239:2;40231:6;40227:15;40220:36;40035:228;:::o;40269:182::-;40409:34;40405:1;40397:6;40393:14;40386:58;40269:182;:::o;40457:231::-;40597:34;40593:1;40585:6;40581:14;40574:58;40666:14;40661:2;40653:6;40649:15;40642:39;40457:231;:::o;40694:182::-;40834:34;40830:1;40822:6;40818:14;40811:58;40694:182;:::o;40882:228::-;41022:34;41018:1;41010:6;41006:14;40999:58;41091:11;41086:2;41078:6;41074:15;41067:36;40882:228;:::o;41116:234::-;41256:34;41252:1;41244:6;41240:14;41233:58;41325:17;41320:2;41312:6;41308:15;41301:42;41116:234;:::o;41356:220::-;41496:34;41492:1;41484:6;41480:14;41473:58;41565:3;41560:2;41552:6;41548:15;41541:28;41356:220;:::o;41582:175::-;41722:27;41718:1;41710:6;41706:14;41699:51;41582:175;:::o;41763:178::-;41903:30;41899:1;41891:6;41887:14;41880:54;41763:178;:::o;41947:236::-;42087:34;42083:1;42075:6;42071:14;42064:58;42156:19;42151:2;42143:6;42139:15;42132:44;41947:236;:::o;42189:231::-;42329:34;42325:1;42317:6;42313:14;42306:58;42398:14;42393:2;42385:6;42381:15;42374:39;42189:231;:::o;42426:122::-;42499:24;42517:5;42499:24;:::i;:::-;42492:5;42489:35;42479:63;;42538:1;42535;42528:12;42479:63;42426:122;:::o;42554:116::-;42624:21;42639:5;42624:21;:::i;:::-;42617:5;42614:32;42604:60;;42660:1;42657;42650:12;42604:60;42554:116;:::o;42676:120::-;42748:23;42765:5;42748:23;:::i;:::-;42741:5;42738:34;42728:62;;42786:1;42783;42776:12;42728:62;42676:120;:::o;42802:122::-;42875:24;42893:5;42875:24;:::i;:::-;42868:5;42865:35;42855:63;;42914:1;42911;42904:12;42855:63;42802:122;:::o

Swarm Source

ipfs://f72c48609dadbed2d01a1f5e1ea982626186aeba3a62444adf54731cf34147c7
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.