ETH Price: $2,747.98 (+3.09%)
Gas: 0.62 Gwei

Token

ether h2o (H2O)
 

Overview

Max Total Supply

44 H2O

Holders

33

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 H2O
0x3720302e025CF81C8d18AE98Dfa44eae665e522c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
EtherH2O

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// SPDX-License-Identifier: MIT
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/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/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/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/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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

// 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/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}. 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}

// 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/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: @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/EtherH2O.sol
pragma solidity ^0.8.0;

contract EtherH2O is ERC721Enumerable, Ownable {
    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public MINT_PRICE = 20000000000000000; // 0.02 ETH

    constructor() ERC721("ether h2o", "H2O") {
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return "ipfs://QmQZmCYMMKsav5Fu2KJZmNVY5r5pWCWw538ym3mXRknfzz";
    }

   function mint(uint256 amountToMint) public payable {
        require(totalSupply() < MAX_SUPPLY, "u r late");
        require(amountToMint > 0, "mint at least 1 pls");

        if (totalSupply() < 421) {
            uint256 mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
            return;
        }

        require(amountToMint <= 20, "only 20 max pls");
        require(totalSupply() + amountToMint <= 20, "u cant mint that many");
        require(MINT_PRICE * amountToMint == msg.value, "Incorrect Ether value.");

        for (uint256 i = 0; i < amountToMint; i++) {
            uint256 mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
        }
   }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","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"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"payable","type":"function"}]

608060405266470de4df820000600b553480156200001c57600080fd5b506040518060400160405280600981526020017f65746865722068326f00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f48324f00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000a19291906200017c565b508060019080519060200190620000ba9291906200017c565b5050506000620000cf6200017460201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000291565b600033905090565b8280546200018a906200022c565b90600052602060002090601f016020900481019282620001ae5760008555620001fa565b82601f10620001c957805160ff1916838001178555620001fa565b82800160010185558215620001fa579182015b82811115620001f9578251825591602001919060010190620001dc565b5b5090506200020991906200020d565b5090565b5b80821115620002285760008160009055506001016200020e565b5090565b600060028204905060018216806200024557607f821691505b602082108114156200025c576200025b62000262565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61361380620002a16000396000f3fe6080604052600436106101405760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb46514610442578063b88d4fde1461046b578063c002d23d14610494578063c87b56dd146104bf578063e985e9c5146104fc578063f2fde38b1461053957610140565b80636352211e1461033f57806370a082311461037c578063715018a6146103b95780638da5cb5b146103d057806395d89b41146103fb578063a0712d681461042657610140565b806323b872dd1161010857806323b872dd1461023e5780632f745c591461026757806332cb6b0c146102a45780633ccfd60b146102cf57806342842e0e146102d95780634f6ccce71461030257610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190612573565b610562565b6040516101799190612ec8565b60405180910390f35b34801561018e57600080fd5b506101976105dc565b6040516101a49190612ee3565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf91906125c5565b61066e565b6040516101e19190612e61565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c9190612537565b6106f3565b005b34801561021f57600080fd5b5061022861080b565b60405161023591906131e5565b60405180910390f35b34801561024a57600080fd5b5061026560048036038101906102609190612431565b610818565b005b34801561027357600080fd5b5061028e60048036038101906102899190612537565b610878565b60405161029b91906131e5565b60405180910390f35b3480156102b057600080fd5b506102b961091d565b6040516102c691906131e5565b60405180910390f35b6102d7610923565b005b3480156102e557600080fd5b5061030060048036038101906102fb9190612431565b6109df565b005b34801561030e57600080fd5b50610329600480360381019061032491906125c5565b6109ff565b60405161033691906131e5565b60405180910390f35b34801561034b57600080fd5b50610366600480360381019061036191906125c5565b610a96565b6040516103739190612e61565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e91906123cc565b610b48565b6040516103b091906131e5565b60405180910390f35b3480156103c557600080fd5b506103ce610c00565b005b3480156103dc57600080fd5b506103e5610d3d565b6040516103f29190612e61565b60405180910390f35b34801561040757600080fd5b50610410610d67565b60405161041d9190612ee3565b60405180910390f35b610440600480360381019061043b91906125c5565b610df9565b005b34801561044e57600080fd5b50610469600480360381019061046491906124fb565b610fd7565b005b34801561047757600080fd5b50610492600480360381019061048d9190612480565b611158565b005b3480156104a057600080fd5b506104a96111ba565b6040516104b691906131e5565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e191906125c5565b6111c0565b6040516104f39190612ee3565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e91906123f5565b61122a565b6040516105309190612ec8565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b91906123cc565b6112be565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105d557506105d48261146a565b5b9050919050565b6060600080546105eb90613433565b80601f016020809104026020016040519081016040528092919081815260200182805461061790613433565b80156106645780601f1061063957610100808354040283529160200191610664565b820191906000526020600020905b81548152906001019060200180831161064757829003601f168201915b5050505050905090565b60006106798261154c565b6106b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106af90613105565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106fe82610a96565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561076f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076690613185565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661078e6115b8565b73ffffffffffffffffffffffffffffffffffffffff1614806107bd57506107bc816107b76115b8565b61122a565b5b6107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390613045565b60405180910390fd5b61080683836115c0565b505050565b6000600880549050905090565b6108296108236115b8565b82611679565b610868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085f906131a5565b60405180910390fd5b610873838383611757565b505050565b600061088383610b48565b82106108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb90612f25565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b61092b6115b8565b73ffffffffffffffffffffffffffffffffffffffff16610949610d3d565b73ffffffffffffffffffffffffffffffffffffffff161461099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690613125565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506109dd57600080fd5b565b6109fa83838360405180602001604052806000815250611158565b505050565b6000610a0961080b565b8210610a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a41906131c5565b60405180910390fd5b60088281548110610a84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3690613085565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090613065565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c086115b8565b73ffffffffffffffffffffffffffffffffffffffff16610c26610d3d565b73ffffffffffffffffffffffffffffffffffffffff1614610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390613125565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d7690613433565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290613433565b8015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b5050505050905090565b612710610e0461080b565b10610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906130a5565b60405180910390fd5b60008111610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90612fe5565b60405180910390fd5b6101a5610e9261080b565b1015610eb4576000610ea261080b565b9050610eae33826119b3565b50610fd4565b6014811115610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90612f05565b60405180910390fd5b601481610f0361080b565b610f0d9190613299565b1115610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590613025565b60405180910390fd5b3481600b54610f5d91906132ef565b14610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f94906130c5565b60405180910390fd5b60005b81811015610fd2576000610fb261080b565b9050610fbe33826119b3565b508080610fca90613465565b915050610fa0565b505b50565b610fdf6115b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490612fc5565b60405180910390fd5b806005600061105a6115b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111076115b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161114c9190612ec8565b60405180910390a35050565b6111696111636115b8565b83611679565b6111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f906131a5565b60405180910390fd5b6111b4848484846119d1565b50505050565b600b5481565b60606111cb8261154c565b61120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613165565b60405180910390fd5b6040518060600160405280603581526020016135a9603591399050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112c66115b8565b73ffffffffffffffffffffffffffffffffffffffff166112e4610d3d565b73ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613125565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190612f65565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061153557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611545575061154482611a2d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661163383610a96565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116848261154c565b6116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba90613005565b60405180910390fd5b60006116ce83610a96565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061173d57508373ffffffffffffffffffffffffffffffffffffffff166117258461066e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061174e575061174d818561122a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661177782610a96565b73ffffffffffffffffffffffffffffffffffffffff16146117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c490613145565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490612fa5565b60405180910390fd5b611848838383611a97565b6118536000826115c0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a39190613349565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118fa9190613299565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6119cd828260405180602001604052806000815250611bab565b5050565b6119dc848484611757565b6119e884848484611c06565b611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90612f45565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611aa2838383611d9d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ae557611ae081611da2565b611b24565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b2357611b228382611deb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b6757611b6281611f58565b611ba6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611ba557611ba4828261209b565b5b5b505050565b611bb5838361211a565b611bc26000848484611c06565b611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890612f45565b60405180910390fd5b505050565b6000611c278473ffffffffffffffffffffffffffffffffffffffff166122e8565b15611d90578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c506115b8565b8786866040518563ffffffff1660e01b8152600401611c729493929190612e7c565b602060405180830381600087803b158015611c8c57600080fd5b505af1925050508015611cbd57506040513d601f19601f82011682018060405250810190611cba919061259c565b60015b611d40573d8060008114611ced576040519150601f19603f3d011682016040523d82523d6000602084013e611cf2565b606091505b50600081511415611d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2f90612f45565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d95565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611df884610b48565b611e029190613349565b9050600060076000848152602001908152602001600020549050818114611ee7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611f6c9190613349565b9050600060096000848152602001908152602001600020549050600060088381548110611fc2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061200a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061207f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120a683610b48565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561218a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612181906130e5565b60405180910390fd5b6121938161154c565b156121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90612f85565b60405180910390fd5b6121df60008383611a97565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461222f9190613299565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b600061230e61230984613231565b613200565b90508281526020810184848401111561232657600080fd5b6123318482856133f1565b509392505050565b6000813590506123488161354c565b92915050565b60008135905061235d81613563565b92915050565b6000813590506123728161357a565b92915050565b6000815190506123878161357a565b92915050565b600082601f83011261239e57600080fd5b81356123ae8482602086016122fb565b91505092915050565b6000813590506123c681613591565b92915050565b6000602082840312156123de57600080fd5b60006123ec84828501612339565b91505092915050565b6000806040838503121561240857600080fd5b600061241685828601612339565b925050602061242785828601612339565b9150509250929050565b60008060006060848603121561244657600080fd5b600061245486828701612339565b935050602061246586828701612339565b9250506040612476868287016123b7565b9150509250925092565b6000806000806080858703121561249657600080fd5b60006124a487828801612339565b94505060206124b587828801612339565b93505060406124c6878288016123b7565b925050606085013567ffffffffffffffff8111156124e357600080fd5b6124ef8782880161238d565b91505092959194509250565b6000806040838503121561250e57600080fd5b600061251c85828601612339565b925050602061252d8582860161234e565b9150509250929050565b6000806040838503121561254a57600080fd5b600061255885828601612339565b9250506020612569858286016123b7565b9150509250929050565b60006020828403121561258557600080fd5b600061259384828501612363565b91505092915050565b6000602082840312156125ae57600080fd5b60006125bc84828501612378565b91505092915050565b6000602082840312156125d757600080fd5b60006125e5848285016123b7565b91505092915050565b6125f78161337d565b82525050565b6126068161338f565b82525050565b600061261782613261565b6126218185613277565b9350612631818560208601613400565b61263a8161353b565b840191505092915050565b60006126508261326c565b61265a8185613288565b935061266a818560208601613400565b6126738161353b565b840191505092915050565b600061268b600f83613288565b91507f6f6e6c79203230206d617820706c7300000000000000000000000000000000006000830152602082019050919050565b60006126cb602b83613288565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000612731603283613288565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612797602683613288565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127fd601c83613288565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061283d602483613288565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128a3601983613288565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006128e3601383613288565b91507f6d696e74206174206c65617374203120706c73000000000000000000000000006000830152602082019050919050565b6000612923602c83613288565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612989601583613288565b91507f752063616e74206d696e742074686174206d616e7900000000000000000000006000830152602082019050919050565b60006129c9603883613288565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612a2f602a83613288565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a95602983613288565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612afb600883613288565b91507f752072206c6174650000000000000000000000000000000000000000000000006000830152602082019050919050565b6000612b3b601683613288565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b6000612b7b602083613288565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612bbb602c83613288565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612c21602083613288565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612c61602983613288565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612cc7602f83613288565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000612d2d602183613288565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d93603183613288565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000612df9602c83613288565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b612e5b816133e7565b82525050565b6000602082019050612e7660008301846125ee565b92915050565b6000608082019050612e9160008301876125ee565b612e9e60208301866125ee565b612eab6040830185612e52565b8181036060830152612ebd818461260c565b905095945050505050565b6000602082019050612edd60008301846125fd565b92915050565b60006020820190508181036000830152612efd8184612645565b905092915050565b60006020820190508181036000830152612f1e8161267e565b9050919050565b60006020820190508181036000830152612f3e816126be565b9050919050565b60006020820190508181036000830152612f5e81612724565b9050919050565b60006020820190508181036000830152612f7e8161278a565b9050919050565b60006020820190508181036000830152612f9e816127f0565b9050919050565b60006020820190508181036000830152612fbe81612830565b9050919050565b60006020820190508181036000830152612fde81612896565b9050919050565b60006020820190508181036000830152612ffe816128d6565b9050919050565b6000602082019050818103600083015261301e81612916565b9050919050565b6000602082019050818103600083015261303e8161297c565b9050919050565b6000602082019050818103600083015261305e816129bc565b9050919050565b6000602082019050818103600083015261307e81612a22565b9050919050565b6000602082019050818103600083015261309e81612a88565b9050919050565b600060208201905081810360008301526130be81612aee565b9050919050565b600060208201905081810360008301526130de81612b2e565b9050919050565b600060208201905081810360008301526130fe81612b6e565b9050919050565b6000602082019050818103600083015261311e81612bae565b9050919050565b6000602082019050818103600083015261313e81612c14565b9050919050565b6000602082019050818103600083015261315e81612c54565b9050919050565b6000602082019050818103600083015261317e81612cba565b9050919050565b6000602082019050818103600083015261319e81612d20565b9050919050565b600060208201905081810360008301526131be81612d86565b9050919050565b600060208201905081810360008301526131de81612dec565b9050919050565b60006020820190506131fa6000830184612e52565b92915050565b6000604051905081810181811067ffffffffffffffff821117156132275761322661350c565b5b8060405250919050565b600067ffffffffffffffff82111561324c5761324b61350c565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006132a4826133e7565b91506132af836133e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132e4576132e36134ae565b5b828201905092915050565b60006132fa826133e7565b9150613305836133e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561333e5761333d6134ae565b5b828202905092915050565b6000613354826133e7565b915061335f836133e7565b925082821015613372576133716134ae565b5b828203905092915050565b6000613388826133c7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561341e578082015181840152602081019050613403565b8381111561342d576000848401525b50505050565b6000600282049050600182168061344b57607f821691505b6020821081141561345f5761345e6134dd565b5b50919050565b6000613470826133e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134a3576134a26134ae565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6135558161337d565b811461356057600080fd5b50565b61356c8161338f565b811461357757600080fd5b50565b6135838161339b565b811461358e57600080fd5b50565b61359a816133e7565b81146135a557600080fd5b5056fe697066733a2f2f516d515a6d43594d4d4b736176354675324b4a5a6d4e56593572357057435777353338796d336d58526b6e667a7aa26469706673582212205bbb62820af5cc731c47ea1f0b4b1707a2537f2778eeb442ffd5dacd694c7cdc64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101405760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb46514610442578063b88d4fde1461046b578063c002d23d14610494578063c87b56dd146104bf578063e985e9c5146104fc578063f2fde38b1461053957610140565b80636352211e1461033f57806370a082311461037c578063715018a6146103b95780638da5cb5b146103d057806395d89b41146103fb578063a0712d681461042657610140565b806323b872dd1161010857806323b872dd1461023e5780632f745c591461026757806332cb6b0c146102a45780633ccfd60b146102cf57806342842e0e146102d95780634f6ccce71461030257610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190612573565b610562565b6040516101799190612ec8565b60405180910390f35b34801561018e57600080fd5b506101976105dc565b6040516101a49190612ee3565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf91906125c5565b61066e565b6040516101e19190612e61565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c9190612537565b6106f3565b005b34801561021f57600080fd5b5061022861080b565b60405161023591906131e5565b60405180910390f35b34801561024a57600080fd5b5061026560048036038101906102609190612431565b610818565b005b34801561027357600080fd5b5061028e60048036038101906102899190612537565b610878565b60405161029b91906131e5565b60405180910390f35b3480156102b057600080fd5b506102b961091d565b6040516102c691906131e5565b60405180910390f35b6102d7610923565b005b3480156102e557600080fd5b5061030060048036038101906102fb9190612431565b6109df565b005b34801561030e57600080fd5b50610329600480360381019061032491906125c5565b6109ff565b60405161033691906131e5565b60405180910390f35b34801561034b57600080fd5b50610366600480360381019061036191906125c5565b610a96565b6040516103739190612e61565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e91906123cc565b610b48565b6040516103b091906131e5565b60405180910390f35b3480156103c557600080fd5b506103ce610c00565b005b3480156103dc57600080fd5b506103e5610d3d565b6040516103f29190612e61565b60405180910390f35b34801561040757600080fd5b50610410610d67565b60405161041d9190612ee3565b60405180910390f35b610440600480360381019061043b91906125c5565b610df9565b005b34801561044e57600080fd5b50610469600480360381019061046491906124fb565b610fd7565b005b34801561047757600080fd5b50610492600480360381019061048d9190612480565b611158565b005b3480156104a057600080fd5b506104a96111ba565b6040516104b691906131e5565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e191906125c5565b6111c0565b6040516104f39190612ee3565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e91906123f5565b61122a565b6040516105309190612ec8565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b91906123cc565b6112be565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105d557506105d48261146a565b5b9050919050565b6060600080546105eb90613433565b80601f016020809104026020016040519081016040528092919081815260200182805461061790613433565b80156106645780601f1061063957610100808354040283529160200191610664565b820191906000526020600020905b81548152906001019060200180831161064757829003601f168201915b5050505050905090565b60006106798261154c565b6106b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106af90613105565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106fe82610a96565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561076f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076690613185565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661078e6115b8565b73ffffffffffffffffffffffffffffffffffffffff1614806107bd57506107bc816107b76115b8565b61122a565b5b6107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390613045565b60405180910390fd5b61080683836115c0565b505050565b6000600880549050905090565b6108296108236115b8565b82611679565b610868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085f906131a5565b60405180910390fd5b610873838383611757565b505050565b600061088383610b48565b82106108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb90612f25565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b61092b6115b8565b73ffffffffffffffffffffffffffffffffffffffff16610949610d3d565b73ffffffffffffffffffffffffffffffffffffffff161461099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690613125565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506109dd57600080fd5b565b6109fa83838360405180602001604052806000815250611158565b505050565b6000610a0961080b565b8210610a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a41906131c5565b60405180910390fd5b60088281548110610a84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3690613085565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090613065565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c086115b8565b73ffffffffffffffffffffffffffffffffffffffff16610c26610d3d565b73ffffffffffffffffffffffffffffffffffffffff1614610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390613125565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d7690613433565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290613433565b8015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b5050505050905090565b612710610e0461080b565b10610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906130a5565b60405180910390fd5b60008111610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90612fe5565b60405180910390fd5b6101a5610e9261080b565b1015610eb4576000610ea261080b565b9050610eae33826119b3565b50610fd4565b6014811115610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90612f05565b60405180910390fd5b601481610f0361080b565b610f0d9190613299565b1115610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590613025565b60405180910390fd5b3481600b54610f5d91906132ef565b14610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f94906130c5565b60405180910390fd5b60005b81811015610fd2576000610fb261080b565b9050610fbe33826119b3565b508080610fca90613465565b915050610fa0565b505b50565b610fdf6115b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490612fc5565b60405180910390fd5b806005600061105a6115b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111076115b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161114c9190612ec8565b60405180910390a35050565b6111696111636115b8565b83611679565b6111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f906131a5565b60405180910390fd5b6111b4848484846119d1565b50505050565b600b5481565b60606111cb8261154c565b61120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613165565b60405180910390fd5b6040518060600160405280603581526020016135a9603591399050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112c66115b8565b73ffffffffffffffffffffffffffffffffffffffff166112e4610d3d565b73ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613125565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190612f65565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061153557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611545575061154482611a2d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661163383610a96565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116848261154c565b6116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba90613005565b60405180910390fd5b60006116ce83610a96565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061173d57508373ffffffffffffffffffffffffffffffffffffffff166117258461066e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061174e575061174d818561122a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661177782610a96565b73ffffffffffffffffffffffffffffffffffffffff16146117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c490613145565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490612fa5565b60405180910390fd5b611848838383611a97565b6118536000826115c0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a39190613349565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118fa9190613299565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6119cd828260405180602001604052806000815250611bab565b5050565b6119dc848484611757565b6119e884848484611c06565b611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90612f45565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611aa2838383611d9d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ae557611ae081611da2565b611b24565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b2357611b228382611deb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b6757611b6281611f58565b611ba6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611ba557611ba4828261209b565b5b5b505050565b611bb5838361211a565b611bc26000848484611c06565b611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890612f45565b60405180910390fd5b505050565b6000611c278473ffffffffffffffffffffffffffffffffffffffff166122e8565b15611d90578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c506115b8565b8786866040518563ffffffff1660e01b8152600401611c729493929190612e7c565b602060405180830381600087803b158015611c8c57600080fd5b505af1925050508015611cbd57506040513d601f19601f82011682018060405250810190611cba919061259c565b60015b611d40573d8060008114611ced576040519150601f19603f3d011682016040523d82523d6000602084013e611cf2565b606091505b50600081511415611d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2f90612f45565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d95565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611df884610b48565b611e029190613349565b9050600060076000848152602001908152602001600020549050818114611ee7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611f6c9190613349565b9050600060096000848152602001908152602001600020549050600060088381548110611fc2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061200a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061207f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120a683610b48565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561218a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612181906130e5565b60405180910390fd5b6121938161154c565b156121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90612f85565b60405180910390fd5b6121df60008383611a97565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461222f9190613299565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b600061230e61230984613231565b613200565b90508281526020810184848401111561232657600080fd5b6123318482856133f1565b509392505050565b6000813590506123488161354c565b92915050565b60008135905061235d81613563565b92915050565b6000813590506123728161357a565b92915050565b6000815190506123878161357a565b92915050565b600082601f83011261239e57600080fd5b81356123ae8482602086016122fb565b91505092915050565b6000813590506123c681613591565b92915050565b6000602082840312156123de57600080fd5b60006123ec84828501612339565b91505092915050565b6000806040838503121561240857600080fd5b600061241685828601612339565b925050602061242785828601612339565b9150509250929050565b60008060006060848603121561244657600080fd5b600061245486828701612339565b935050602061246586828701612339565b9250506040612476868287016123b7565b9150509250925092565b6000806000806080858703121561249657600080fd5b60006124a487828801612339565b94505060206124b587828801612339565b93505060406124c6878288016123b7565b925050606085013567ffffffffffffffff8111156124e357600080fd5b6124ef8782880161238d565b91505092959194509250565b6000806040838503121561250e57600080fd5b600061251c85828601612339565b925050602061252d8582860161234e565b9150509250929050565b6000806040838503121561254a57600080fd5b600061255885828601612339565b9250506020612569858286016123b7565b9150509250929050565b60006020828403121561258557600080fd5b600061259384828501612363565b91505092915050565b6000602082840312156125ae57600080fd5b60006125bc84828501612378565b91505092915050565b6000602082840312156125d757600080fd5b60006125e5848285016123b7565b91505092915050565b6125f78161337d565b82525050565b6126068161338f565b82525050565b600061261782613261565b6126218185613277565b9350612631818560208601613400565b61263a8161353b565b840191505092915050565b60006126508261326c565b61265a8185613288565b935061266a818560208601613400565b6126738161353b565b840191505092915050565b600061268b600f83613288565b91507f6f6e6c79203230206d617820706c7300000000000000000000000000000000006000830152602082019050919050565b60006126cb602b83613288565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000612731603283613288565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612797602683613288565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127fd601c83613288565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061283d602483613288565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128a3601983613288565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006128e3601383613288565b91507f6d696e74206174206c65617374203120706c73000000000000000000000000006000830152602082019050919050565b6000612923602c83613288565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612989601583613288565b91507f752063616e74206d696e742074686174206d616e7900000000000000000000006000830152602082019050919050565b60006129c9603883613288565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612a2f602a83613288565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a95602983613288565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612afb600883613288565b91507f752072206c6174650000000000000000000000000000000000000000000000006000830152602082019050919050565b6000612b3b601683613288565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b6000612b7b602083613288565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612bbb602c83613288565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612c21602083613288565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612c61602983613288565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612cc7602f83613288565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000612d2d602183613288565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d93603183613288565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000612df9602c83613288565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b612e5b816133e7565b82525050565b6000602082019050612e7660008301846125ee565b92915050565b6000608082019050612e9160008301876125ee565b612e9e60208301866125ee565b612eab6040830185612e52565b8181036060830152612ebd818461260c565b905095945050505050565b6000602082019050612edd60008301846125fd565b92915050565b60006020820190508181036000830152612efd8184612645565b905092915050565b60006020820190508181036000830152612f1e8161267e565b9050919050565b60006020820190508181036000830152612f3e816126be565b9050919050565b60006020820190508181036000830152612f5e81612724565b9050919050565b60006020820190508181036000830152612f7e8161278a565b9050919050565b60006020820190508181036000830152612f9e816127f0565b9050919050565b60006020820190508181036000830152612fbe81612830565b9050919050565b60006020820190508181036000830152612fde81612896565b9050919050565b60006020820190508181036000830152612ffe816128d6565b9050919050565b6000602082019050818103600083015261301e81612916565b9050919050565b6000602082019050818103600083015261303e8161297c565b9050919050565b6000602082019050818103600083015261305e816129bc565b9050919050565b6000602082019050818103600083015261307e81612a22565b9050919050565b6000602082019050818103600083015261309e81612a88565b9050919050565b600060208201905081810360008301526130be81612aee565b9050919050565b600060208201905081810360008301526130de81612b2e565b9050919050565b600060208201905081810360008301526130fe81612b6e565b9050919050565b6000602082019050818103600083015261311e81612bae565b9050919050565b6000602082019050818103600083015261313e81612c14565b9050919050565b6000602082019050818103600083015261315e81612c54565b9050919050565b6000602082019050818103600083015261317e81612cba565b9050919050565b6000602082019050818103600083015261319e81612d20565b9050919050565b600060208201905081810360008301526131be81612d86565b9050919050565b600060208201905081810360008301526131de81612dec565b9050919050565b60006020820190506131fa6000830184612e52565b92915050565b6000604051905081810181811067ffffffffffffffff821117156132275761322661350c565b5b8060405250919050565b600067ffffffffffffffff82111561324c5761324b61350c565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006132a4826133e7565b91506132af836133e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132e4576132e36134ae565b5b828201905092915050565b60006132fa826133e7565b9150613305836133e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561333e5761333d6134ae565b5b828202905092915050565b6000613354826133e7565b915061335f836133e7565b925082821015613372576133716134ae565b5b828203905092915050565b6000613388826133c7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561341e578082015181840152602081019050613403565b8381111561342d576000848401525b50505050565b6000600282049050600182168061344b57607f821691505b6020821081141561345f5761345e6134dd565b5b50919050565b6000613470826133e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134a3576134a26134ae565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6135558161337d565b811461356057600080fd5b50565b61356c8161338f565b811461357757600080fd5b50565b6135838161339b565b811461358e57600080fd5b50565b61359a816133e7565b81146135a557600080fd5b5056fe697066733a2f2f516d515a6d43594d4d4b736176354675324b4a5a6d4e56593572357057435777353338796d336d58526b6e667a7aa26469706673582212205bbb62820af5cc731c47ea1f0b4b1707a2537f2778eeb442ffd5dacd694c7cdc64736f6c63430008000033

Deployed Bytecode Sourcemap

42794:1344:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34308:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21513:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22973:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22510:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34961:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23863:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34629:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42848:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44015:120;;;:::i;:::-;;24239:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35151:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21207:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20937:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42180:148;;;;;;;;;;;;;:::i;:::-;;41529:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21682:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43283:724;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23266:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24461:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42897:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43020:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23632:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42483:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34308:237;34410:4;34449:35;34434:50;;;:11;:50;;;;:103;;;;34501:36;34525:11;34501:23;:36::i;:::-;34434:103;34427:110;;34308:237;;;:::o;21513:100::-;21567:13;21600:5;21593:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21513:100;:::o;22973:221::-;23049:7;23077:16;23085:7;23077;:16::i;:::-;23069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23162:15;:24;23178:7;23162:24;;;;;;;;;;;;;;;;;;;;;23155:31;;22973:221;;;:::o;22510:397::-;22591:13;22607:23;22622:7;22607:14;:23::i;:::-;22591:39;;22655:5;22649:11;;:2;:11;;;;22641:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22735:5;22719:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22744:37;22761:5;22768:12;:10;:12::i;:::-;22744:16;:37::i;:::-;22719:62;22711:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22878:21;22887:2;22891:7;22878:8;:21::i;:::-;22510:397;;;:::o;34961:113::-;35022:7;35049:10;:17;;;;35042:24;;34961:113;:::o;23863:305::-;24024:41;24043:12;:10;:12::i;:::-;24057:7;24024:18;:41::i;:::-;24016:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24132:28;24142:4;24148:2;24152:7;24132:9;:28::i;:::-;23863:305;;;:::o;34629:256::-;34726:7;34762:23;34779:5;34762:16;:23::i;:::-;34754:5;:31;34746:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34851:12;:19;34864:5;34851:19;;;;;;;;;;;;;;;:26;34871:5;34851:26;;;;;;;;;;;;34844:33;;34629:256;;;;:::o;42848:42::-;42885:5;42848:42;:::o;44015:120::-;41760:12;:10;:12::i;:::-;41749:23;;:7;:5;:7::i;:::-;:23;;;41741:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44087:10:::1;44079:24;;:47;44104:21;44079:47;;;;;;;;;;;;;;;;;;;;;;;44071:56;;;::::0;::::1;;44015:120::o:0;24239:151::-;24343:39;24360:4;24366:2;24370:7;24343:39;;;;;;;;;;;;:16;:39::i;:::-;24239:151;;;:::o;35151:233::-;35226:7;35262:30;:28;:30::i;:::-;35254:5;:38;35246:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35359:10;35370:5;35359:17;;;;;;;;;;;;;;;;;;;;;;;;35352:24;;35151:233;;;:::o;21207:239::-;21279:7;21299:13;21315:7;:16;21323:7;21315:16;;;;;;;;;;;;;;;;;;;;;21299:32;;21367:1;21350:19;;:5;:19;;;;21342:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21433:5;21426:12;;;21207:239;;;:::o;20937:208::-;21009:7;21054:1;21037:19;;:5;:19;;;;21029:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21121:9;:16;21131:5;21121:16;;;;;;;;;;;;;;;;21114:23;;20937:208;;;:::o;42180:148::-;41760:12;:10;:12::i;:::-;41749:23;;:7;:5;:7::i;:::-;:23;;;41741:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42287:1:::1;42250:40;;42271:6;;;;;;;;;;;42250:40;;;;;;;;;;;;42318:1;42301:6;;:19;;;;;;;;;;;;;;;;;;42180:148::o:0;41529:87::-;41575:7;41602:6;;;;;;;;;;;41595:13;;41529:87;:::o;21682:104::-;21738:13;21771:7;21764:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21682:104;:::o;43283:724::-;42885:5;43353:13;:11;:13::i;:::-;:26;43345:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;43426:1;43411:12;:16;43403:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43484:3;43468:13;:11;:13::i;:::-;:19;43464:153;;;43504:17;43524:13;:11;:13::i;:::-;43504:33;;43552:32;43562:10;43574:9;43552;:32::i;:::-;43599:7;;;43464:153;43653:2;43637:12;:18;;43629:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;43726:2;43710:12;43694:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:34;;43686:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43802:9;43786:12;43773:10;;:25;;;;:::i;:::-;:38;43765:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43856:9;43851:150;43875:12;43871:1;:16;43851:150;;;43909:17;43929:13;:11;:13::i;:::-;43909:33;;43957:32;43967:10;43979:9;43957;:32::i;:::-;43851:150;43889:3;;;;;:::i;:::-;;;;43851:150;;;;43283:724;;:::o;23266:295::-;23381:12;:10;:12::i;:::-;23369:24;;:8;:24;;;;23361:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23481:8;23436:18;:32;23455:12;:10;:12::i;:::-;23436:32;;;;;;;;;;;;;;;:42;23469:8;23436:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23534:8;23505:48;;23520:12;:10;:12::i;:::-;23505:48;;;23544:8;23505:48;;;;;;:::i;:::-;;;;;;;;23266:295;;:::o;24461:285::-;24593:41;24612:12;:10;:12::i;:::-;24626:7;24593:18;:41::i;:::-;24585:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24699:39;24713:4;24719:2;24723:7;24732:5;24699:13;:39::i;:::-;24461:285;;;;:::o;42897:45::-;;;;:::o;43020:256::-;43093:13;43127:16;43135:7;43127;:16::i;:::-;43119:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43206:62;;;;;;;;;;;;;;;;;;;43020:256;;;:::o;23632:164::-;23729:4;23753:18;:25;23772:5;23753:25;;;;;;;;;;;;;;;:35;23779:8;23753:35;;;;;;;;;;;;;;;;;;;;;;;;;23746:42;;23632:164;;;;:::o;42483:244::-;41760:12;:10;:12::i;:::-;41749:23;;:7;:5;:7::i;:::-;:23;;;41741:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42592:1:::1;42572:22;;:8;:22;;;;42564:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42682:8;42653:38;;42674:6;;;;;;;;;;;42653:38;;;;;;;;;;;;42711:8;42702:6;;:17;;;;;;;;;;;;;;;;;;42483:244:::0;:::o;20581:292::-;20683:4;20722:25;20707:40;;;:11;:40;;;;:105;;;;20779:33;20764:48;;;:11;:48;;;;20707:105;:158;;;;20829:36;20853:11;20829:23;:36::i;:::-;20707:158;20700:165;;20581:292;;;:::o;26213:127::-;26278:4;26330:1;26302:30;;:7;:16;26310:7;26302:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26295:37;;26213:127;;;:::o;15869:98::-;15922:7;15949:10;15942:17;;15869:98;:::o;30090:174::-;30192:2;30165:15;:24;30181:7;30165:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30248:7;30244:2;30210:46;;30219:23;30234:7;30219:14;:23::i;:::-;30210:46;;;;;;;;;;;;30090:174;;:::o;26507:348::-;26600:4;26625:16;26633:7;26625;:16::i;:::-;26617:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26701:13;26717:23;26732:7;26717:14;:23::i;:::-;26701:39;;26770:5;26759:16;;:7;:16;;;:51;;;;26803:7;26779:31;;:20;26791:7;26779:11;:20::i;:::-;:31;;;26759:51;:87;;;;26814:32;26831:5;26838:7;26814:16;:32::i;:::-;26759:87;26751:96;;;26507:348;;;;:::o;29428:544::-;29553:4;29526:31;;:23;29541:7;29526:14;:23::i;:::-;:31;;;29518:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29636:1;29622:16;;:2;:16;;;;29614:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29692:39;29713:4;29719:2;29723:7;29692:20;:39::i;:::-;29796:29;29813:1;29817:7;29796:8;:29::i;:::-;29857:1;29838:9;:15;29848:4;29838:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29886:1;29869:9;:13;29879:2;29869:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29917:2;29898:7;:16;29906:7;29898:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29956:7;29952:2;29937:27;;29946:4;29937:27;;;;;;;;;;;;29428:544;;;:::o;27197:110::-;27273:26;27283:2;27287:7;27273:26;;;;;;;;;;;;:9;:26::i;:::-;27197:110;;:::o;25628:272::-;25742:28;25752:4;25758:2;25762:7;25742:9;:28::i;:::-;25789:48;25812:4;25818:2;25822:7;25831:5;25789:22;:48::i;:::-;25781:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25628:272;;;;:::o;19079:157::-;19164:4;19203:25;19188:40;;;:11;:40;;;;19181:47;;19079:157;;;:::o;35997:555::-;36107:45;36134:4;36140:2;36144:7;36107:26;:45::i;:::-;36185:1;36169:18;;:4;:18;;;36165:187;;;36204:40;36236:7;36204:31;:40::i;:::-;36165:187;;;36274:2;36266:10;;:4;:10;;;36262:90;;36293:47;36326:4;36332:7;36293:32;:47::i;:::-;36262:90;36165:187;36380:1;36366:16;;:2;:16;;;36362:183;;;36399:45;36436:7;36399:36;:45::i;:::-;36362:183;;;36472:4;36466:10;;:2;:10;;;36462:83;;36493:40;36521:2;36525:7;36493:27;:40::i;:::-;36462:83;36362:183;35997:555;;;:::o;27534:250::-;27630:18;27636:2;27640:7;27630:5;:18::i;:::-;27667:54;27698:1;27702:2;27706:7;27715:5;27667:22;:54::i;:::-;27659:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27534:250;;;:::o;30829:843::-;30950:4;30976:15;:2;:13;;;:15::i;:::-;30972:693;;;31028:2;31012:36;;;31049:12;:10;:12::i;:::-;31063:4;31069:7;31078:5;31012:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31008:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31275:1;31258:6;:13;:18;31254:341;;;31301:60;;;;;;;;;;:::i;:::-;;;;;;;;31254:341;31545:6;31539:13;31530:6;31526:2;31522:15;31515:38;31008:602;31145:45;;;31135:55;;;:6;:55;;;;31128:62;;;;;30972:693;31649:4;31642:11;;30829:843;;;;;;;:::o;32285:93::-;;;;:::o;37275:164::-;37379:10;:17;;;;37352:15;:24;37368:7;37352:24;;;;;;;;;;;:44;;;;37407:10;37423:7;37407:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37275:164;:::o;38066:988::-;38332:22;38382:1;38357:22;38374:4;38357:16;:22::i;:::-;:26;;;;:::i;:::-;38332:51;;38394:18;38415:17;:26;38433:7;38415:26;;;;;;;;;;;;38394:47;;38562:14;38548:10;:28;38544:328;;38593:19;38615:12;:18;38628:4;38615:18;;;;;;;;;;;;;;;:34;38634:14;38615:34;;;;;;;;;;;;38593:56;;38699:11;38666:12;:18;38679:4;38666:18;;;;;;;;;;;;;;;:30;38685:10;38666:30;;;;;;;;;;;:44;;;;38816:10;38783:17;:30;38801:11;38783:30;;;;;;;;;;;:43;;;;38544:328;;38968:17;:26;38986:7;38968:26;;;;;;;;;;;38961:33;;;39012:12;:18;39025:4;39012:18;;;;;;;;;;;;;;;:34;39031:14;39012:34;;;;;;;;;;;39005:41;;;38066:988;;;;:::o;39349:1079::-;39602:22;39647:1;39627:10;:17;;;;:21;;;;:::i;:::-;39602:46;;39659:18;39680:15;:24;39696:7;39680:24;;;;;;;;;;;;39659:45;;40031:19;40053:10;40064:14;40053:26;;;;;;;;;;;;;;;;;;;;;;;;40031:48;;40117:11;40092:10;40103;40092:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40228:10;40197:15;:28;40213:11;40197:28;;;;;;;;;;;:41;;;;40369:15;:24;40385:7;40369:24;;;;;;;;;;;40362:31;;;40404:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39349:1079;;;;:::o;36853:221::-;36938:14;36955:20;36972:2;36955:16;:20::i;:::-;36938:37;;37013:7;36986:12;:16;36999:2;36986:16;;;;;;;;;;;;;;;:24;37003:6;36986:24;;;;;;;;;;;:34;;;;37060:6;37031:17;:26;37049:7;37031:26;;;;;;;;;;;:35;;;;36853:221;;;:::o;28120:382::-;28214:1;28200:16;;:2;:16;;;;28192:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28273:16;28281:7;28273;:16::i;:::-;28272:17;28264:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28335:45;28364:1;28368:2;28372:7;28335:20;:45::i;:::-;28410:1;28393:9;:13;28403:2;28393:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28441:2;28422:7;:16;28430:7;28422:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28486:7;28482:2;28461:33;;28478:1;28461:33;;;;;;;;;;;;28120:382;;:::o;7986:422::-;8046:4;8254:12;8365:7;8353:20;8345:28;;8399:1;8392:4;:8;8385:15;;;7986:422;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:139::-;;439:6;426:20;417:29;;455:33;482:5;455:33;:::i;:::-;407:87;;;;:::o;500:133::-;;581:6;568:20;559:29;;597:30;621:5;597:30;:::i;:::-;549:84;;;;:::o;639:137::-;;722:6;709:20;700:29;;738:32;764:5;738:32;:::i;:::-;690:86;;;;:::o;782:141::-;;869:6;863:13;854:22;;885:32;911:5;885:32;:::i;:::-;844:79;;;;:::o;942:271::-;;1046:3;1039:4;1031:6;1027:17;1023:27;1013:2;;1064:1;1061;1054:12;1013:2;1104:6;1091:20;1129:78;1203:3;1195:6;1188:4;1180:6;1176:17;1129:78;:::i;:::-;1120:87;;1003:210;;;;;:::o;1219:139::-;;1303:6;1290:20;1281:29;;1319:33;1346:5;1319:33;:::i;:::-;1271:87;;;;:::o;1364:262::-;;1472:2;1460:9;1451:7;1447:23;1443:32;1440:2;;;1488:1;1485;1478:12;1440:2;1531:1;1556:53;1601:7;1592:6;1581:9;1577:22;1556:53;:::i;:::-;1546:63;;1502:117;1430:196;;;;:::o;1632:407::-;;;1757:2;1745:9;1736:7;1732:23;1728:32;1725:2;;;1773:1;1770;1763:12;1725:2;1816:1;1841:53;1886:7;1877:6;1866:9;1862:22;1841:53;:::i;:::-;1831:63;;1787:117;1943:2;1969:53;2014:7;2005:6;1994:9;1990:22;1969:53;:::i;:::-;1959:63;;1914:118;1715:324;;;;;:::o;2045:552::-;;;;2187:2;2175:9;2166:7;2162:23;2158:32;2155:2;;;2203:1;2200;2193:12;2155:2;2246:1;2271:53;2316:7;2307:6;2296:9;2292:22;2271:53;:::i;:::-;2261:63;;2217:117;2373:2;2399:53;2444:7;2435:6;2424:9;2420:22;2399:53;:::i;:::-;2389:63;;2344:118;2501:2;2527:53;2572:7;2563:6;2552:9;2548:22;2527:53;:::i;:::-;2517:63;;2472:118;2145:452;;;;;:::o;2603:809::-;;;;;2771:3;2759:9;2750:7;2746:23;2742:33;2739:2;;;2788:1;2785;2778:12;2739:2;2831:1;2856:53;2901:7;2892:6;2881:9;2877:22;2856:53;:::i;:::-;2846:63;;2802:117;2958:2;2984:53;3029:7;3020:6;3009:9;3005:22;2984:53;:::i;:::-;2974:63;;2929:118;3086:2;3112:53;3157:7;3148:6;3137:9;3133:22;3112:53;:::i;:::-;3102:63;;3057:118;3242:2;3231:9;3227:18;3214:32;3273:18;3265:6;3262:30;3259:2;;;3305:1;3302;3295:12;3259:2;3333:62;3387:7;3378:6;3367:9;3363:22;3333:62;:::i;:::-;3323:72;;3185:220;2729:683;;;;;;;:::o;3418:401::-;;;3540:2;3528:9;3519:7;3515:23;3511:32;3508:2;;;3556:1;3553;3546:12;3508:2;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:50;3794:7;3785:6;3774:9;3770:22;3752:50;:::i;:::-;3742:60;;3697:115;3498:321;;;;;:::o;3825:407::-;;;3950:2;3938:9;3929:7;3925:23;3921:32;3918:2;;;3966:1;3963;3956:12;3918:2;4009:1;4034:53;4079:7;4070:6;4059:9;4055:22;4034:53;:::i;:::-;4024:63;;3980:117;4136:2;4162:53;4207:7;4198:6;4187:9;4183:22;4162:53;:::i;:::-;4152:63;;4107:118;3908:324;;;;;:::o;4238:260::-;;4345:2;4333:9;4324:7;4320:23;4316:32;4313:2;;;4361:1;4358;4351:12;4313:2;4404:1;4429:52;4473:7;4464:6;4453:9;4449:22;4429:52;:::i;:::-;4419:62;;4375:116;4303:195;;;;:::o;4504:282::-;;4622:2;4610:9;4601:7;4597:23;4593:32;4590:2;;;4638:1;4635;4628:12;4590:2;4681:1;4706:63;4761:7;4752:6;4741:9;4737:22;4706:63;:::i;:::-;4696:73;;4652:127;4580:206;;;;:::o;4792:262::-;;4900:2;4888:9;4879:7;4875:23;4871:32;4868:2;;;4916:1;4913;4906:12;4868:2;4959:1;4984:53;5029:7;5020:6;5009:9;5005:22;4984:53;:::i;:::-;4974:63;;4930:117;4858:196;;;;:::o;5060:118::-;5147:24;5165:5;5147:24;:::i;:::-;5142:3;5135:37;5125:53;;:::o;5184:109::-;5265:21;5280:5;5265:21;:::i;:::-;5260:3;5253:34;5243:50;;:::o;5299:360::-;;5413:38;5445:5;5413:38;:::i;:::-;5467:70;5530:6;5525:3;5467:70;:::i;:::-;5460:77;;5546:52;5591:6;5586:3;5579:4;5572:5;5568:16;5546:52;:::i;:::-;5623:29;5645:6;5623:29;:::i;:::-;5618:3;5614:39;5607:46;;5389:270;;;;;:::o;5665:364::-;;5781:39;5814:5;5781:39;:::i;:::-;5836:71;5900:6;5895:3;5836:71;:::i;:::-;5829:78;;5916:52;5961:6;5956:3;5949:4;5942:5;5938:16;5916:52;:::i;:::-;5993:29;6015:6;5993:29;:::i;:::-;5988:3;5984:39;5977:46;;5757:272;;;;;:::o;6035:313::-;;6198:67;6262:2;6257:3;6198:67;:::i;:::-;6191:74;;6295:17;6291:1;6286:3;6282:11;6275:38;6339:2;6334:3;6330:12;6323:19;;6181:167;;;:::o;6354:375::-;;6517:67;6581:2;6576:3;6517:67;:::i;:::-;6510:74;;6614:34;6610:1;6605:3;6601:11;6594:55;6680:13;6675:2;6670:3;6666:12;6659:35;6720:2;6715:3;6711:12;6704:19;;6500:229;;;:::o;6735:382::-;;6898:67;6962:2;6957:3;6898:67;:::i;:::-;6891:74;;6995:34;6991:1;6986:3;6982:11;6975:55;7061:20;7056:2;7051:3;7047:12;7040:42;7108:2;7103:3;7099:12;7092:19;;6881:236;;;:::o;7123:370::-;;7286:67;7350:2;7345:3;7286:67;:::i;:::-;7279:74;;7383:34;7379:1;7374:3;7370:11;7363:55;7449:8;7444:2;7439:3;7435:12;7428:30;7484:2;7479:3;7475:12;7468:19;;7269:224;;;:::o;7499:326::-;;7662:67;7726:2;7721:3;7662:67;:::i;:::-;7655:74;;7759:30;7755:1;7750:3;7746:11;7739:51;7816:2;7811:3;7807:12;7800:19;;7645:180;;;:::o;7831:368::-;;7994:67;8058:2;8053:3;7994:67;:::i;:::-;7987:74;;8091:34;8087:1;8082:3;8078:11;8071:55;8157:6;8152:2;8147:3;8143:12;8136:28;8190:2;8185:3;8181:12;8174:19;;7977:222;;;:::o;8205:323::-;;8368:67;8432:2;8427:3;8368:67;:::i;:::-;8361:74;;8465:27;8461:1;8456:3;8452:11;8445:48;8519:2;8514:3;8510:12;8503:19;;8351:177;;;:::o;8534:317::-;;8697:67;8761:2;8756:3;8697:67;:::i;:::-;8690:74;;8794:21;8790:1;8785:3;8781:11;8774:42;8842:2;8837:3;8833:12;8826:19;;8680:171;;;:::o;8857:376::-;;9020:67;9084:2;9079:3;9020:67;:::i;:::-;9013:74;;9117:34;9113:1;9108:3;9104:11;9097:55;9183:14;9178:2;9173:3;9169:12;9162:36;9224:2;9219:3;9215:12;9208:19;;9003:230;;;:::o;9239:319::-;;9402:67;9466:2;9461:3;9402:67;:::i;:::-;9395:74;;9499:23;9495:1;9490:3;9486:11;9479:44;9549:2;9544:3;9540:12;9533:19;;9385:173;;;:::o;9564:388::-;;9727:67;9791:2;9786:3;9727:67;:::i;:::-;9720:74;;9824:34;9820:1;9815:3;9811:11;9804:55;9890:26;9885:2;9880:3;9876:12;9869:48;9943:2;9938:3;9934:12;9927:19;;9710:242;;;:::o;9958:374::-;;10121:67;10185:2;10180:3;10121:67;:::i;:::-;10114:74;;10218:34;10214:1;10209:3;10205:11;10198:55;10284:12;10279:2;10274:3;10270:12;10263:34;10323:2;10318:3;10314:12;10307:19;;10104:228;;;:::o;10338:373::-;;10501:67;10565:2;10560:3;10501:67;:::i;:::-;10494:74;;10598:34;10594:1;10589:3;10585:11;10578:55;10664:11;10659:2;10654:3;10650:12;10643:33;10702:2;10697:3;10693:12;10686:19;;10484:227;;;:::o;10717:305::-;;10880:66;10944:1;10939:3;10880:66;:::i;:::-;10873:73;;10976:10;10972:1;10967:3;10963:11;10956:31;11013:2;11008:3;11004:12;10997:19;;10863:159;;;:::o;11028:320::-;;11191:67;11255:2;11250:3;11191:67;:::i;:::-;11184:74;;11288:24;11284:1;11279:3;11275:11;11268:45;11339:2;11334:3;11330:12;11323:19;;11174:174;;;:::o;11354:330::-;;11517:67;11581:2;11576:3;11517:67;:::i;:::-;11510:74;;11614:34;11610:1;11605:3;11601:11;11594:55;11675:2;11670:3;11666:12;11659:19;;11500:184;;;:::o;11690:376::-;;11853:67;11917:2;11912:3;11853:67;:::i;:::-;11846:74;;11950:34;11946:1;11941:3;11937:11;11930:55;12016:14;12011:2;12006:3;12002:12;11995:36;12057:2;12052:3;12048:12;12041:19;;11836:230;;;:::o;12072:330::-;;12235:67;12299:2;12294:3;12235:67;:::i;:::-;12228:74;;12332:34;12328:1;12323:3;12319:11;12312:55;12393:2;12388:3;12384:12;12377:19;;12218:184;;;:::o;12408:373::-;;12571:67;12635:2;12630:3;12571:67;:::i;:::-;12564:74;;12668:34;12664:1;12659:3;12655:11;12648:55;12734:11;12729:2;12724:3;12720:12;12713:33;12772:2;12767:3;12763:12;12756:19;;12554:227;;;:::o;12787:379::-;;12950:67;13014:2;13009:3;12950:67;:::i;:::-;12943:74;;13047:34;13043:1;13038:3;13034:11;13027:55;13113:17;13108:2;13103:3;13099:12;13092:39;13157:2;13152:3;13148:12;13141:19;;12933:233;;;:::o;13172:365::-;;13335:67;13399:2;13394:3;13335:67;:::i;:::-;13328:74;;13432:34;13428:1;13423:3;13419:11;13412:55;13498:3;13493:2;13488:3;13484:12;13477:25;13528:2;13523:3;13519:12;13512:19;;13318:219;;;:::o;13543:381::-;;13706:67;13770:2;13765:3;13706:67;:::i;:::-;13699:74;;13803:34;13799:1;13794:3;13790:11;13783:55;13869:19;13864:2;13859:3;13855:12;13848:41;13915:2;13910:3;13906:12;13899:19;;13689:235;;;:::o;13930:376::-;;14093:67;14157:2;14152:3;14093:67;:::i;:::-;14086:74;;14190:34;14186:1;14181:3;14177:11;14170:55;14256:14;14251:2;14246:3;14242:12;14235:36;14297:2;14292:3;14288:12;14281:19;;14076:230;;;:::o;14312:118::-;14399:24;14417:5;14399:24;:::i;:::-;14394:3;14387:37;14377:53;;:::o;14436:222::-;;14567:2;14556:9;14552:18;14544:26;;14580:71;14648:1;14637:9;14633:17;14624:6;14580:71;:::i;:::-;14534:124;;;;:::o;14664:640::-;;14897:3;14886:9;14882:19;14874:27;;14911:71;14979:1;14968:9;14964:17;14955:6;14911:71;:::i;:::-;14992:72;15060:2;15049:9;15045:18;15036:6;14992:72;:::i;:::-;15074;15142:2;15131:9;15127:18;15118:6;15074:72;:::i;:::-;15193:9;15187:4;15183:20;15178:2;15167:9;15163:18;15156:48;15221:76;15292:4;15283:6;15221:76;:::i;:::-;15213:84;;14864:440;;;;;;;:::o;15310:210::-;;15435:2;15424:9;15420:18;15412:26;;15448:65;15510:1;15499:9;15495:17;15486:6;15448:65;:::i;:::-;15402:118;;;;:::o;15526:313::-;;15677:2;15666:9;15662:18;15654:26;;15726:9;15720:4;15716:20;15712:1;15701:9;15697:17;15690:47;15754:78;15827:4;15818:6;15754:78;:::i;:::-;15746:86;;15644:195;;;;:::o;15845:419::-;;16049:2;16038:9;16034:18;16026:26;;16098:9;16092:4;16088:20;16084:1;16073:9;16069:17;16062:47;16126:131;16252:4;16126:131;:::i;:::-;16118:139;;16016:248;;;:::o;16270:419::-;;16474:2;16463:9;16459:18;16451:26;;16523:9;16517:4;16513:20;16509:1;16498:9;16494:17;16487:47;16551:131;16677:4;16551:131;:::i;:::-;16543:139;;16441:248;;;:::o;16695:419::-;;16899:2;16888:9;16884:18;16876:26;;16948:9;16942:4;16938:20;16934:1;16923:9;16919:17;16912:47;16976:131;17102:4;16976:131;:::i;:::-;16968:139;;16866:248;;;:::o;17120:419::-;;17324:2;17313:9;17309:18;17301:26;;17373:9;17367:4;17363:20;17359:1;17348:9;17344:17;17337:47;17401:131;17527:4;17401:131;:::i;:::-;17393:139;;17291:248;;;:::o;17545:419::-;;17749:2;17738:9;17734:18;17726:26;;17798:9;17792:4;17788:20;17784:1;17773:9;17769:17;17762:47;17826:131;17952:4;17826:131;:::i;:::-;17818:139;;17716:248;;;:::o;17970:419::-;;18174:2;18163:9;18159:18;18151:26;;18223:9;18217:4;18213:20;18209:1;18198:9;18194:17;18187:47;18251:131;18377:4;18251:131;:::i;:::-;18243:139;;18141:248;;;:::o;18395:419::-;;18599:2;18588:9;18584:18;18576:26;;18648:9;18642:4;18638:20;18634:1;18623:9;18619:17;18612:47;18676:131;18802:4;18676:131;:::i;:::-;18668:139;;18566:248;;;:::o;18820:419::-;;19024:2;19013:9;19009:18;19001:26;;19073:9;19067:4;19063:20;19059:1;19048:9;19044:17;19037:47;19101:131;19227:4;19101:131;:::i;:::-;19093:139;;18991:248;;;:::o;19245:419::-;;19449:2;19438:9;19434:18;19426:26;;19498:9;19492:4;19488:20;19484:1;19473:9;19469:17;19462:47;19526:131;19652:4;19526:131;:::i;:::-;19518:139;;19416:248;;;:::o;19670:419::-;;19874:2;19863:9;19859:18;19851:26;;19923:9;19917:4;19913:20;19909:1;19898:9;19894:17;19887:47;19951:131;20077:4;19951:131;:::i;:::-;19943:139;;19841:248;;;:::o;20095:419::-;;20299:2;20288:9;20284:18;20276:26;;20348:9;20342:4;20338:20;20334:1;20323:9;20319:17;20312:47;20376:131;20502:4;20376:131;:::i;:::-;20368:139;;20266:248;;;:::o;20520:419::-;;20724:2;20713:9;20709:18;20701:26;;20773:9;20767:4;20763:20;20759:1;20748:9;20744:17;20737:47;20801:131;20927:4;20801:131;:::i;:::-;20793:139;;20691:248;;;:::o;20945:419::-;;21149:2;21138:9;21134:18;21126:26;;21198:9;21192:4;21188:20;21184:1;21173:9;21169:17;21162:47;21226:131;21352:4;21226:131;:::i;:::-;21218:139;;21116:248;;;:::o;21370:419::-;;21574:2;21563:9;21559:18;21551:26;;21623:9;21617:4;21613:20;21609:1;21598:9;21594:17;21587:47;21651:131;21777:4;21651:131;:::i;:::-;21643:139;;21541:248;;;:::o;21795:419::-;;21999:2;21988:9;21984:18;21976:26;;22048:9;22042:4;22038:20;22034:1;22023:9;22019:17;22012:47;22076:131;22202:4;22076:131;:::i;:::-;22068:139;;21966:248;;;:::o;22220:419::-;;22424:2;22413:9;22409:18;22401:26;;22473:9;22467:4;22463:20;22459:1;22448:9;22444:17;22437:47;22501:131;22627:4;22501:131;:::i;:::-;22493:139;;22391:248;;;:::o;22645:419::-;;22849:2;22838:9;22834:18;22826:26;;22898:9;22892:4;22888:20;22884:1;22873:9;22869:17;22862:47;22926:131;23052:4;22926:131;:::i;:::-;22918:139;;22816:248;;;:::o;23070:419::-;;23274:2;23263:9;23259:18;23251:26;;23323:9;23317:4;23313:20;23309:1;23298:9;23294:17;23287:47;23351:131;23477:4;23351:131;:::i;:::-;23343:139;;23241:248;;;:::o;23495:419::-;;23699:2;23688:9;23684:18;23676:26;;23748:9;23742:4;23738:20;23734:1;23723:9;23719:17;23712:47;23776:131;23902:4;23776:131;:::i;:::-;23768:139;;23666:248;;;:::o;23920:419::-;;24124:2;24113:9;24109:18;24101:26;;24173:9;24167:4;24163:20;24159:1;24148:9;24144:17;24137:47;24201:131;24327:4;24201:131;:::i;:::-;24193:139;;24091:248;;;:::o;24345:419::-;;24549:2;24538:9;24534:18;24526:26;;24598:9;24592:4;24588:20;24584:1;24573:9;24569:17;24562:47;24626:131;24752:4;24626:131;:::i;:::-;24618:139;;24516:248;;;:::o;24770:419::-;;24974:2;24963:9;24959:18;24951:26;;25023:9;25017:4;25013:20;25009:1;24998:9;24994:17;24987:47;25051:131;25177:4;25051:131;:::i;:::-;25043:139;;24941:248;;;:::o;25195:419::-;;25399:2;25388:9;25384:18;25376:26;;25448:9;25442:4;25438:20;25434:1;25423:9;25419:17;25412:47;25476:131;25602:4;25476:131;:::i;:::-;25468:139;;25366:248;;;:::o;25620:222::-;;25751:2;25740:9;25736:18;25728:26;;25764:71;25832:1;25821:9;25817:17;25808:6;25764:71;:::i;:::-;25718:124;;;;:::o;25848:283::-;;25914:2;25908:9;25898:19;;25956:4;25948:6;25944:17;26063:6;26051:10;26048:22;26027:18;26015:10;26012:34;26009:62;26006:2;;;26074:18;;:::i;:::-;26006:2;26114:10;26110:2;26103:22;25888:243;;;;:::o;26137:331::-;;26288:18;26280:6;26277:30;26274:2;;;26310:18;;:::i;:::-;26274:2;26395:4;26391:9;26384:4;26376:6;26372:17;26368:33;26360:41;;26456:4;26450;26446:15;26438:23;;26203:265;;;:::o;26474:98::-;;26559:5;26553:12;26543:22;;26532:40;;;:::o;26578:99::-;;26664:5;26658:12;26648:22;;26637:40;;;:::o;26683:168::-;;26800:6;26795:3;26788:19;26840:4;26835:3;26831:14;26816:29;;26778:73;;;;:::o;26857:169::-;;26975:6;26970:3;26963:19;27015:4;27010:3;27006:14;26991:29;;26953:73;;;;:::o;27032:305::-;;27091:20;27109:1;27091:20;:::i;:::-;27086:25;;27125:20;27143:1;27125:20;:::i;:::-;27120:25;;27279:1;27211:66;27207:74;27204:1;27201:81;27198:2;;;27285:18;;:::i;:::-;27198:2;27329:1;27326;27322:9;27315:16;;27076:261;;;;:::o;27343:348::-;;27406:20;27424:1;27406:20;:::i;:::-;27401:25;;27440:20;27458:1;27440:20;:::i;:::-;27435:25;;27628:1;27560:66;27556:74;27553:1;27550:81;27545:1;27538:9;27531:17;27527:105;27524:2;;;27635:18;;:::i;:::-;27524:2;27683:1;27680;27676:9;27665:20;;27391:300;;;;:::o;27697:191::-;;27757:20;27775:1;27757:20;:::i;:::-;27752:25;;27791:20;27809:1;27791:20;:::i;:::-;27786:25;;27830:1;27827;27824:8;27821:2;;;27835:18;;:::i;:::-;27821:2;27880:1;27877;27873:9;27865:17;;27742:146;;;;:::o;27894:96::-;;27960:24;27978:5;27960:24;:::i;:::-;27949:35;;27939:51;;;:::o;27996:90::-;;28073:5;28066:13;28059:21;28048:32;;28038:48;;;:::o;28092:149::-;;28168:66;28161:5;28157:78;28146:89;;28136:105;;;:::o;28247:126::-;;28324:42;28317:5;28313:54;28302:65;;28292:81;;;:::o;28379:77::-;;28445:5;28434:16;;28424:32;;;:::o;28462:154::-;28546:6;28541:3;28536;28523:30;28608:1;28599:6;28594:3;28590:16;28583:27;28513:103;;;:::o;28622:307::-;28690:1;28700:113;28714:6;28711:1;28708:13;28700:113;;;28799:1;28794:3;28790:11;28784:18;28780:1;28775:3;28771:11;28764:39;28736:2;28733:1;28729:10;28724:15;;28700:113;;;28831:6;28828:1;28825:13;28822:2;;;28911:1;28902:6;28897:3;28893:16;28886:27;28822:2;28671:258;;;;:::o;28935:320::-;;29016:1;29010:4;29006:12;28996:22;;29063:1;29057:4;29053:12;29084:18;29074:2;;29140:4;29132:6;29128:17;29118:27;;29074:2;29202;29194:6;29191:14;29171:18;29168:38;29165:2;;;29221:18;;:::i;:::-;29165:2;28986:269;;;;:::o;29261:233::-;;29323:24;29341:5;29323:24;:::i;:::-;29314:33;;29369:66;29362:5;29359:77;29356:2;;;29439:18;;:::i;:::-;29356:2;29486:1;29479:5;29475:13;29468:20;;29304:190;;;:::o;29500:180::-;29548:77;29545:1;29538:88;29645:4;29642:1;29635:15;29669:4;29666:1;29659:15;29686:180;29734:77;29731:1;29724:88;29831:4;29828:1;29821:15;29855:4;29852:1;29845:15;29872:180;29920:77;29917:1;29910:88;30017:4;30014:1;30007:15;30041:4;30038:1;30031:15;30058:102;;30150:2;30146:7;30141:2;30134:5;30130:14;30126:28;30116:38;;30106:54;;;:::o;30166:122::-;30239:24;30257:5;30239:24;:::i;:::-;30232:5;30229:35;30219:2;;30278:1;30275;30268:12;30219:2;30209:79;:::o;30294:116::-;30364:21;30379:5;30364:21;:::i;:::-;30357:5;30354:32;30344:2;;30400:1;30397;30390:12;30344:2;30334:76;:::o;30416:120::-;30488:23;30505:5;30488:23;:::i;:::-;30481:5;30478:34;30468:2;;30526:1;30523;30516:12;30468:2;30458:78;:::o;30542:122::-;30615:24;30633:5;30615:24;:::i;:::-;30608:5;30605:35;30595:2;;30654:1;30651;30644:12;30595:2;30585:79;:::o

Swarm Source

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