ETH Price: $2,599.42 (-2.87%)

Token

Anatomy of Kevin (AOK)
 

Overview

Max Total Supply

1,138 AOK

Holders

177

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 AOK
0x5450e02ae67cbf741f285e5ec0f194518ef496fc
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:
AnatomyofKevin

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)


//
//░█████╗░███╗░░██╗░█████╗░████████╗░█████╗░███╗░░░███╗██╗░░░██╗  ░█████╗░███████╗
//██╔══██╗████╗░██║██╔══██╗╚══██╔══╝██╔══██╗████╗░████║╚██╗░██╔╝  ██╔══██╗██╔════╝
//███████║██╔██╗██║███████║░░░██║░░░██║░░██║██╔████╔██║░╚████╔╝░  ██║░░██║█████╗░░
//██╔══██║██║╚████║██╔══██║░░░██║░░░██║░░██║██║╚██╔╝██║░░╚██╔╝░░  ██║░░██║██╔══╝░░
//██║░░██║██║░╚███║██║░░██║░░░██║░░░╚█████╔╝██║░╚═╝░██║░░░██║░░░  ╚█████╔╝██║░░░░░
//╚═╝░░╚═╝╚═╝░░╚══╝╚═╝░░╚═╝░░░╚═╝░░░░╚════╝░╚═╝░░░░░╚═╝░░░╚═╝░░░  ░╚════╝░╚═╝░░░░░

//██╗░░██╗███████╗██╗░░░██╗██╗███╗░░██╗
//██║░██╔╝██╔════╝██║░░░██║██║████╗░██║
//█████═╝░█████╗░░╚██╗░██╔╝██║██╔██╗██║
//██╔═██╗░██╔══╝░░░╚████╔╝░██║██║╚████║
//██║░╚██╗███████╗░░╚██╔╝░░██║██║░╚███║
//╚═╝░░╚═╝╚══════╝░░░╚═╝░░░╚═╝╚═╝░░╚══╝

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)



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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



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





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



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





// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)



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

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

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

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

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

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

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

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

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

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

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

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





// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)



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




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



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





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



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

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

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





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



/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




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



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


// File contracts/ERC721A.sol


// Creator: Chiru Labs


/**
 * @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 (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 = 0;

    // 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 = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; 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);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; 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 override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            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.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership(prevOwnership.addr, 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 AnatomyofKevin is ERC721A, Ownable {

    string public baseURI = "ipfs://QmY1VncCQ3knPGbC5ZnSNw9687D6EWjzu4HFdECX6kxJHH/";
    string public contractURI = "ipfs://QmTHYEn42g4nLJD3P4f2PYhHRN4hytWxpBnF73LczfoyFg";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX_FREE = 5;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant FREE_MAX_SUPPLY = 555;
    uint256 public constant MAX_SUPPLY = 2222;
    uint256 public constant price = 0.0069 ether;

    bool public paused = true;

    constructor() ERC721A("Anatomy of Kevin", "AOK") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");

        if(FREE_MAX_SUPPLY >= totalSupply()){
            require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx");
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }

        _safeMint(_caller, _amount);
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000805560405180606001604052806036815260200162004a2e60369139600890805190602001906200003992919062000229565b5060405180606001604052806035815260200162004a6460359139600990805190602001906200006b92919062000229565b506001600a60006101000a81548160ff0219169083151502179055503480156200009457600080fd5b506040518060400160405280601081526020017f416e61746f6d79206f66204b6576696e000000000000000000000000000000008152506040518060400160405280600381526020017f414f4b000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200011992919062000229565b5080600290805190602001906200013292919062000229565b50505062000155620001496200015b60201b60201c565b6200016360201b60201c565b6200033e565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023790620002d9565b90600052602060002090601f0160209004810192826200025b5760008555620002a7565b82601f106200027657805160ff1916838001178555620002a7565b82800160010185558215620002a7579182015b82811115620002a657825182559160200191906001019062000289565b5b509050620002b69190620002ba565b5090565b5b80821115620002d5576000816000905550600101620002bb565b5090565b60006002820490506001821680620002f257607f821691505b602082108114156200030957620003086200030f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146e0806200034e6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063cd7c03261161006f578063cd7c032614610714578063e8a3d4851461073f578063e985e9c51461076a578063f2fde38b146107a7578063f43a22dc146107d0576101f9565b8063a22cb4651461065a578063b88d4fde14610683578063c6682862146106ac578063c87b56dd146106d7576101f9565b8063938e3d7b116100dc578063938e3d7b146105bf57806395d89b41146105e8578063a035b1fe14610613578063a0712d681461063e576101f9565b806370a0823114610515578063715018a6146105525780638069876d146105695780638da5cb5b14610594576101f9565b806332cb6b0c116101905780634f6ccce71161015f5780634f6ccce71461041c57806355f804b3146104595780635c975abb146104825780636352211e146104ad5780636c0360eb146104ea576101f9565b806332cb6b0c146103865780633ccfd60b146103b157806342842e0e146103c8578063463fff79146103f1576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806318160ddd146102f557806323b872dd146103205780632f745c5914610349576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906131b4565b6107fb565b6040516102329190613da9565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d919061318b565b610945565b005b34801561027057600080fd5b506102796109de565b6040516102869190613dc4565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613270565b610a70565b6040516102c39190613d42565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee919061314f565b610af5565b005b34801561030157600080fd5b5061030a610c0e565b6040516103179190614146565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190613049565b610c17565b005b34801561035557600080fd5b50610370600480360381019061036b919061314f565b610c27565b60405161037d9190614146565b60405180910390f35b34801561039257600080fd5b5061039b610e25565b6040516103a89190614146565b60405180910390f35b3480156103bd57600080fd5b506103c6610e2b565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190613049565b610f63565b005b3480156103fd57600080fd5b50610406610f83565b6040516104139190614146565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190613270565b610f88565b6040516104509190614146565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b919061322f565b610fdb565b005b34801561048e57600080fd5b50610497611071565b6040516104a49190613da9565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190613270565b611084565b6040516104e19190613d42565b60405180910390f35b3480156104f657600080fd5b506104ff61109a565b60405161050c9190613dc4565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190612fe4565b611128565b6040516105499190614146565b60405180910390f35b34801561055e57600080fd5b50610567611211565b005b34801561057557600080fd5b5061057e611299565b60405161058b9190614146565b60405180910390f35b3480156105a057600080fd5b506105a961129f565b6040516105b69190613d42565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e1919061322f565b6112c9565b005b3480156105f457600080fd5b506105fd61135f565b60405161060a9190613dc4565b60405180910390f35b34801561061f57600080fd5b506106286113f1565b6040516106359190614146565b60405180910390f35b61065860048036038101906106539190613270565b6113fc565b005b34801561066657600080fd5b50610681600480360381019061067c9190613113565b611660565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190613098565b6117e1565b005b3480156106b857600080fd5b506106c161183d565b6040516106ce9190613dc4565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190613270565b611876565b60405161070b9190613dc4565b60405180910390f35b34801561072057600080fd5b50610729611955565b6040516107369190613d42565b60405180910390f35b34801561074b57600080fd5b5061075461196d565b6040516107619190613dc4565b60405180910390f35b34801561077657600080fd5b50610791600480360381019061078c919061300d565b6119fb565b60405161079e9190613da9565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c99190612fe4565b611aef565b005b3480156107dc57600080fd5b506107e5611be7565b6040516107f29190614146565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093e575061093d82611bec565b5b9050919050565b61094d611c56565b73ffffffffffffffffffffffffffffffffffffffff1661096b61129f565b73ffffffffffffffffffffffffffffffffffffffff16146109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890613fa6565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6060600180546109ed906144be565b80601f0160208091040260200160405190810160405280929190818152602001828054610a19906144be565b8015610a665780601f10610a3b57610100808354040283529160200191610a66565b820191906000526020600020905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b6000610a7b82611c5e565b610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190614106565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0082611084565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890614026565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b90611c56565b73ffffffffffffffffffffffffffffffffffffffff161480610bbf5750610bbe81610bb9611c56565b6119fb565b5b610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590613f06565b60405180910390fd5b610c09838383611c6b565b505050565b60008054905090565b610c22838383611d1d565b505050565b6000610c3283611128565b8210610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90613de6565b60405180910390fd5b6000610c7d610c0e565b905060008060005b83811015610de3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d7757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcf5786841415610dc0578195505050505050610e1f565b8380610dcb906144f0565b9450505b508080610ddb906144f0565b915050610c85565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e16906140e6565b60405180910390fd5b92915050565b6108ae81565b610e33611c56565b73ffffffffffffffffffffffffffffffffffffffff16610e5161129f565b73ffffffffffffffffffffffffffffffffffffffff1614610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90613fa6565b60405180910390fd5b60004790506000610eb6611c56565b73ffffffffffffffffffffffffffffffffffffffff1682604051610ed990613d2d565b60006040518083038185875af1925050503d8060008114610f16576040519150601f19603f3d011682016040523d82523d6000602084013e610f1b565b606091505b5050905080610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f56906140c6565b60405180910390fd5b5050565b610f7e838383604051806020016040528060008152506117e1565b505050565b600581565b6000610f92610c0e565b8210610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca90613ea6565b60405180910390fd5b819050919050565b610fe3611c56565b73ffffffffffffffffffffffffffffffffffffffff1661100161129f565b73ffffffffffffffffffffffffffffffffffffffff1614611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90613fa6565b60405180910390fd5b806008908051906020019061106d929190612db9565b5050565b600a60009054906101000a900460ff1681565b600061108f826122c4565b600001519050919050565b600880546110a7906144be565b80601f01602080910402602001604051908101604052809291908181526020018280546110d3906144be565b80156111205780601f106110f557610100808354040283529160200191611120565b820191906000526020600020905b81548152906001019060200180831161110357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090613f46565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611219611c56565b73ffffffffffffffffffffffffffffffffffffffff1661123761129f565b73ffffffffffffffffffffffffffffffffffffffff161461128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613fa6565b60405180910390fd5b611297600061241f565b565b61022b81565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112d1611c56565b73ffffffffffffffffffffffffffffffffffffffff166112ef61129f565b73ffffffffffffffffffffffffffffffffffffffff1614611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90613fa6565b60405180910390fd5b806009908051906020019061135b929190612db9565b5050565b60606002805461136e906144be565b80601f016020809104026020016040519081016040528092919081815260200182805461139a906144be565b80156113e75780601f106113bc576101008083540402835291602001916113e7565b820191906000526020600020905b8154815290600101906020018083116113ca57829003601f168201915b5050505050905090565b6618838370f3400081565b6000611406611c56565b9050600a60009054906101000a900460ff1615611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613e06565b60405180910390fd5b81611461610c0e565b61146b919061429b565b6108ae10156114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690613f26565b60405180910390fd5b600082116114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990613e66565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155790614126565b60405180910390fd5b611568610c0e565b61022b106115b95781600510156115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90613ee6565b60405180910390fd5b611652565b81600a10156115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f490613e86565b60405180910390fd5b346618838370f34000836116119190614322565b14611651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164890614006565b60405180910390fd5b5b61165c81836124e5565b5050565b611668611c56565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613fc6565b60405180910390fd5b80600660006116e3611c56565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611790611c56565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117d59190613da9565b60405180910390a35050565b6117ec848484611d1d565b6117f884848484612503565b611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e90614066565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061188182611c5e565b6118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790613f66565b60405180910390fd5b6000600880546118cf906144be565b9050116118eb576040518060200160405280600081525061194e565b60086118f68361269a565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161193e93929190613cfc565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b6009805461197a906144be565b80601f01602080910402602001604051908101604052809291908181526020018280546119a6906144be565b80156119f35780601f106119c8576101008083540402835291602001916119f3565b820191906000526020600020905b8154815290600101906020018083116119d657829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611a659190613d42565b60206040518083038186803b158015611a7d57600080fd5b505afa158015611a91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab59190613206565b73ffffffffffffffffffffffffffffffffffffffff161415611adb576001915050611ae9565b611ae58484612847565b9150505b92915050565b611af7611c56565b73ffffffffffffffffffffffffffffffffffffffff16611b1561129f565b73ffffffffffffffffffffffffffffffffffffffff1614611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613fa6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd290613e26565b60405180910390fd5b611be48161241f565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d28826122c4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d4f611c56565b73ffffffffffffffffffffffffffffffffffffffff161480611dab5750611d74611c56565b73ffffffffffffffffffffffffffffffffffffffff16611d9384610a70565b73ffffffffffffffffffffffffffffffffffffffff16145b80611dc75750611dc68260000151611dc1611c56565b6119fb565b5b905080611e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0090613fe6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290613f86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee290613ec6565b60405180910390fd5b611ef885858560016128db565b611f086000848460000151611c6b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461210e919061429b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122545761218481611c5e565b15612253576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122bc86868660016128e1565b505050505050565b6122cc612e3f565b6122d582611c5e565b612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90613e46565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461240657809250505061241a565b50808061241290614494565b91505061231a565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124ff8282604051806020016040528060008152506128e7565b5050565b60006125248473ffffffffffffffffffffffffffffffffffffffff16612da6565b1561268d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261254d611c56565b8786866040518563ffffffff1660e01b815260040161256f9493929190613d5d565b602060405180830381600087803b15801561258957600080fd5b505af19250505080156125ba57506040513d601f19601f820116820180604052508101906125b791906131dd565b60015b61263d573d80600081146125ea576040519150601f19603f3d011682016040523d82523d6000602084013e6125ef565b606091505b50600081511415612635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262c90614066565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612692565b600190505b949350505050565b606060008214156126e2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612842565b600082905060005b600082146127145780806126fd906144f0565b915050600a8261270d91906142f1565b91506126ea565b60008167ffffffffffffffff811115612756577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127885781602001600182028036833780820191505090505b5090505b6000851461283b576001826127a1919061437c565b9150600a856127b09190614539565b60306127bc919061429b565b60f81b8183815181106127f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561283491906142f1565b945061278c565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561295d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612954906140a6565b60405180910390fd5b61296681611c5e565b156129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299d90614086565b60405180910390fd5b600083116129e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e090614046565b60405180910390fd5b6129f660008583866128db565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612af39190614255565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b1a9190614255565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d8957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d296000888488612503565b612d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5f90614066565b60405180910390fd5b8180612d73906144f0565b9250508080612d81906144f0565b915050612cb8565b5080600081905550612d9e60008785886128e1565b505050505050565b600080823b905060008111915050919050565b828054612dc5906144be565b90600052602060002090601f016020900481019282612de75760008555612e2e565b82601f10612e0057805160ff1916838001178555612e2e565b82800160010185558215612e2e579182015b82811115612e2d578251825591602001919060010190612e12565b5b509050612e3b9190612e79565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e92576000816000905550600101612e7a565b5090565b6000612ea9612ea484614192565b614161565b905082815260208101848484011115612ec157600080fd5b612ecc848285614452565b509392505050565b6000612ee7612ee2846141c2565b614161565b905082815260208101848484011115612eff57600080fd5b612f0a848285614452565b509392505050565b600081359050612f2181614637565b92915050565b600081359050612f368161464e565b92915050565b600081359050612f4b81614665565b92915050565b600081519050612f6081614665565b92915050565b600082601f830112612f7757600080fd5b8135612f87848260208601612e96565b91505092915050565b600081519050612f9f8161467c565b92915050565b600082601f830112612fb657600080fd5b8135612fc6848260208601612ed4565b91505092915050565b600081359050612fde81614693565b92915050565b600060208284031215612ff657600080fd5b600061300484828501612f12565b91505092915050565b6000806040838503121561302057600080fd5b600061302e85828601612f12565b925050602061303f85828601612f12565b9150509250929050565b60008060006060848603121561305e57600080fd5b600061306c86828701612f12565b935050602061307d86828701612f12565b925050604061308e86828701612fcf565b9150509250925092565b600080600080608085870312156130ae57600080fd5b60006130bc87828801612f12565b94505060206130cd87828801612f12565b93505060406130de87828801612fcf565b925050606085013567ffffffffffffffff8111156130fb57600080fd5b61310787828801612f66565b91505092959194509250565b6000806040838503121561312657600080fd5b600061313485828601612f12565b925050602061314585828601612f27565b9150509250929050565b6000806040838503121561316257600080fd5b600061317085828601612f12565b925050602061318185828601612fcf565b9150509250929050565b60006020828403121561319d57600080fd5b60006131ab84828501612f27565b91505092915050565b6000602082840312156131c657600080fd5b60006131d484828501612f3c565b91505092915050565b6000602082840312156131ef57600080fd5b60006131fd84828501612f51565b91505092915050565b60006020828403121561321857600080fd5b600061322684828501612f90565b91505092915050565b60006020828403121561324157600080fd5b600082013567ffffffffffffffff81111561325b57600080fd5b61326784828501612fa5565b91505092915050565b60006020828403121561328257600080fd5b600061329084828501612fcf565b91505092915050565b6132a2816143b0565b82525050565b6132b1816143c2565b82525050565b60006132c282614207565b6132cc818561421d565b93506132dc818560208601614461565b6132e581614626565b840191505092915050565b60006132fb82614212565b6133058185614239565b9350613315818560208601614461565b61331e81614626565b840191505092915050565b600061333482614212565b61333e818561424a565b935061334e818560208601614461565b80840191505092915050565b60008154613367816144be565b613371818661424a565b9450600182166000811461338c576001811461339d576133d0565b60ff198316865281860193506133d0565b6133a6856141f2565b60005b838110156133c8578154818901526001820191506020810190506133a9565b838801955050505b50505092915050565b60006133e6602283614239565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061344c600683614239565b91507f50617573656400000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061348c602683614239565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134f2602a83614239565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613558600a83614239565b91507f4e6f2030206d696e7473000000000000000000000000000000000000000000006000830152602082019050919050565b6000613598601683614239565b91507f457863657373206d6178207065722070616964207478000000000000000000006000830152602082019050919050565b60006135d8602383614239565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061363e602583614239565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136a4601683614239565b91507f457863657373206d6178207065722066726565207478000000000000000000006000830152602082019050919050565b60006136e4603983614239565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b600061374a601283614239565b91507f45786365656473206d617820737570706c7900000000000000000000000000006000830152602082019050919050565b600061378a602b83614239565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006137f0601583614239565b91507f546f6b656e20646f6573206e6f742065786973742e00000000000000000000006000830152602082019050919050565b6000613830602683614239565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613896602083614239565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006138d6601a83614239565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000613916603283614239565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b600061397c601683614239565b91507f496e76616c69642066756e64732070726f7669646564000000000000000000006000830152602082019050919050565b60006139bc602283614239565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a2260008361422e565b9150600082019050919050565b6000613a3c602383614239565b91507f455243373231413a207175616e74697479206d7573742062652067726561746560008301527f72203000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aa2603383614239565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000613b08601d83614239565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000613b48602183614239565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bae600e83614239565b91507f4661696c656420746f2073656e640000000000000000000000000000000000006000830152602082019050919050565b6000613bee602e83614239565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000613c54602d83614239565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000613cba600c83614239565b91507f4e6f20636f6e74726163747300000000000000000000000000000000000000006000830152602082019050919050565b613cf681614448565b82525050565b6000613d08828661335a565b9150613d148285613329565b9150613d208284613329565b9150819050949350505050565b6000613d3882613a15565b9150819050919050565b6000602082019050613d576000830184613299565b92915050565b6000608082019050613d726000830187613299565b613d7f6020830186613299565b613d8c6040830185613ced565b8181036060830152613d9e81846132b7565b905095945050505050565b6000602082019050613dbe60008301846132a8565b92915050565b60006020820190508181036000830152613dde81846132f0565b905092915050565b60006020820190508181036000830152613dff816133d9565b9050919050565b60006020820190508181036000830152613e1f8161343f565b9050919050565b60006020820190508181036000830152613e3f8161347f565b9050919050565b60006020820190508181036000830152613e5f816134e5565b9050919050565b60006020820190508181036000830152613e7f8161354b565b9050919050565b60006020820190508181036000830152613e9f8161358b565b9050919050565b60006020820190508181036000830152613ebf816135cb565b9050919050565b60006020820190508181036000830152613edf81613631565b9050919050565b60006020820190508181036000830152613eff81613697565b9050919050565b60006020820190508181036000830152613f1f816136d7565b9050919050565b60006020820190508181036000830152613f3f8161373d565b9050919050565b60006020820190508181036000830152613f5f8161377d565b9050919050565b60006020820190508181036000830152613f7f816137e3565b9050919050565b60006020820190508181036000830152613f9f81613823565b9050919050565b60006020820190508181036000830152613fbf81613889565b9050919050565b60006020820190508181036000830152613fdf816138c9565b9050919050565b60006020820190508181036000830152613fff81613909565b9050919050565b6000602082019050818103600083015261401f8161396f565b9050919050565b6000602082019050818103600083015261403f816139af565b9050919050565b6000602082019050818103600083015261405f81613a2f565b9050919050565b6000602082019050818103600083015261407f81613a95565b9050919050565b6000602082019050818103600083015261409f81613afb565b9050919050565b600060208201905081810360008301526140bf81613b3b565b9050919050565b600060208201905081810360008301526140df81613ba1565b9050919050565b600060208201905081810360008301526140ff81613be1565b9050919050565b6000602082019050818103600083015261411f81613c47565b9050919050565b6000602082019050818103600083015261413f81613cad565b9050919050565b600060208201905061415b6000830184613ced565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614188576141876145f7565b5b8060405250919050565b600067ffffffffffffffff8211156141ad576141ac6145f7565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156141dd576141dc6145f7565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142608261440c565b915061426b8361440c565b9250826fffffffffffffffffffffffffffffffff038211156142905761428f61456a565b5b828201905092915050565b60006142a682614448565b91506142b183614448565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142e6576142e561456a565b5b828201905092915050565b60006142fc82614448565b915061430783614448565b92508261431757614316614599565b5b828204905092915050565b600061432d82614448565b915061433883614448565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143715761437061456a565b5b828202905092915050565b600061438782614448565b915061439283614448565b9250828210156143a5576143a461456a565b5b828203905092915050565b60006143bb82614428565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614405826143b0565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561447f578082015181840152602081019050614464565b8381111561448e576000848401525b50505050565b600061449f82614448565b915060008214156144b3576144b261456a565b5b600182039050919050565b600060028204905060018216806144d657607f821691505b602082108114156144ea576144e96145c8565b5b50919050565b60006144fb82614448565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561452e5761452d61456a565b5b600182019050919050565b600061454482614448565b915061454f83614448565b92508261455f5761455e614599565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614640816143b0565b811461464b57600080fd5b50565b614657816143c2565b811461466257600080fd5b50565b61466e816143ce565b811461467957600080fd5b50565b614685816143fa565b811461469057600080fd5b50565b61469c81614448565b81146146a757600080fd5b5056fea2646970667358221220144581799e992a22f3a32601d92203338886313f8c7ebfbefccc857c2e0c643d64736f6c63430008000033697066733a2f2f516d5931566e634351336b6e50476243355a6e534e7739363837443645576a7a7534484664454358366b784a48482f697066733a2f2f516d544859456e343267346e4c4a44335034663250596848524e34687974577870426e4637334c637a666f794667

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063cd7c03261161006f578063cd7c032614610714578063e8a3d4851461073f578063e985e9c51461076a578063f2fde38b146107a7578063f43a22dc146107d0576101f9565b8063a22cb4651461065a578063b88d4fde14610683578063c6682862146106ac578063c87b56dd146106d7576101f9565b8063938e3d7b116100dc578063938e3d7b146105bf57806395d89b41146105e8578063a035b1fe14610613578063a0712d681461063e576101f9565b806370a0823114610515578063715018a6146105525780638069876d146105695780638da5cb5b14610594576101f9565b806332cb6b0c116101905780634f6ccce71161015f5780634f6ccce71461041c57806355f804b3146104595780635c975abb146104825780636352211e146104ad5780636c0360eb146104ea576101f9565b806332cb6b0c146103865780633ccfd60b146103b157806342842e0e146103c8578063463fff79146103f1576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806318160ddd146102f557806323b872dd146103205780632f745c5914610349576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906131b4565b6107fb565b6040516102329190613da9565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d919061318b565b610945565b005b34801561027057600080fd5b506102796109de565b6040516102869190613dc4565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613270565b610a70565b6040516102c39190613d42565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee919061314f565b610af5565b005b34801561030157600080fd5b5061030a610c0e565b6040516103179190614146565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190613049565b610c17565b005b34801561035557600080fd5b50610370600480360381019061036b919061314f565b610c27565b60405161037d9190614146565b60405180910390f35b34801561039257600080fd5b5061039b610e25565b6040516103a89190614146565b60405180910390f35b3480156103bd57600080fd5b506103c6610e2b565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190613049565b610f63565b005b3480156103fd57600080fd5b50610406610f83565b6040516104139190614146565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190613270565b610f88565b6040516104509190614146565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b919061322f565b610fdb565b005b34801561048e57600080fd5b50610497611071565b6040516104a49190613da9565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190613270565b611084565b6040516104e19190613d42565b60405180910390f35b3480156104f657600080fd5b506104ff61109a565b60405161050c9190613dc4565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190612fe4565b611128565b6040516105499190614146565b60405180910390f35b34801561055e57600080fd5b50610567611211565b005b34801561057557600080fd5b5061057e611299565b60405161058b9190614146565b60405180910390f35b3480156105a057600080fd5b506105a961129f565b6040516105b69190613d42565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e1919061322f565b6112c9565b005b3480156105f457600080fd5b506105fd61135f565b60405161060a9190613dc4565b60405180910390f35b34801561061f57600080fd5b506106286113f1565b6040516106359190614146565b60405180910390f35b61065860048036038101906106539190613270565b6113fc565b005b34801561066657600080fd5b50610681600480360381019061067c9190613113565b611660565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190613098565b6117e1565b005b3480156106b857600080fd5b506106c161183d565b6040516106ce9190613dc4565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190613270565b611876565b60405161070b9190613dc4565b60405180910390f35b34801561072057600080fd5b50610729611955565b6040516107369190613d42565b60405180910390f35b34801561074b57600080fd5b5061075461196d565b6040516107619190613dc4565b60405180910390f35b34801561077657600080fd5b50610791600480360381019061078c919061300d565b6119fb565b60405161079e9190613da9565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c99190612fe4565b611aef565b005b3480156107dc57600080fd5b506107e5611be7565b6040516107f29190614146565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093e575061093d82611bec565b5b9050919050565b61094d611c56565b73ffffffffffffffffffffffffffffffffffffffff1661096b61129f565b73ffffffffffffffffffffffffffffffffffffffff16146109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890613fa6565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6060600180546109ed906144be565b80601f0160208091040260200160405190810160405280929190818152602001828054610a19906144be565b8015610a665780601f10610a3b57610100808354040283529160200191610a66565b820191906000526020600020905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b6000610a7b82611c5e565b610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190614106565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0082611084565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890614026565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b90611c56565b73ffffffffffffffffffffffffffffffffffffffff161480610bbf5750610bbe81610bb9611c56565b6119fb565b5b610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590613f06565b60405180910390fd5b610c09838383611c6b565b505050565b60008054905090565b610c22838383611d1d565b505050565b6000610c3283611128565b8210610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90613de6565b60405180910390fd5b6000610c7d610c0e565b905060008060005b83811015610de3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d7757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcf5786841415610dc0578195505050505050610e1f565b8380610dcb906144f0565b9450505b508080610ddb906144f0565b915050610c85565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e16906140e6565b60405180910390fd5b92915050565b6108ae81565b610e33611c56565b73ffffffffffffffffffffffffffffffffffffffff16610e5161129f565b73ffffffffffffffffffffffffffffffffffffffff1614610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90613fa6565b60405180910390fd5b60004790506000610eb6611c56565b73ffffffffffffffffffffffffffffffffffffffff1682604051610ed990613d2d565b60006040518083038185875af1925050503d8060008114610f16576040519150601f19603f3d011682016040523d82523d6000602084013e610f1b565b606091505b5050905080610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f56906140c6565b60405180910390fd5b5050565b610f7e838383604051806020016040528060008152506117e1565b505050565b600581565b6000610f92610c0e565b8210610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca90613ea6565b60405180910390fd5b819050919050565b610fe3611c56565b73ffffffffffffffffffffffffffffffffffffffff1661100161129f565b73ffffffffffffffffffffffffffffffffffffffff1614611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90613fa6565b60405180910390fd5b806008908051906020019061106d929190612db9565b5050565b600a60009054906101000a900460ff1681565b600061108f826122c4565b600001519050919050565b600880546110a7906144be565b80601f01602080910402602001604051908101604052809291908181526020018280546110d3906144be565b80156111205780601f106110f557610100808354040283529160200191611120565b820191906000526020600020905b81548152906001019060200180831161110357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090613f46565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611219611c56565b73ffffffffffffffffffffffffffffffffffffffff1661123761129f565b73ffffffffffffffffffffffffffffffffffffffff161461128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613fa6565b60405180910390fd5b611297600061241f565b565b61022b81565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112d1611c56565b73ffffffffffffffffffffffffffffffffffffffff166112ef61129f565b73ffffffffffffffffffffffffffffffffffffffff1614611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90613fa6565b60405180910390fd5b806009908051906020019061135b929190612db9565b5050565b60606002805461136e906144be565b80601f016020809104026020016040519081016040528092919081815260200182805461139a906144be565b80156113e75780601f106113bc576101008083540402835291602001916113e7565b820191906000526020600020905b8154815290600101906020018083116113ca57829003601f168201915b5050505050905090565b6618838370f3400081565b6000611406611c56565b9050600a60009054906101000a900460ff1615611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613e06565b60405180910390fd5b81611461610c0e565b61146b919061429b565b6108ae10156114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690613f26565b60405180910390fd5b600082116114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990613e66565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155790614126565b60405180910390fd5b611568610c0e565b61022b106115b95781600510156115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90613ee6565b60405180910390fd5b611652565b81600a10156115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f490613e86565b60405180910390fd5b346618838370f34000836116119190614322565b14611651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164890614006565b60405180910390fd5b5b61165c81836124e5565b5050565b611668611c56565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613fc6565b60405180910390fd5b80600660006116e3611c56565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611790611c56565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117d59190613da9565b60405180910390a35050565b6117ec848484611d1d565b6117f884848484612503565b611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e90614066565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061188182611c5e565b6118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790613f66565b60405180910390fd5b6000600880546118cf906144be565b9050116118eb576040518060200160405280600081525061194e565b60086118f68361269a565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161193e93929190613cfc565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b6009805461197a906144be565b80601f01602080910402602001604051908101604052809291908181526020018280546119a6906144be565b80156119f35780601f106119c8576101008083540402835291602001916119f3565b820191906000526020600020905b8154815290600101906020018083116119d657829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611a659190613d42565b60206040518083038186803b158015611a7d57600080fd5b505afa158015611a91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab59190613206565b73ffffffffffffffffffffffffffffffffffffffff161415611adb576001915050611ae9565b611ae58484612847565b9150505b92915050565b611af7611c56565b73ffffffffffffffffffffffffffffffffffffffff16611b1561129f565b73ffffffffffffffffffffffffffffffffffffffff1614611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613fa6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd290613e26565b60405180910390fd5b611be48161241f565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d28826122c4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d4f611c56565b73ffffffffffffffffffffffffffffffffffffffff161480611dab5750611d74611c56565b73ffffffffffffffffffffffffffffffffffffffff16611d9384610a70565b73ffffffffffffffffffffffffffffffffffffffff16145b80611dc75750611dc68260000151611dc1611c56565b6119fb565b5b905080611e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0090613fe6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290613f86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee290613ec6565b60405180910390fd5b611ef885858560016128db565b611f086000848460000151611c6b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461210e919061429b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122545761218481611c5e565b15612253576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122bc86868660016128e1565b505050505050565b6122cc612e3f565b6122d582611c5e565b612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90613e46565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461240657809250505061241a565b50808061241290614494565b91505061231a565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124ff8282604051806020016040528060008152506128e7565b5050565b60006125248473ffffffffffffffffffffffffffffffffffffffff16612da6565b1561268d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261254d611c56565b8786866040518563ffffffff1660e01b815260040161256f9493929190613d5d565b602060405180830381600087803b15801561258957600080fd5b505af19250505080156125ba57506040513d601f19601f820116820180604052508101906125b791906131dd565b60015b61263d573d80600081146125ea576040519150601f19603f3d011682016040523d82523d6000602084013e6125ef565b606091505b50600081511415612635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262c90614066565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612692565b600190505b949350505050565b606060008214156126e2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612842565b600082905060005b600082146127145780806126fd906144f0565b915050600a8261270d91906142f1565b91506126ea565b60008167ffffffffffffffff811115612756577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127885781602001600182028036833780820191505090505b5090505b6000851461283b576001826127a1919061437c565b9150600a856127b09190614539565b60306127bc919061429b565b60f81b8183815181106127f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561283491906142f1565b945061278c565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561295d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612954906140a6565b60405180910390fd5b61296681611c5e565b156129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299d90614086565b60405180910390fd5b600083116129e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e090614046565b60405180910390fd5b6129f660008583866128db565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612af39190614255565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b1a9190614255565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d8957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d296000888488612503565b612d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5f90614066565b60405180910390fd5b8180612d73906144f0565b9250508080612d81906144f0565b915050612cb8565b5080600081905550612d9e60008785886128e1565b505050505050565b600080823b905060008111915050919050565b828054612dc5906144be565b90600052602060002090601f016020900481019282612de75760008555612e2e565b82601f10612e0057805160ff1916838001178555612e2e565b82800160010185558215612e2e579182015b82811115612e2d578251825591602001919060010190612e12565b5b509050612e3b9190612e79565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e92576000816000905550600101612e7a565b5090565b6000612ea9612ea484614192565b614161565b905082815260208101848484011115612ec157600080fd5b612ecc848285614452565b509392505050565b6000612ee7612ee2846141c2565b614161565b905082815260208101848484011115612eff57600080fd5b612f0a848285614452565b509392505050565b600081359050612f2181614637565b92915050565b600081359050612f368161464e565b92915050565b600081359050612f4b81614665565b92915050565b600081519050612f6081614665565b92915050565b600082601f830112612f7757600080fd5b8135612f87848260208601612e96565b91505092915050565b600081519050612f9f8161467c565b92915050565b600082601f830112612fb657600080fd5b8135612fc6848260208601612ed4565b91505092915050565b600081359050612fde81614693565b92915050565b600060208284031215612ff657600080fd5b600061300484828501612f12565b91505092915050565b6000806040838503121561302057600080fd5b600061302e85828601612f12565b925050602061303f85828601612f12565b9150509250929050565b60008060006060848603121561305e57600080fd5b600061306c86828701612f12565b935050602061307d86828701612f12565b925050604061308e86828701612fcf565b9150509250925092565b600080600080608085870312156130ae57600080fd5b60006130bc87828801612f12565b94505060206130cd87828801612f12565b93505060406130de87828801612fcf565b925050606085013567ffffffffffffffff8111156130fb57600080fd5b61310787828801612f66565b91505092959194509250565b6000806040838503121561312657600080fd5b600061313485828601612f12565b925050602061314585828601612f27565b9150509250929050565b6000806040838503121561316257600080fd5b600061317085828601612f12565b925050602061318185828601612fcf565b9150509250929050565b60006020828403121561319d57600080fd5b60006131ab84828501612f27565b91505092915050565b6000602082840312156131c657600080fd5b60006131d484828501612f3c565b91505092915050565b6000602082840312156131ef57600080fd5b60006131fd84828501612f51565b91505092915050565b60006020828403121561321857600080fd5b600061322684828501612f90565b91505092915050565b60006020828403121561324157600080fd5b600082013567ffffffffffffffff81111561325b57600080fd5b61326784828501612fa5565b91505092915050565b60006020828403121561328257600080fd5b600061329084828501612fcf565b91505092915050565b6132a2816143b0565b82525050565b6132b1816143c2565b82525050565b60006132c282614207565b6132cc818561421d565b93506132dc818560208601614461565b6132e581614626565b840191505092915050565b60006132fb82614212565b6133058185614239565b9350613315818560208601614461565b61331e81614626565b840191505092915050565b600061333482614212565b61333e818561424a565b935061334e818560208601614461565b80840191505092915050565b60008154613367816144be565b613371818661424a565b9450600182166000811461338c576001811461339d576133d0565b60ff198316865281860193506133d0565b6133a6856141f2565b60005b838110156133c8578154818901526001820191506020810190506133a9565b838801955050505b50505092915050565b60006133e6602283614239565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061344c600683614239565b91507f50617573656400000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061348c602683614239565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134f2602a83614239565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613558600a83614239565b91507f4e6f2030206d696e7473000000000000000000000000000000000000000000006000830152602082019050919050565b6000613598601683614239565b91507f457863657373206d6178207065722070616964207478000000000000000000006000830152602082019050919050565b60006135d8602383614239565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061363e602583614239565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136a4601683614239565b91507f457863657373206d6178207065722066726565207478000000000000000000006000830152602082019050919050565b60006136e4603983614239565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b600061374a601283614239565b91507f45786365656473206d617820737570706c7900000000000000000000000000006000830152602082019050919050565b600061378a602b83614239565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006137f0601583614239565b91507f546f6b656e20646f6573206e6f742065786973742e00000000000000000000006000830152602082019050919050565b6000613830602683614239565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613896602083614239565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006138d6601a83614239565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000613916603283614239565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b600061397c601683614239565b91507f496e76616c69642066756e64732070726f7669646564000000000000000000006000830152602082019050919050565b60006139bc602283614239565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a2260008361422e565b9150600082019050919050565b6000613a3c602383614239565b91507f455243373231413a207175616e74697479206d7573742062652067726561746560008301527f72203000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aa2603383614239565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000613b08601d83614239565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000613b48602183614239565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bae600e83614239565b91507f4661696c656420746f2073656e640000000000000000000000000000000000006000830152602082019050919050565b6000613bee602e83614239565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000613c54602d83614239565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000613cba600c83614239565b91507f4e6f20636f6e74726163747300000000000000000000000000000000000000006000830152602082019050919050565b613cf681614448565b82525050565b6000613d08828661335a565b9150613d148285613329565b9150613d208284613329565b9150819050949350505050565b6000613d3882613a15565b9150819050919050565b6000602082019050613d576000830184613299565b92915050565b6000608082019050613d726000830187613299565b613d7f6020830186613299565b613d8c6040830185613ced565b8181036060830152613d9e81846132b7565b905095945050505050565b6000602082019050613dbe60008301846132a8565b92915050565b60006020820190508181036000830152613dde81846132f0565b905092915050565b60006020820190508181036000830152613dff816133d9565b9050919050565b60006020820190508181036000830152613e1f8161343f565b9050919050565b60006020820190508181036000830152613e3f8161347f565b9050919050565b60006020820190508181036000830152613e5f816134e5565b9050919050565b60006020820190508181036000830152613e7f8161354b565b9050919050565b60006020820190508181036000830152613e9f8161358b565b9050919050565b60006020820190508181036000830152613ebf816135cb565b9050919050565b60006020820190508181036000830152613edf81613631565b9050919050565b60006020820190508181036000830152613eff81613697565b9050919050565b60006020820190508181036000830152613f1f816136d7565b9050919050565b60006020820190508181036000830152613f3f8161373d565b9050919050565b60006020820190508181036000830152613f5f8161377d565b9050919050565b60006020820190508181036000830152613f7f816137e3565b9050919050565b60006020820190508181036000830152613f9f81613823565b9050919050565b60006020820190508181036000830152613fbf81613889565b9050919050565b60006020820190508181036000830152613fdf816138c9565b9050919050565b60006020820190508181036000830152613fff81613909565b9050919050565b6000602082019050818103600083015261401f8161396f565b9050919050565b6000602082019050818103600083015261403f816139af565b9050919050565b6000602082019050818103600083015261405f81613a2f565b9050919050565b6000602082019050818103600083015261407f81613a95565b9050919050565b6000602082019050818103600083015261409f81613afb565b9050919050565b600060208201905081810360008301526140bf81613b3b565b9050919050565b600060208201905081810360008301526140df81613ba1565b9050919050565b600060208201905081810360008301526140ff81613be1565b9050919050565b6000602082019050818103600083015261411f81613c47565b9050919050565b6000602082019050818103600083015261413f81613cad565b9050919050565b600060208201905061415b6000830184613ced565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614188576141876145f7565b5b8060405250919050565b600067ffffffffffffffff8211156141ad576141ac6145f7565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156141dd576141dc6145f7565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142608261440c565b915061426b8361440c565b9250826fffffffffffffffffffffffffffffffff038211156142905761428f61456a565b5b828201905092915050565b60006142a682614448565b91506142b183614448565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142e6576142e561456a565b5b828201905092915050565b60006142fc82614448565b915061430783614448565b92508261431757614316614599565b5b828204905092915050565b600061432d82614448565b915061433883614448565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143715761437061456a565b5b828202905092915050565b600061438782614448565b915061439283614448565b9250828210156143a5576143a461456a565b5b828203905092915050565b60006143bb82614428565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614405826143b0565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561447f578082015181840152602081019050614464565b8381111561448e576000848401525b50505050565b600061449f82614448565b915060008214156144b3576144b261456a565b5b600182039050919050565b600060028204905060018216806144d657607f821691505b602082108114156144ea576144e96145c8565b5b50919050565b60006144fb82614448565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561452e5761452d61456a565b5b600182019050919050565b600061454482614448565b915061454f83614448565b92508261455f5761455e614599565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614640816143b0565b811461464b57600080fd5b50565b614657816143c2565b811461466257600080fd5b50565b61466e816143ce565b811461467957600080fd5b50565b614685816143fa565b811461469057600080fd5b50565b61469c81614448565b81146146a757600080fd5b5056fea2646970667358221220144581799e992a22f3a32601d92203338886313f8c7ebfbefccc857c2e0c643d64736f6c63430008000033

Deployed Bytecode Sourcemap

40240:2744:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28252:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42298:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29879:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31440:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30961:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26693:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32316:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27357:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40769:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42081:209;;;;;;;;;;;;;:::i;:::-;;32549:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40621:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26870:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42387:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40870:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29688:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40293:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28688:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;40717:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42495:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30048:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40817:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40963:657;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31726:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32797:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40470:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42619:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40523:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40380:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41628:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40671:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28252:372;28354:4;28406:25;28391:40;;;:11;:40;;;;:105;;;;28463:33;28448:48;;;:11;:48;;;;28391:105;:172;;;;28528:35;28513:50;;;:11;:50;;;;28391:172;:225;;;;28580:36;28604:11;28580:23;:36::i;:::-;28391:225;28371:245;;28252:372;;;:::o;42298:81::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42365:6:::1;42356;;:15;;;;;;;;;;;;;;;;;;42298:81:::0;:::o;29879:100::-;29933:13;29966:5;29959:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29879:100;:::o;31440:214::-;31508:7;31536:16;31544:7;31536;:16::i;:::-;31528:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31622:15;:24;31638:7;31622:24;;;;;;;;;;;;;;;;;;;;;31615:31;;31440:214;;;:::o;30961:413::-;31034:13;31050:24;31066:7;31050:15;:24::i;:::-;31034:40;;31099:5;31093:11;;:2;:11;;;;31085:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31194:5;31178:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;31203:37;31220:5;31227:12;:10;:12::i;:::-;31203:16;:37::i;:::-;31178:62;31156:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;31338:28;31347:2;31351:7;31360:5;31338:8;:28::i;:::-;30961:413;;;:::o;26693:100::-;26746:7;26773:12;;26766:19;;26693:100;:::o;32316:162::-;32442:28;32452:4;32458:2;32462:7;32442:9;:28::i;:::-;32316:162;;;:::o;27357:823::-;27446:7;27482:16;27492:5;27482:9;:16::i;:::-;27474:5;:24;27466:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27548:22;27573:13;:11;:13::i;:::-;27548:38;;27597:19;27631:25;27685:9;27680:426;27704:14;27700:1;:18;27680:426;;;27740:31;27774:11;:14;27786:1;27774:14;;;;;;;;;;;27740:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27833:1;27807:28;;:9;:14;;;:28;;;27803:103;;27876:9;:14;;;27856:34;;27803:103;27945:5;27924:26;;:17;:26;;;27920:175;;;27990:5;27975:11;:20;27971:77;;;28027:1;28020:8;;;;;;;;;27971:77;28066:13;;;;;:::i;:::-;;;;27920:175;27680:426;27720:3;;;;;:::i;:::-;;;;27680:426;;;;28116:56;;;;;;;;;;:::i;:::-;;;;;;;;27357:823;;;;;:::o;40769:41::-;40806:4;40769:41;:::o;42081:209::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42131:15:::1;42149:21;42131:39;;42182:12;42200;:10;:12::i;:::-;:17;;42225:7;42200:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42181:56;;;42256:7;42248:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;4370:1;;42081:209::o:0;32549:177::-;32679:39;32696:4;32702:2;32706:7;32679:39;;;;;;;;;;;;:16;:39::i;:::-;32549:177;;;:::o;40621:43::-;40663:1;40621:43;:::o;26870:187::-;26937:7;26973:13;:11;:13::i;:::-;26965:5;:21;26957:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;27044:5;27037:12;;26870:187;;;:::o;42387:100::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42471:8:::1;42461:7;:18;;;;;;;;;;;;:::i;:::-;;42387:100:::0;:::o;40870:25::-;;;;;;;;;;;;;:::o;29688:124::-;29752:7;29779:20;29791:7;29779:11;:20::i;:::-;:25;;;29772:32;;29688:124;;;:::o;40293:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28688:221::-;28752:7;28797:1;28780:19;;:5;:19;;;;28772:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28873:12;:19;28886:5;28873:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28865:36;;28858:43;;28688:221;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;40717:45::-;40759:3;40717:45;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;42495:116::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42591:12:::1;42577:11;:26;;;;;;;;;;;;:::i;:::-;;42495:116:::0;:::o;30048:104::-;30104:13;30137:7;30130:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30048:104;:::o;40817:44::-;40849:12;40817:44;:::o;40963:657::-;41022:15;41040:12;:10;:12::i;:::-;41022:30;;41072:6;;;;;;;;;;;41071:7;41063:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;41138:7;41122:13;:11;:13::i;:::-;:23;;;;:::i;:::-;40806:4;41108:37;;41100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41197:1;41187:7;:11;41179:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;41245:7;41232:20;;:9;:20;;;41224:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;41304:13;:11;:13::i;:::-;40759:3;41285:32;41282:291;;41360:7;40663:1;41341:26;;41333:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;41282:291;;;41448:7;40708:2;41434:21;;41426:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41525:9;40849:12;41506:7;:15;;;;:::i;:::-;:28;41498:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41282:291;41585:27;41595:7;41604;41585:9;:27::i;:::-;40963:657;;:::o;31726:288::-;31833:12;:10;:12::i;:::-;31821:24;;:8;:24;;;;31813:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31934:8;31889:18;:32;31908:12;:10;:12::i;:::-;31889:32;;;;;;;;;;;;;;;:42;31922:8;31889:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31987:8;31958:48;;31973:12;:10;:12::i;:::-;31958:48;;;31997:8;31958:48;;;;;;:::i;:::-;;;;;;;;31726:288;;:::o;32797:355::-;32956:28;32966:4;32972:2;32976:7;32956:9;:28::i;:::-;33017:48;33040:4;33046:2;33050:7;33059:5;33017:22;:48::i;:::-;32995:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;32797:355;;;;:::o;40470:46::-;;;;;;;;;;;;;;;;;;;:::o;42619:362::-;42685:13;42719:17;42727:8;42719:7;:17::i;:::-;42711:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;42804:1;42786:7;42780:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;42862:7;42886:26;42903:8;42886:16;:26::i;:::-;42929:13;;;;;;;;;;;;;;;;;42829:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42780:193;42773:200;;42619:362;;;:::o;40523:89::-;40570:42;40523:89;:::o;40380:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41628:445::-;41753:4;41838:27;40570:42;41838:65;;41959:8;41918:49;;41926:13;:21;;;41948:5;41926:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41918:49;;;41914:93;;;41991:4;41984:11;;;;;41914:93;42026:39;42049:5;42056:8;42026:22;:39::i;:::-;42019:46;;;41628:445;;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;40671:39::-;40708:2;40671:39;:::o;24756:157::-;24841:4;24880:25;24865:40;;;:11;:40;;;;24858:47;;24756:157;;;:::o;2820:98::-;2873:7;2900:10;2893:17;;2820:98;:::o;33407:111::-;33464:4;33498:12;;33488:7;:22;33481:29;;33407:111;;;:::o;37451:196::-;37593:2;37566:15;:24;37582:7;37566:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37631:7;37627:2;37611:28;;37620:5;37611:28;;;;;;;;;;;;37451:196;;;:::o;35550:1783::-;35665:35;35703:20;35715:7;35703:11;:20::i;:::-;35665:58;;35736:22;35778:13;:18;;;35762:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;35837:12;:10;:12::i;:::-;35813:36;;:20;35825:7;35813:11;:20::i;:::-;:36;;;35762:87;:154;;;;35866:50;35883:13;:18;;;35903:12;:10;:12::i;:::-;35866:16;:50::i;:::-;35762:154;35736:181;;35938:17;35930:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;36053:4;36031:26;;:13;:18;;;:26;;;36023:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;36133:1;36119:16;;:2;:16;;;;36111:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;36190:43;36212:4;36218:2;36222:7;36231:1;36190:21;:43::i;:::-;36298:49;36315:1;36319:7;36328:13;:18;;;36298:8;:49::i;:::-;36582:1;36552:12;:18;36565:4;36552:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36626:1;36598:12;:16;36611:2;36598:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36674:43;;;;;;;;36689:2;36674:43;;;;;;36700:15;36674:43;;;;;36651:11;:20;36663:7;36651:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36957:19;36989:1;36979:7;:11;;;;:::i;:::-;36957:33;;37046:1;37005:43;;:11;:24;37017:11;37005:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;37001:227;;;37069:20;37077:11;37069:7;:20::i;:::-;37065:152;;;37137:64;;;;;;;;37152:13;:18;;;37137:64;;;;;;37172:13;:28;;;37137:64;;;;;37110:11;:24;37122:11;37110:24;;;;;;;;;;;:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37065:152;37001:227;37264:7;37260:2;37245:27;;37254:4;37245:27;;;;;;;;;;;;37283:42;37304:4;37310:2;37314:7;37323:1;37283:20;:42::i;:::-;35550:1783;;;;;;:::o;29154:472::-;29215:21;;:::i;:::-;29257:16;29265:7;29257;:16::i;:::-;29249:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29338:12;29353:7;29338:22;;29333:216;29387:31;29421:11;:17;29433:4;29421:17;;;;;;;;;;;29387:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29483:1;29457:28;;:9;:14;;;:28;;;29453:85;;29513:9;29506:16;;;;;;29453:85;29333:216;29364:6;;;;;:::i;:::-;;;;29333:216;;29154:472;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5349:191;;:::o;33526:104::-;33595:27;33605:2;33609:8;33595:27;;;;;;;;;;;;:9;:27::i;:::-;33526:104;;:::o;38212:804::-;38367:4;38388:15;:2;:13;;;:15::i;:::-;38384:625;;;38440:2;38424:36;;;38461:12;:10;:12::i;:::-;38475:4;38481:7;38490:5;38424:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38420:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38687:1;38670:6;:13;:18;38666:273;;;38713:61;;;;;;;;;;:::i;:::-;;;;;;;;38666:273;38889:6;38883:13;38874:6;38870:2;38866:15;38859:38;38420:534;38557:45;;;38547:55;;;:6;:55;;;;38540:62;;;;;38384:625;38993:4;38986:11;;38212:804;;;;;;;:::o;5897:723::-;5953:13;6183:1;6174:5;:10;6170:53;;;6201:10;;;;;;;;;;;;;;;;;;;;;6170:53;6233:12;6248:5;6233:20;;6264:14;6289:78;6304:1;6296:4;:9;6289:78;;6322:8;;;;;:::i;:::-;;;;6353:2;6345:10;;;;;:::i;:::-;;;6289:78;;;6377:19;6409:6;6399:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6377:39;;6427:154;6443:1;6434:5;:10;6427:154;;6471:1;6461:11;;;;;:::i;:::-;;;6538:2;6530:5;:10;;;;:::i;:::-;6517:2;:24;;;;:::i;:::-;6504:39;;6487:6;6494;6487:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;6567:2;6558:11;;;;;:::i;:::-;;;6427:154;;;6605:6;6591:21;;;;;5897:723;;;;:::o;32085:164::-;32182:4;32206:18;:25;32225:5;32206:25;;;;;;;;;;;;;;;:35;32232:8;32206:35;;;;;;;;;;;;;;;;;;;;;;;;;32199:42;;32085:164;;;;:::o;39504:159::-;;;;;:::o;40075:158::-;;;;;:::o;33907:1389::-;34030:20;34053:12;;34030:35;;34098:1;34084:16;;:2;:16;;;;34076:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34283:21;34291:12;34283:7;:21::i;:::-;34282:22;34274:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34368:1;34357:8;:12;34349:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;34422:61;34452:1;34456:2;34460:12;34474:8;34422:21;:61::i;:::-;34496:30;34529:12;:16;34542:2;34529:16;;;;;;;;;;;;;;;34496:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34575:135;;;;;;;;34631:8;34601:11;:19;;;:39;;;;:::i;:::-;34575:135;;;;;;34690:8;34655:11;:24;;;:44;;;;:::i;:::-;34575:135;;;;;34556:12;:16;34569:2;34556:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34749:43;;;;;;;;34764:2;34749:43;;;;;;34775:15;34749:43;;;;;34721:11;:25;34733:12;34721:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34805:20;34828:12;34805:35;;34858:9;34853:325;34877:8;34873:1;:12;34853:325;;;34937:12;34933:2;34912:38;;34929:1;34912:38;;;;;;;;;;;;34991:59;35022:1;35026:2;35030:12;35044:5;34991:22;:59::i;:::-;34965:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;35152:14;;;;;:::i;:::-;;;;34887:3;;;;;:::i;:::-;;;;34853:325;;;;35205:12;35190;:27;;;;35228:60;35257:1;35261:2;35265:12;35279:8;35228:20;:60::i;:::-;33907:1389;;;;;;:::o;16648:387::-;16708:4;16916:12;16983:7;16971:20;16963:28;;17026:1;17019:4;:8;17012:15;;;16648:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1569:201::-;;1686:6;1680:13;1671:22;;1702:62;1758:5;1702:62;:::i;:::-;1661:109;;;;:::o;1790:273::-;;1895:3;1888:4;1880:6;1876:17;1872:27;1862:2;;1913:1;1910;1903:12;1862:2;1953:6;1940:20;1978:79;2053:3;2045:6;2038:4;2030:6;2026:17;1978:79;:::i;:::-;1969:88;;1852:211;;;;;:::o;2069:139::-;;2153:6;2140:20;2131:29;;2169:33;2196:5;2169:33;:::i;:::-;2121:87;;;;:::o;2214:262::-;;2322:2;2310:9;2301:7;2297:23;2293:32;2290:2;;;2338:1;2335;2328:12;2290:2;2381:1;2406:53;2451:7;2442:6;2431:9;2427:22;2406:53;:::i;:::-;2396:63;;2352:117;2280:196;;;;:::o;2482:407::-;;;2607:2;2595:9;2586:7;2582:23;2578:32;2575:2;;;2623:1;2620;2613:12;2575:2;2666:1;2691:53;2736:7;2727:6;2716:9;2712:22;2691:53;:::i;:::-;2681:63;;2637:117;2793:2;2819:53;2864:7;2855:6;2844:9;2840:22;2819:53;:::i;:::-;2809:63;;2764:118;2565:324;;;;;:::o;2895:552::-;;;;3037:2;3025:9;3016:7;3012:23;3008:32;3005:2;;;3053:1;3050;3043:12;3005:2;3096:1;3121:53;3166:7;3157:6;3146:9;3142:22;3121:53;:::i;:::-;3111:63;;3067:117;3223:2;3249:53;3294:7;3285:6;3274:9;3270:22;3249:53;:::i;:::-;3239:63;;3194:118;3351:2;3377:53;3422:7;3413:6;3402:9;3398:22;3377:53;:::i;:::-;3367:63;;3322:118;2995:452;;;;;:::o;3453:809::-;;;;;3621:3;3609:9;3600:7;3596:23;3592:33;3589:2;;;3638:1;3635;3628:12;3589:2;3681:1;3706:53;3751:7;3742:6;3731:9;3727:22;3706:53;:::i;:::-;3696:63;;3652:117;3808:2;3834:53;3879:7;3870:6;3859:9;3855:22;3834:53;:::i;:::-;3824:63;;3779:118;3936:2;3962:53;4007:7;3998:6;3987:9;3983:22;3962:53;:::i;:::-;3952:63;;3907:118;4092:2;4081:9;4077:18;4064:32;4123:18;4115:6;4112:30;4109:2;;;4155:1;4152;4145:12;4109:2;4183:62;4237:7;4228:6;4217:9;4213:22;4183:62;:::i;:::-;4173:72;;4035:220;3579:683;;;;;;;:::o;4268:401::-;;;4390:2;4378:9;4369:7;4365:23;4361:32;4358:2;;;4406:1;4403;4396:12;4358:2;4449:1;4474:53;4519:7;4510:6;4499:9;4495:22;4474:53;:::i;:::-;4464:63;;4420:117;4576:2;4602:50;4644:7;4635:6;4624:9;4620:22;4602:50;:::i;:::-;4592:60;;4547:115;4348:321;;;;;:::o;4675:407::-;;;4800:2;4788:9;4779:7;4775:23;4771:32;4768:2;;;4816:1;4813;4806:12;4768:2;4859:1;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4830:117;4986:2;5012:53;5057:7;5048:6;5037:9;5033:22;5012:53;:::i;:::-;5002:63;;4957:118;4758:324;;;;;:::o;5088:256::-;;5193:2;5181:9;5172:7;5168:23;5164:32;5161:2;;;5209:1;5206;5199:12;5161:2;5252:1;5277:50;5319:7;5310:6;5299:9;5295:22;5277:50;:::i;:::-;5267:60;;5223:114;5151:193;;;;:::o;5350:260::-;;5457:2;5445:9;5436:7;5432:23;5428:32;5425:2;;;5473:1;5470;5463:12;5425:2;5516:1;5541:52;5585:7;5576:6;5565:9;5561:22;5541:52;:::i;:::-;5531:62;;5487:116;5415:195;;;;:::o;5616:282::-;;5734:2;5722:9;5713:7;5709:23;5705:32;5702:2;;;5750:1;5747;5740:12;5702:2;5793:1;5818:63;5873:7;5864:6;5853:9;5849:22;5818:63;:::i;:::-;5808:73;;5764:127;5692:206;;;;:::o;5904:342::-;;6052:2;6040:9;6031:7;6027:23;6023:32;6020:2;;;6068:1;6065;6058:12;6020:2;6111:1;6136:93;6221:7;6212:6;6201:9;6197:22;6136:93;:::i;:::-;6126:103;;6082:157;6010:236;;;;:::o;6252:375::-;;6370:2;6358:9;6349:7;6345:23;6341:32;6338:2;;;6386:1;6383;6376:12;6338:2;6457:1;6446:9;6442:17;6429:31;6487:18;6479:6;6476:30;6473:2;;;6519:1;6516;6509:12;6473:2;6547:63;6602:7;6593:6;6582:9;6578:22;6547:63;:::i;:::-;6537:73;;6400:220;6328:299;;;;:::o;6633:262::-;;6741:2;6729:9;6720:7;6716:23;6712:32;6709:2;;;6757:1;6754;6747:12;6709:2;6800:1;6825:53;6870:7;6861:6;6850:9;6846:22;6825:53;:::i;:::-;6815:63;;6771:117;6699:196;;;;:::o;6901:118::-;6988:24;7006:5;6988:24;:::i;:::-;6983:3;6976:37;6966:53;;:::o;7025:109::-;7106:21;7121:5;7106:21;:::i;:::-;7101:3;7094:34;7084:50;;:::o;7140:360::-;;7254:38;7286:5;7254:38;:::i;:::-;7308:70;7371:6;7366:3;7308:70;:::i;:::-;7301:77;;7387:52;7432:6;7427:3;7420:4;7413:5;7409:16;7387:52;:::i;:::-;7464:29;7486:6;7464:29;:::i;:::-;7459:3;7455:39;7448:46;;7230:270;;;;;:::o;7506:364::-;;7622:39;7655:5;7622:39;:::i;:::-;7677:71;7741:6;7736:3;7677:71;:::i;:::-;7670:78;;7757:52;7802:6;7797:3;7790:4;7783:5;7779:16;7757:52;:::i;:::-;7834:29;7856:6;7834:29;:::i;:::-;7829:3;7825:39;7818:46;;7598:272;;;;;:::o;7876:377::-;;8010:39;8043:5;8010:39;:::i;:::-;8065:89;8147:6;8142:3;8065:89;:::i;:::-;8058:96;;8163:52;8208:6;8203:3;8196:4;8189:5;8185:16;8163:52;:::i;:::-;8240:6;8235:3;8231:16;8224:23;;7986:267;;;;;:::o;8283:845::-;;8423:5;8417:12;8452:36;8478:9;8452:36;:::i;:::-;8504:89;8586:6;8581:3;8504:89;:::i;:::-;8497:96;;8624:1;8613:9;8609:17;8640:1;8635:137;;;;8786:1;8781:341;;;;8602:520;;8635:137;8719:4;8715:9;8704;8700:25;8695:3;8688:38;8755:6;8750:3;8746:16;8739:23;;8635:137;;8781:341;8848:38;8880:5;8848:38;:::i;:::-;8908:1;8922:154;8936:6;8933:1;8930:13;8922:154;;;9010:7;9004:14;9000:1;8995:3;8991:11;8984:35;9060:1;9051:7;9047:15;9036:26;;8958:4;8955:1;8951:12;8946:17;;8922:154;;;9105:6;9100:3;9096:16;9089:23;;8788:334;;8602:520;;8390:738;;;;;;:::o;9134:366::-;;9297:67;9361:2;9356:3;9297:67;:::i;:::-;9290:74;;9394:34;9390:1;9385:3;9381:11;9374:55;9460:4;9455:2;9450:3;9446:12;9439:26;9491:2;9486:3;9482:12;9475:19;;9280:220;;;:::o;9506:303::-;;9669:66;9733:1;9728:3;9669:66;:::i;:::-;9662:73;;9765:8;9761:1;9756:3;9752:11;9745:29;9800:2;9795:3;9791:12;9784:19;;9652:157;;;:::o;9815:370::-;;9978:67;10042:2;10037:3;9978:67;:::i;:::-;9971:74;;10075:34;10071:1;10066:3;10062:11;10055:55;10141:8;10136:2;10131:3;10127:12;10120:30;10176:2;10171:3;10167:12;10160:19;;9961:224;;;:::o;10191:374::-;;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10451:34;10447:1;10442:3;10438:11;10431:55;10517:12;10512:2;10507:3;10503:12;10496:34;10556:2;10551:3;10547:12;10540:19;;10337:228;;;:::o;10571:308::-;;10734:67;10798:2;10793:3;10734:67;:::i;:::-;10727:74;;10831:12;10827:1;10822:3;10818:11;10811:33;10870:2;10865:3;10861:12;10854:19;;10717:162;;;:::o;10885:320::-;;11048:67;11112:2;11107:3;11048:67;:::i;:::-;11041:74;;11145:24;11141:1;11136:3;11132:11;11125:45;11196:2;11191:3;11187:12;11180:19;;11031:174;;;:::o;11211:367::-;;11374:67;11438:2;11433:3;11374:67;:::i;:::-;11367:74;;11471:34;11467:1;11462:3;11458:11;11451:55;11537:5;11532:2;11527:3;11523:12;11516:27;11569:2;11564:3;11560:12;11553:19;;11357:221;;;:::o;11584:369::-;;11747:67;11811:2;11806:3;11747:67;:::i;:::-;11740:74;;11844:34;11840:1;11835:3;11831:11;11824:55;11910:7;11905:2;11900:3;11896:12;11889:29;11944:2;11939:3;11935:12;11928:19;;11730:223;;;:::o;11959:320::-;;12122:67;12186:2;12181:3;12122:67;:::i;:::-;12115:74;;12219:24;12215:1;12210:3;12206:11;12199:45;12270:2;12265:3;12261:12;12254:19;;12105:174;;;:::o;12285:389::-;;12448:67;12512:2;12507:3;12448:67;:::i;:::-;12441:74;;12545:34;12541:1;12536:3;12532:11;12525:55;12611:27;12606:2;12601:3;12597:12;12590:49;12665:2;12660:3;12656:12;12649:19;;12431:243;;;:::o;12680:316::-;;12843:67;12907:2;12902:3;12843:67;:::i;:::-;12836:74;;12940:20;12936:1;12931:3;12927:11;12920:41;12987:2;12982:3;12978:12;12971:19;;12826:170;;;:::o;13002:375::-;;13165:67;13229:2;13224:3;13165:67;:::i;:::-;13158:74;;13262:34;13258:1;13253:3;13249:11;13242:55;13328:13;13323:2;13318:3;13314:12;13307:35;13368:2;13363:3;13359:12;13352:19;;13148:229;;;:::o;13383:319::-;;13546:67;13610:2;13605:3;13546:67;:::i;:::-;13539:74;;13643:23;13639:1;13634:3;13630:11;13623:44;13693:2;13688:3;13684:12;13677:19;;13529:173;;;:::o;13708:370::-;;13871:67;13935:2;13930:3;13871:67;:::i;:::-;13864:74;;13968:34;13964:1;13959:3;13955:11;13948:55;14034:8;14029:2;14024:3;14020:12;14013:30;14069:2;14064:3;14060:12;14053:19;;13854:224;;;:::o;14084:330::-;;14247:67;14311:2;14306:3;14247:67;:::i;:::-;14240:74;;14344:34;14340:1;14335:3;14331:11;14324:55;14405:2;14400:3;14396:12;14389:19;;14230:184;;;:::o;14420:324::-;;14583:67;14647:2;14642:3;14583:67;:::i;:::-;14576:74;;14680:28;14676:1;14671:3;14667:11;14660:49;14735:2;14730:3;14726:12;14719:19;;14566:178;;;:::o;14750:382::-;;14913:67;14977:2;14972:3;14913:67;:::i;:::-;14906:74;;15010:34;15006:1;15001:3;14997:11;14990:55;15076:20;15071:2;15066:3;15062:12;15055:42;15123:2;15118:3;15114:12;15107:19;;14896:236;;;:::o;15138:320::-;;15301:67;15365:2;15360:3;15301:67;:::i;:::-;15294:74;;15398:24;15394:1;15389:3;15385:11;15378:45;15449:2;15444:3;15440:12;15433:19;;15284:174;;;:::o;15464:366::-;;15627:67;15691:2;15686:3;15627:67;:::i;:::-;15620:74;;15724:34;15720:1;15715:3;15711:11;15704:55;15790:4;15785:2;15780:3;15776:12;15769:26;15821:2;15816:3;15812:12;15805:19;;15610:220;;;:::o;15836:297::-;;16016:83;16097:1;16092:3;16016:83;:::i;:::-;16009:90;;16125:1;16120:3;16116:11;16109:18;;15999:134;;;:::o;16139:367::-;;16302:67;16366:2;16361:3;16302:67;:::i;:::-;16295:74;;16399:34;16395:1;16390:3;16386:11;16379:55;16465:5;16460:2;16455:3;16451:12;16444:27;16497:2;16492:3;16488:12;16481:19;;16285:221;;;:::o;16512:383::-;;16675:67;16739:2;16734:3;16675:67;:::i;:::-;16668:74;;16772:34;16768:1;16763:3;16759:11;16752:55;16838:21;16833:2;16828:3;16824:12;16817:43;16886:2;16881:3;16877:12;16870:19;;16658:237;;;:::o;16901:327::-;;17064:67;17128:2;17123:3;17064:67;:::i;:::-;17057:74;;17161:31;17157:1;17152:3;17148:11;17141:52;17219:2;17214:3;17210:12;17203:19;;17047:181;;;:::o;17234:365::-;;17397:67;17461:2;17456:3;17397:67;:::i;:::-;17390:74;;17494:34;17490:1;17485:3;17481:11;17474:55;17560:3;17555:2;17550:3;17546:12;17539:25;17590:2;17585:3;17581:12;17574:19;;17380:219;;;:::o;17605:312::-;;17768:67;17832:2;17827:3;17768:67;:::i;:::-;17761:74;;17865:16;17861:1;17856:3;17852:11;17845:37;17908:2;17903:3;17899:12;17892:19;;17751:166;;;:::o;17923:378::-;;18086:67;18150:2;18145:3;18086:67;:::i;:::-;18079:74;;18183:34;18179:1;18174:3;18170:11;18163:55;18249:16;18244:2;18239:3;18235:12;18228:38;18292:2;18287:3;18283:12;18276:19;;18069:232;;;:::o;18692:377::-;;18855:67;18919:2;18914:3;18855:67;:::i;:::-;18848:74;;18952:34;18948:1;18943:3;18939:11;18932:55;19018:15;19013:2;19008:3;19004:12;18997:37;19060:2;19055:3;19051:12;19044:19;;18838:231;;;:::o;19075:310::-;;19238:67;19302:2;19297:3;19238:67;:::i;:::-;19231:74;;19335:14;19331:1;19326:3;19322:11;19315:35;19376:2;19371:3;19367:12;19360:19;;19221:164;;;:::o;19391:118::-;19478:24;19496:5;19478:24;:::i;:::-;19473:3;19466:37;19456:53;;:::o;19515:589::-;;19762:92;19850:3;19841:6;19762:92;:::i;:::-;19755:99;;19871:95;19962:3;19953:6;19871:95;:::i;:::-;19864:102;;19983:95;20074:3;20065:6;19983:95;:::i;:::-;19976:102;;20095:3;20088:10;;19744:360;;;;;;:::o;20110:379::-;;20316:147;20459:3;20316:147;:::i;:::-;20309:154;;20480:3;20473:10;;20298:191;;;:::o;20495:222::-;;20626:2;20615:9;20611:18;20603:26;;20639:71;20707:1;20696:9;20692:17;20683:6;20639:71;:::i;:::-;20593:124;;;;:::o;20723:640::-;;20956:3;20945:9;20941:19;20933:27;;20970:71;21038:1;21027:9;21023:17;21014:6;20970:71;:::i;:::-;21051:72;21119:2;21108:9;21104:18;21095:6;21051:72;:::i;:::-;21133;21201:2;21190:9;21186:18;21177:6;21133:72;:::i;:::-;21252:9;21246:4;21242:20;21237:2;21226:9;21222:18;21215:48;21280:76;21351:4;21342:6;21280:76;:::i;:::-;21272:84;;20923:440;;;;;;;:::o;21369:210::-;;21494:2;21483:9;21479:18;21471:26;;21507:65;21569:1;21558:9;21554:17;21545:6;21507:65;:::i;:::-;21461:118;;;;:::o;21585:313::-;;21736:2;21725:9;21721:18;21713:26;;21785:9;21779:4;21775:20;21771:1;21760:9;21756:17;21749:47;21813:78;21886:4;21877:6;21813:78;:::i;:::-;21805:86;;21703:195;;;;:::o;21904:419::-;;22108:2;22097:9;22093:18;22085:26;;22157:9;22151:4;22147:20;22143:1;22132:9;22128:17;22121:47;22185:131;22311:4;22185:131;:::i;:::-;22177:139;;22075:248;;;:::o;22329:419::-;;22533:2;22522:9;22518:18;22510:26;;22582:9;22576:4;22572:20;22568:1;22557:9;22553:17;22546:47;22610:131;22736:4;22610:131;:::i;:::-;22602:139;;22500:248;;;:::o;22754:419::-;;22958:2;22947:9;22943:18;22935:26;;23007:9;23001:4;22997:20;22993:1;22982:9;22978:17;22971:47;23035:131;23161:4;23035:131;:::i;:::-;23027:139;;22925:248;;;:::o;23179:419::-;;23383:2;23372:9;23368:18;23360:26;;23432:9;23426:4;23422:20;23418:1;23407:9;23403:17;23396:47;23460:131;23586:4;23460:131;:::i;:::-;23452:139;;23350:248;;;:::o;23604:419::-;;23808:2;23797:9;23793:18;23785:26;;23857:9;23851:4;23847:20;23843:1;23832:9;23828:17;23821:47;23885:131;24011:4;23885:131;:::i;:::-;23877:139;;23775:248;;;:::o;24029:419::-;;24233:2;24222:9;24218:18;24210:26;;24282:9;24276:4;24272:20;24268:1;24257:9;24253:17;24246:47;24310:131;24436:4;24310:131;:::i;:::-;24302:139;;24200:248;;;:::o;24454:419::-;;24658:2;24647:9;24643:18;24635:26;;24707:9;24701:4;24697:20;24693:1;24682:9;24678:17;24671:47;24735:131;24861:4;24735:131;:::i;:::-;24727:139;;24625:248;;;:::o;24879:419::-;;25083:2;25072:9;25068:18;25060:26;;25132:9;25126:4;25122:20;25118:1;25107:9;25103:17;25096:47;25160:131;25286:4;25160:131;:::i;:::-;25152:139;;25050:248;;;:::o;25304:419::-;;25508:2;25497:9;25493:18;25485:26;;25557:9;25551:4;25547:20;25543:1;25532:9;25528:17;25521:47;25585:131;25711:4;25585:131;:::i;:::-;25577:139;;25475:248;;;:::o;25729:419::-;;25933:2;25922:9;25918:18;25910:26;;25982:9;25976:4;25972:20;25968:1;25957:9;25953:17;25946:47;26010:131;26136:4;26010:131;:::i;:::-;26002:139;;25900:248;;;:::o;26154:419::-;;26358:2;26347:9;26343:18;26335:26;;26407:9;26401:4;26397:20;26393:1;26382:9;26378:17;26371:47;26435:131;26561:4;26435:131;:::i;:::-;26427:139;;26325:248;;;:::o;26579:419::-;;26783:2;26772:9;26768:18;26760:26;;26832:9;26826:4;26822:20;26818:1;26807:9;26803:17;26796:47;26860:131;26986:4;26860:131;:::i;:::-;26852:139;;26750:248;;;:::o;27004:419::-;;27208:2;27197:9;27193:18;27185:26;;27257:9;27251:4;27247:20;27243:1;27232:9;27228:17;27221:47;27285:131;27411:4;27285:131;:::i;:::-;27277:139;;27175:248;;;:::o;27429:419::-;;27633:2;27622:9;27618:18;27610:26;;27682:9;27676:4;27672:20;27668:1;27657:9;27653:17;27646:47;27710:131;27836:4;27710:131;:::i;:::-;27702:139;;27600:248;;;:::o;27854:419::-;;28058:2;28047:9;28043:18;28035:26;;28107:9;28101:4;28097:20;28093:1;28082:9;28078:17;28071:47;28135:131;28261:4;28135:131;:::i;:::-;28127:139;;28025:248;;;:::o;28279:419::-;;28483:2;28472:9;28468:18;28460:26;;28532:9;28526:4;28522:20;28518:1;28507:9;28503:17;28496:47;28560:131;28686:4;28560:131;:::i;:::-;28552:139;;28450:248;;;:::o;28704:419::-;;28908:2;28897:9;28893:18;28885:26;;28957:9;28951:4;28947:20;28943:1;28932:9;28928:17;28921:47;28985:131;29111:4;28985:131;:::i;:::-;28977:139;;28875:248;;;:::o;29129:419::-;;29333:2;29322:9;29318:18;29310:26;;29382:9;29376:4;29372:20;29368:1;29357:9;29353:17;29346:47;29410:131;29536:4;29410:131;:::i;:::-;29402:139;;29300:248;;;:::o;29554:419::-;;29758:2;29747:9;29743:18;29735:26;;29807:9;29801:4;29797:20;29793:1;29782:9;29778:17;29771:47;29835:131;29961:4;29835:131;:::i;:::-;29827:139;;29725:248;;;:::o;29979:419::-;;30183:2;30172:9;30168:18;30160:26;;30232:9;30226:4;30222:20;30218:1;30207:9;30203:17;30196:47;30260:131;30386:4;30260:131;:::i;:::-;30252:139;;30150:248;;;:::o;30404:419::-;;30608:2;30597:9;30593:18;30585:26;;30657:9;30651:4;30647:20;30643:1;30632:9;30628:17;30621:47;30685:131;30811:4;30685:131;:::i;:::-;30677:139;;30575:248;;;:::o;30829:419::-;;31033:2;31022:9;31018:18;31010:26;;31082:9;31076:4;31072:20;31068:1;31057:9;31053:17;31046:47;31110:131;31236:4;31110:131;:::i;:::-;31102:139;;31000:248;;;:::o;31254:419::-;;31458:2;31447:9;31443:18;31435:26;;31507:9;31501:4;31497:20;31493:1;31482:9;31478:17;31471:47;31535:131;31661:4;31535:131;:::i;:::-;31527:139;;31425:248;;;:::o;31679:419::-;;31883:2;31872:9;31868:18;31860:26;;31932:9;31926:4;31922:20;31918:1;31907:9;31903:17;31896:47;31960:131;32086:4;31960:131;:::i;:::-;31952:139;;31850:248;;;:::o;32104:419::-;;32308:2;32297:9;32293:18;32285:26;;32357:9;32351:4;32347:20;32343:1;32332:9;32328:17;32321:47;32385:131;32511:4;32385:131;:::i;:::-;32377:139;;32275:248;;;:::o;32954:419::-;;33158:2;33147:9;33143:18;33135:26;;33207:9;33201:4;33197:20;33193:1;33182:9;33178:17;33171:47;33235:131;33361:4;33235:131;:::i;:::-;33227:139;;33125:248;;;:::o;33379:419::-;;33583:2;33572:9;33568:18;33560:26;;33632:9;33626:4;33622:20;33618:1;33607:9;33603:17;33596:47;33660:131;33786:4;33660:131;:::i;:::-;33652:139;;33550:248;;;:::o;33804:222::-;;33935:2;33924:9;33920:18;33912:26;;33948:71;34016:1;34005:9;34001:17;33992:6;33948:71;:::i;:::-;33902:124;;;;:::o;34032:283::-;;34098:2;34092:9;34082:19;;34140:4;34132:6;34128:17;34247:6;34235:10;34232:22;34211:18;34199:10;34196:34;34193:62;34190:2;;;34258:18;;:::i;:::-;34190:2;34298:10;34294:2;34287:22;34072:243;;;;:::o;34321:331::-;;34472:18;34464:6;34461:30;34458:2;;;34494:18;;:::i;:::-;34458:2;34579:4;34575:9;34568:4;34560:6;34556:17;34552:33;34544:41;;34640:4;34634;34630:15;34622:23;;34387:265;;;:::o;34658:332::-;;34810:18;34802:6;34799:30;34796:2;;;34832:18;;:::i;:::-;34796:2;34917:4;34913:9;34906:4;34898:6;34894:17;34890:33;34882:41;;34978:4;34972;34968:15;34960:23;;34725:265;;;:::o;34996:141::-;;35068:3;35060:11;;35091:3;35088:1;35081:14;35125:4;35122:1;35112:18;35104:26;;35050:87;;;:::o;35143:98::-;;35228:5;35222:12;35212:22;;35201:40;;;:::o;35247:99::-;;35333:5;35327:12;35317:22;;35306:40;;;:::o;35352:168::-;;35469:6;35464:3;35457:19;35509:4;35504:3;35500:14;35485:29;;35447:73;;;;:::o;35526:147::-;;35664:3;35649:18;;35639:34;;;;:::o;35679:169::-;;35797:6;35792:3;35785:19;35837:4;35832:3;35828:14;35813:29;;35775:73;;;;:::o;35854:148::-;;35993:3;35978:18;;35968:34;;;;:::o;36008:273::-;;36067:20;36085:1;36067:20;:::i;:::-;36062:25;;36101:20;36119:1;36101:20;:::i;:::-;36096:25;;36223:1;36187:34;36183:42;36180:1;36177:49;36174:2;;;36229:18;;:::i;:::-;36174:2;36273:1;36270;36266:9;36259:16;;36052:229;;;;:::o;36287:305::-;;36346:20;36364:1;36346:20;:::i;:::-;36341:25;;36380:20;36398:1;36380:20;:::i;:::-;36375:25;;36534:1;36466:66;36462:74;36459:1;36456:81;36453:2;;;36540:18;;:::i;:::-;36453:2;36584:1;36581;36577:9;36570:16;;36331:261;;;;:::o;36598:185::-;;36655:20;36673:1;36655:20;:::i;:::-;36650:25;;36689:20;36707:1;36689:20;:::i;:::-;36684:25;;36728:1;36718:2;;36733:18;;:::i;:::-;36718:2;36775:1;36772;36768:9;36763:14;;36640:143;;;;:::o;36789:348::-;;36852:20;36870:1;36852:20;:::i;:::-;36847:25;;36886:20;36904:1;36886:20;:::i;:::-;36881:25;;37074:1;37006:66;37002:74;36999:1;36996:81;36991:1;36984:9;36977:17;36973:105;36970:2;;;37081:18;;:::i;:::-;36970:2;37129:1;37126;37122:9;37111:20;;36837:300;;;;:::o;37143:191::-;;37203:20;37221:1;37203:20;:::i;:::-;37198:25;;37237:20;37255:1;37237:20;:::i;:::-;37232:25;;37276:1;37273;37270:8;37267:2;;;37281:18;;:::i;:::-;37267:2;37326:1;37323;37319:9;37311:17;;37188:146;;;;:::o;37340:96::-;;37406:24;37424:5;37406:24;:::i;:::-;37395:35;;37385:51;;;:::o;37442:90::-;;37519:5;37512:13;37505:21;37494:32;;37484:48;;;:::o;37538:149::-;;37614:66;37607:5;37603:78;37592:89;;37582:105;;;:::o;37693:125::-;;37788:24;37806:5;37788:24;:::i;:::-;37777:35;;37767:51;;;:::o;37824:118::-;;37901:34;37894:5;37890:46;37879:57;;37869:73;;;:::o;37948:126::-;;38025:42;38018:5;38014:54;38003:65;;37993:81;;;:::o;38080:77::-;;38146:5;38135:16;;38125:32;;;:::o;38163:154::-;38247:6;38242:3;38237;38224:30;38309:1;38300:6;38295:3;38291:16;38284:27;38214:103;;;:::o;38323:307::-;38391:1;38401:113;38415:6;38412:1;38409:13;38401:113;;;38500:1;38495:3;38491:11;38485:18;38481:1;38476:3;38472:11;38465:39;38437:2;38434:1;38430:10;38425:15;;38401:113;;;38532:6;38529:1;38526:13;38523:2;;;38612:1;38603:6;38598:3;38594:16;38587:27;38523:2;38372:258;;;;:::o;38636:171::-;;38698:24;38716:5;38698:24;:::i;:::-;38689:33;;38744:4;38737:5;38734:15;38731:2;;;38752:18;;:::i;:::-;38731:2;38799:1;38792:5;38788:13;38781:20;;38679:128;;;:::o;38813:320::-;;38894:1;38888:4;38884:12;38874:22;;38941:1;38935:4;38931:12;38962:18;38952:2;;39018:4;39010:6;39006:17;38996:27;;38952:2;39080;39072:6;39069:14;39049:18;39046:38;39043:2;;;39099:18;;:::i;:::-;39043:2;38864:269;;;;:::o;39139:233::-;;39201:24;39219:5;39201:24;:::i;:::-;39192:33;;39247:66;39240:5;39237:77;39234:2;;;39317:18;;:::i;:::-;39234:2;39364:1;39357:5;39353:13;39346:20;;39182:190;;;:::o;39378:176::-;;39427:20;39445:1;39427:20;:::i;:::-;39422:25;;39461:20;39479:1;39461:20;:::i;:::-;39456:25;;39500:1;39490:2;;39505:18;;:::i;:::-;39490:2;39546:1;39543;39539:9;39534:14;;39412:142;;;;:::o;39560:180::-;39608:77;39605:1;39598:88;39705:4;39702:1;39695:15;39729:4;39726:1;39719:15;39746:180;39794:77;39791:1;39784:88;39891:4;39888:1;39881:15;39915:4;39912:1;39905:15;39932:180;39980:77;39977:1;39970:88;40077:4;40074:1;40067:15;40101:4;40098:1;40091:15;40118:180;40166:77;40163:1;40156:88;40263:4;40260:1;40253:15;40287:4;40284:1;40277:15;40304:102;;40396:2;40392:7;40387:2;40380:5;40376:14;40372:28;40362:38;;40352:54;;;:::o;40412:122::-;40485:24;40503:5;40485:24;:::i;:::-;40478:5;40475:35;40465:2;;40524:1;40521;40514:12;40465:2;40455:79;:::o;40540:116::-;40610:21;40625:5;40610:21;:::i;:::-;40603:5;40600:32;40590:2;;40646:1;40643;40636:12;40590:2;40580:76;:::o;40662:120::-;40734:23;40751:5;40734:23;:::i;:::-;40727:5;40724:34;40714:2;;40772:1;40769;40762:12;40714:2;40704:78;:::o;40788:180::-;40890:53;40937:5;40890:53;:::i;:::-;40883:5;40880:64;40870:2;;40958:1;40955;40948:12;40870:2;40860:108;:::o;40974:122::-;41047:24;41065:5;41047:24;:::i;:::-;41040:5;41037:35;41027:2;;41086:1;41083;41076:12;41027:2;41017:79;:::o

Swarm Source

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