ETH Price: $2,297.67 (+0.42%)

Token

The Letter Q (Q)
 

Overview

Max Total Supply

1,000 Q

Holders

136

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
brickingfloors.eth
Balance
22 Q
0xf59eafd5ee67ec7be2fc150069b117b618b0484e
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:
LetterQ

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/LetterQ.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[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 LetterQ is ERC721A, Ownable {

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

    uint256 public constant MAX_PER_TX_FREE = 2;
    uint256 public constant MAX_PER_TX = 20;
    uint256 public constant FREE_MAX_SUPPLY = 100;
    uint256 public MAX_SUPPLY = 1000;
    uint256 public price = 0.005 ether;

    bool public paused = true;

    constructor() ERC721A("The Letter Q", "Q") {}

    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 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 setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
}

function setMAX_SUPPLY(uint256 newSupply) public onlyOwner {
        MAX_SUPPLY = newSupply;
}


    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 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":"uint256","name":"newSupply","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]

60806040526000805560405180606001604052806036815260200162004bfe6036913960089080519060200190620000399291906200023a565b5060405180606001604052806035815260200162004c3460359139600990805190602001906200006b9291906200023a565b506103e8600a556611c37937e08000600b556001600c60006101000a81548160ff021916908315150217905550348015620000a557600080fd5b506040518060400160405280600c81526020017f546865204c6574746572205100000000000000000000000000000000000000008152506040518060400160405280600181526020017f510000000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200012a9291906200023a565b508060029080519060200190620001439291906200023a565b505050620001666200015a6200016c60201b60201c565b6200017460201b60201c565b6200034f565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024890620002ea565b90600052602060002090601f0160209004810192826200026c5760008555620002b8565b82601f106200028757805160ff1916838001178555620002b8565b82800160010185558215620002b8579182015b82811115620002b75782518255916020019190600101906200029a565b5b509050620002c79190620002cb565b5090565b5b80821115620002e6576000816000905550600101620002cc565b5090565b600060028204905060018216806200030357607f821691505b602082108114156200031a576200031962000320565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61489f806200035f6000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d4851461077e578063e985e9c5146107a9578063ec9496ba146107e6578063f2fde38b1461080f578063f43a22dc146108385761020f565b8063b88d4fde146106c2578063c6682862146106eb578063c87b56dd14610716578063cd7c0326146107535761020f565b8063938e3d7b116100e7578063938e3d7b146105fe57806395d89b4114610627578063a035b1fe14610652578063a0712d681461067d578063a22cb465146106995761020f565b8063715018a6146105685780638069876d1461057f5780638da5cb5b146105aa57806391b7f5ed146105d55761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461046f5780635c975abb146104985780636352211e146104c35780636c0360eb1461050057806370a082311461052b5761020f565b80633ccfd60b146103c757806342842e0e146103de578063463fff79146104075780634f6ccce7146104325761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806323b872dd146103365780632f745c591461035f57806332cb6b0c1461039c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906131f7565b610863565b6040516102489190613897565b60405180910390f35b34801561025d57600080fd5b50610278600480360381019061027391906131ca565b6109ad565b005b34801561028657600080fd5b5061028f610a46565b60405161029c91906138b2565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c7919061329a565b610ad8565b6040516102d99190613830565b60405180910390f35b3480156102ee57600080fd5b506103096004803603810190610304919061318a565b610b5d565b005b34801561031757600080fd5b50610320610c76565b60405161032d9190613c34565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613074565b610c7f565b005b34801561036b57600080fd5b506103866004803603810190610381919061318a565b610c8f565b6040516103939190613c34565b60405180910390f35b3480156103a857600080fd5b506103b1610e8d565b6040516103be9190613c34565b60405180910390f35b3480156103d357600080fd5b506103dc610e93565b005b3480156103ea57600080fd5b5061040560048036038101906104009190613074565b610fcb565b005b34801561041357600080fd5b5061041c610feb565b6040516104299190613c34565b60405180910390f35b34801561043e57600080fd5b506104596004803603810190610454919061329a565b610ff0565b6040516104669190613c34565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190613251565b611043565b005b3480156104a457600080fd5b506104ad6110d9565b6040516104ba9190613897565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e5919061329a565b6110ec565b6040516104f79190613830565b60405180910390f35b34801561050c57600080fd5b50610515611102565b60405161052291906138b2565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d9190613007565b611190565b60405161055f9190613c34565b60405180910390f35b34801561057457600080fd5b5061057d611279565b005b34801561058b57600080fd5b50610594611301565b6040516105a19190613c34565b60405180910390f35b3480156105b657600080fd5b506105bf611306565b6040516105cc9190613830565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f7919061329a565b611330565b005b34801561060a57600080fd5b5061062560048036038101906106209190613251565b6113b6565b005b34801561063357600080fd5b5061063c61144c565b60405161064991906138b2565b60405180910390f35b34801561065e57600080fd5b506106676114de565b6040516106749190613c34565b60405180910390f35b6106976004803603810190610692919061329a565b6114e4565b005b3480156106a557600080fd5b506106c060048036038101906106bb919061314a565b611742565b005b3480156106ce57600080fd5b506106e960048036038101906106e491906130c7565b6118c3565b005b3480156106f757600080fd5b5061070061191f565b60405161070d91906138b2565b60405180910390f35b34801561072257600080fd5b5061073d6004803603810190610738919061329a565b611958565b60405161074a91906138b2565b60405180910390f35b34801561075f57600080fd5b50610768611a37565b6040516107759190613830565b60405180910390f35b34801561078a57600080fd5b50610793611a4f565b6040516107a091906138b2565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb9190613034565b611add565b6040516107dd9190613897565b60405180910390f35b3480156107f257600080fd5b5061080d6004803603810190610808919061329a565b611b71565b005b34801561081b57600080fd5b5061083660048036038101906108319190613007565b611bf7565b005b34801561084457600080fd5b5061084d611cef565b60405161085a9190613c34565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a657506109a582611cf4565b5b9050919050565b6109b5611d5e565b73ffffffffffffffffffffffffffffffffffffffff166109d3611306565b73ffffffffffffffffffffffffffffffffffffffff1614610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090613a94565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b606060018054610a5590613f90565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8190613f90565b8015610ace5780601f10610aa357610100808354040283529160200191610ace565b820191906000526020600020905b815481529060010190602001808311610ab157829003601f168201915b5050505050905090565b6000610ae382611d66565b610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1990613bf4565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b68826110ec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd090613b14565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf8611d5e565b73ffffffffffffffffffffffffffffffffffffffff161480610c275750610c2681610c21611d5e565b611add565b5b610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d906139f4565b60405180910390fd5b610c71838383611d73565b505050565b60008054905090565b610c8a838383611e25565b505050565b6000610c9a83611190565b8210610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd2906138d4565b60405180910390fd5b6000610ce5610c76565b905060008060005b83811015610e4b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ddf57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e375786841415610e28578195505050505050610e87565b8380610e3390613ff3565b9450505b508080610e4390613ff3565b915050610ced565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90613bd4565b60405180910390fd5b92915050565b600a5481565b610e9b611d5e565b73ffffffffffffffffffffffffffffffffffffffff16610eb9611306565b73ffffffffffffffffffffffffffffffffffffffff1614610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690613a94565b60405180910390fd5b60004790506000610f1e611d5e565b73ffffffffffffffffffffffffffffffffffffffff1682604051610f419061381b565b60006040518083038185875af1925050503d8060008114610f7e576040519150601f19603f3d011682016040523d82523d6000602084013e610f83565b606091505b5050905080610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90613bb4565b60405180910390fd5b5050565b610fe6838383604051806020016040528060008152506118c3565b505050565b600281565b6000610ffa610c76565b821061103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290613994565b60405180910390fd5b819050919050565b61104b611d5e565b73ffffffffffffffffffffffffffffffffffffffff16611069611306565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690613a94565b60405180910390fd5b80600890805190602001906110d5929190612de1565b5050565b600c60009054906101000a900460ff1681565b60006110f7826123cc565b600001519050919050565b6008805461110f90613f90565b80601f016020809104026020016040519081016040528092919081815260200182805461113b90613f90565b80156111885780601f1061115d57610100808354040283529160200191611188565b820191906000526020600020905b81548152906001019060200180831161116b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890613a34565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611281611d5e565b73ffffffffffffffffffffffffffffffffffffffff1661129f611306565b73ffffffffffffffffffffffffffffffffffffffff16146112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec90613a94565b60405180910390fd5b6112ff6000612527565b565b606481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611338611d5e565b73ffffffffffffffffffffffffffffffffffffffff16611356611306565b73ffffffffffffffffffffffffffffffffffffffff16146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390613a94565b60405180910390fd5b80600b8190555050565b6113be611d5e565b73ffffffffffffffffffffffffffffffffffffffff166113dc611306565b73ffffffffffffffffffffffffffffffffffffffff1614611432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142990613a94565b60405180910390fd5b8060099080519060200190611448929190612de1565b5050565b60606002805461145b90613f90565b80601f016020809104026020016040519081016040528092919081815260200182805461148790613f90565b80156114d45780601f106114a9576101008083540402835291602001916114d4565b820191906000526020600020905b8154815290600101906020018083116114b757829003601f168201915b5050505050905090565b600b5481565b60006114ee611d5e565b9050600c60009054906101000a900460ff1615611540576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611537906138f4565b60405180910390fd5b81611549610c76565b6115539190613d7f565b600a541015611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e90613a14565b60405180910390fd5b600082116115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190613954565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f90613c14565b60405180910390fd5b611650610c76565b6064106116a057816002101561169b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611692906139d4565b60405180910390fd5b611734565b81601410156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90613974565b60405180910390fd5b34600b54836116f39190613e06565b14611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a90613af4565b60405180910390fd5b5b61173e81836125ed565b5050565b61174a611d5e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af90613ab4565b60405180910390fd5b80600660006117c5611d5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611872611d5e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118b79190613897565b60405180910390a35050565b6118ce848484611e25565b6118da8484848461260b565b611919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191090613b54565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061196382611d66565b6119a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199990613a54565b60405180910390fd5b6000600880546119b190613f90565b9050116119cd5760405180602001604052806000815250611a30565b60086119d8836127a2565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611a20939291906137ea565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60098054611a5c90613f90565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8890613f90565b8015611ad55780601f10611aaa57610100808354040283529160200191611ad5565b820191906000526020600020905b815481529060010190602001808311611ab857829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b79611d5e565b73ffffffffffffffffffffffffffffffffffffffff16611b97611306565b73ffffffffffffffffffffffffffffffffffffffff1614611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490613a94565b60405180910390fd5b80600a8190555050565b611bff611d5e565b73ffffffffffffffffffffffffffffffffffffffff16611c1d611306565b73ffffffffffffffffffffffffffffffffffffffff1614611c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6a90613a94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda90613914565b60405180910390fd5b611cec81612527565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e30826123cc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e57611d5e565b73ffffffffffffffffffffffffffffffffffffffff161480611eb35750611e7c611d5e565b73ffffffffffffffffffffffffffffffffffffffff16611e9b84610ad8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ecf5750611ece8260000151611ec9611d5e565b611add565b5b905080611f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0890613ad4565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90613a74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fea906139b4565b60405180910390fd5b6120008585856001612903565b6120106000848460000151611d73565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122169190613d7f565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561235c5761228c81611d66565b1561235b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c48686866001612909565b505050505050565b6123d4612e67565b6123dd82611d66565b61241c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241390613934565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461250e578092505050612522565b50808061251a90613f66565b915050612422565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61260782826040518060200160405280600081525061290f565b5050565b600061262c8473ffffffffffffffffffffffffffffffffffffffff16612dce565b15612795578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612655611d5e565b8786866040518563ffffffff1660e01b8152600401612677949392919061384b565b602060405180830381600087803b15801561269157600080fd5b505af19250505080156126c257506040513d601f19601f820116820180604052508101906126bf9190613224565b60015b612745573d80600081146126f2576040519150601f19603f3d011682016040523d82523d6000602084013e6126f7565b606091505b5060008151141561273d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273490613b54565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061279a565b600190505b949350505050565b606060008214156127ea576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128fe565b600082905060005b6000821461281c57808061280590613ff3565b915050600a826128159190613dd5565b91506127f2565b60008167ffffffffffffffff81111561283857612837614129565b5b6040519080825280601f01601f19166020018201604052801561286a5781602001600182028036833780820191505090505b5090505b600085146128f7576001826128839190613e60565b9150600a85612892919061403c565b603061289e9190613d7f565b60f81b8183815181106128b4576128b36140fa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128f09190613dd5565b945061286e565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297c90613b94565b60405180910390fd5b61298e81611d66565b156129ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c590613b74565b60405180910390fd5b60008311612a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0890613b34565b60405180910390fd5b612a1e6000858386612903565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b1b9190613d39565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b429190613d39565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612db157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d51600088848861260b565b612d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8790613b54565b60405180910390fd5b8180612d9b90613ff3565b9250508080612da990613ff3565b915050612ce0565b5080600081905550612dc66000878588612909565b505050505050565b600080823b905060008111915050919050565b828054612ded90613f90565b90600052602060002090601f016020900481019282612e0f5760008555612e56565b82601f10612e2857805160ff1916838001178555612e56565b82800160010185558215612e56579182015b82811115612e55578251825591602001919060010190612e3a565b5b509050612e639190612ea1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612eba576000816000905550600101612ea2565b5090565b6000612ed1612ecc84613c74565b613c4f565b905082815260208101848484011115612eed57612eec61415d565b5b612ef8848285613f24565b509392505050565b6000612f13612f0e84613ca5565b613c4f565b905082815260208101848484011115612f2f57612f2e61415d565b5b612f3a848285613f24565b509392505050565b600081359050612f518161480d565b92915050565b600081359050612f6681614824565b92915050565b600081359050612f7b8161483b565b92915050565b600081519050612f908161483b565b92915050565b600082601f830112612fab57612faa614158565b5b8135612fbb848260208601612ebe565b91505092915050565b600082601f830112612fd957612fd8614158565b5b8135612fe9848260208601612f00565b91505092915050565b60008135905061300181614852565b92915050565b60006020828403121561301d5761301c614167565b5b600061302b84828501612f42565b91505092915050565b6000806040838503121561304b5761304a614167565b5b600061305985828601612f42565b925050602061306a85828601612f42565b9150509250929050565b60008060006060848603121561308d5761308c614167565b5b600061309b86828701612f42565b93505060206130ac86828701612f42565b92505060406130bd86828701612ff2565b9150509250925092565b600080600080608085870312156130e1576130e0614167565b5b60006130ef87828801612f42565b945050602061310087828801612f42565b935050604061311187828801612ff2565b925050606085013567ffffffffffffffff81111561313257613131614162565b5b61313e87828801612f96565b91505092959194509250565b6000806040838503121561316157613160614167565b5b600061316f85828601612f42565b925050602061318085828601612f57565b9150509250929050565b600080604083850312156131a1576131a0614167565b5b60006131af85828601612f42565b92505060206131c085828601612ff2565b9150509250929050565b6000602082840312156131e0576131df614167565b5b60006131ee84828501612f57565b91505092915050565b60006020828403121561320d5761320c614167565b5b600061321b84828501612f6c565b91505092915050565b60006020828403121561323a57613239614167565b5b600061324884828501612f81565b91505092915050565b60006020828403121561326757613266614167565b5b600082013567ffffffffffffffff81111561328557613284614162565b5b61329184828501612fc4565b91505092915050565b6000602082840312156132b0576132af614167565b5b60006132be84828501612ff2565b91505092915050565b6132d081613e94565b82525050565b6132df81613ea6565b82525050565b60006132f082613ceb565b6132fa8185613d01565b935061330a818560208601613f33565b6133138161416c565b840191505092915050565b600061332982613cf6565b6133338185613d1d565b9350613343818560208601613f33565b61334c8161416c565b840191505092915050565b600061336282613cf6565b61336c8185613d2e565b935061337c818560208601613f33565b80840191505092915050565b6000815461339581613f90565b61339f8186613d2e565b945060018216600081146133ba57600181146133cb576133fe565b60ff198316865281860193506133fe565b6133d485613cd6565b60005b838110156133f6578154818901526001820191506020810190506133d7565b838801955050505b50505092915050565b6000613414602283613d1d565b915061341f8261417d565b604082019050919050565b6000613437600683613d1d565b9150613442826141cc565b602082019050919050565b600061345a602683613d1d565b9150613465826141f5565b604082019050919050565b600061347d602a83613d1d565b915061348882614244565b604082019050919050565b60006134a0600a83613d1d565b91506134ab82614293565b602082019050919050565b60006134c3601683613d1d565b91506134ce826142bc565b602082019050919050565b60006134e6602383613d1d565b91506134f1826142e5565b604082019050919050565b6000613509602583613d1d565b915061351482614334565b604082019050919050565b600061352c601683613d1d565b915061353782614383565b602082019050919050565b600061354f603983613d1d565b915061355a826143ac565b604082019050919050565b6000613572601283613d1d565b915061357d826143fb565b602082019050919050565b6000613595602b83613d1d565b91506135a082614424565b604082019050919050565b60006135b8601583613d1d565b91506135c382614473565b602082019050919050565b60006135db602683613d1d565b91506135e68261449c565b604082019050919050565b60006135fe602083613d1d565b9150613609826144eb565b602082019050919050565b6000613621601a83613d1d565b915061362c82614514565b602082019050919050565b6000613644603283613d1d565b915061364f8261453d565b604082019050919050565b6000613667601683613d1d565b91506136728261458c565b602082019050919050565b600061368a602283613d1d565b9150613695826145b5565b604082019050919050565b60006136ad600083613d12565b91506136b882614604565b600082019050919050565b60006136d0602383613d1d565b91506136db82614607565b604082019050919050565b60006136f3603383613d1d565b91506136fe82614656565b604082019050919050565b6000613716601d83613d1d565b9150613721826146a5565b602082019050919050565b6000613739602183613d1d565b9150613744826146ce565b604082019050919050565b600061375c600e83613d1d565b91506137678261471d565b602082019050919050565b600061377f602e83613d1d565b915061378a82614746565b604082019050919050565b60006137a2602d83613d1d565b91506137ad82614795565b604082019050919050565b60006137c5600c83613d1d565b91506137d0826147e4565b602082019050919050565b6137e481613f1a565b82525050565b60006137f68286613388565b91506138028285613357565b915061380e8284613357565b9150819050949350505050565b6000613826826136a0565b9150819050919050565b600060208201905061384560008301846132c7565b92915050565b600060808201905061386060008301876132c7565b61386d60208301866132c7565b61387a60408301856137db565b818103606083015261388c81846132e5565b905095945050505050565b60006020820190506138ac60008301846132d6565b92915050565b600060208201905081810360008301526138cc818461331e565b905092915050565b600060208201905081810360008301526138ed81613407565b9050919050565b6000602082019050818103600083015261390d8161342a565b9050919050565b6000602082019050818103600083015261392d8161344d565b9050919050565b6000602082019050818103600083015261394d81613470565b9050919050565b6000602082019050818103600083015261396d81613493565b9050919050565b6000602082019050818103600083015261398d816134b6565b9050919050565b600060208201905081810360008301526139ad816134d9565b9050919050565b600060208201905081810360008301526139cd816134fc565b9050919050565b600060208201905081810360008301526139ed8161351f565b9050919050565b60006020820190508181036000830152613a0d81613542565b9050919050565b60006020820190508181036000830152613a2d81613565565b9050919050565b60006020820190508181036000830152613a4d81613588565b9050919050565b60006020820190508181036000830152613a6d816135ab565b9050919050565b60006020820190508181036000830152613a8d816135ce565b9050919050565b60006020820190508181036000830152613aad816135f1565b9050919050565b60006020820190508181036000830152613acd81613614565b9050919050565b60006020820190508181036000830152613aed81613637565b9050919050565b60006020820190508181036000830152613b0d8161365a565b9050919050565b60006020820190508181036000830152613b2d8161367d565b9050919050565b60006020820190508181036000830152613b4d816136c3565b9050919050565b60006020820190508181036000830152613b6d816136e6565b9050919050565b60006020820190508181036000830152613b8d81613709565b9050919050565b60006020820190508181036000830152613bad8161372c565b9050919050565b60006020820190508181036000830152613bcd8161374f565b9050919050565b60006020820190508181036000830152613bed81613772565b9050919050565b60006020820190508181036000830152613c0d81613795565b9050919050565b60006020820190508181036000830152613c2d816137b8565b9050919050565b6000602082019050613c4960008301846137db565b92915050565b6000613c59613c6a565b9050613c658282613fc2565b919050565b6000604051905090565b600067ffffffffffffffff821115613c8f57613c8e614129565b5b613c988261416c565b9050602081019050919050565b600067ffffffffffffffff821115613cc057613cbf614129565b5b613cc98261416c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4482613ede565b9150613d4f83613ede565b9250826fffffffffffffffffffffffffffffffff03821115613d7457613d7361406d565b5b828201905092915050565b6000613d8a82613f1a565b9150613d9583613f1a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dca57613dc961406d565b5b828201905092915050565b6000613de082613f1a565b9150613deb83613f1a565b925082613dfb57613dfa61409c565b5b828204905092915050565b6000613e1182613f1a565b9150613e1c83613f1a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e5557613e5461406d565b5b828202905092915050565b6000613e6b82613f1a565b9150613e7683613f1a565b925082821015613e8957613e8861406d565b5b828203905092915050565b6000613e9f82613efa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f51578082015181840152602081019050613f36565b83811115613f60576000848401525b50505050565b6000613f7182613f1a565b91506000821415613f8557613f8461406d565b5b600182039050919050565b60006002820490506001821680613fa857607f821691505b60208210811415613fbc57613fbb6140cb565b5b50919050565b613fcb8261416c565b810181811067ffffffffffffffff82111715613fea57613fe9614129565b5b80604052505050565b6000613ffe82613f1a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140315761403061406d565b5b600182019050919050565b600061404782613f1a565b915061405283613f1a565b9250826140625761406161409c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61481681613e94565b811461482157600080fd5b50565b61482d81613ea6565b811461483857600080fd5b50565b61484481613eb2565b811461484f57600080fd5b50565b61485b81613f1a565b811461486657600080fd5b5056fea2646970667358221220703b6feed1cac0e14adb815dcc23037c0e00f4ed335756dbc73c46de4cf7704d64736f6c63430008070033697066733a2f2f516d624e6e5365714574484c7a76794478507a62425a6463776935464a33765869786251525338375237415665582f697066733a2f2f516d624e6e5365714574484c7a76794478507a62425a6463776935464a3376586978625152533837523741566558

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d4851461077e578063e985e9c5146107a9578063ec9496ba146107e6578063f2fde38b1461080f578063f43a22dc146108385761020f565b8063b88d4fde146106c2578063c6682862146106eb578063c87b56dd14610716578063cd7c0326146107535761020f565b8063938e3d7b116100e7578063938e3d7b146105fe57806395d89b4114610627578063a035b1fe14610652578063a0712d681461067d578063a22cb465146106995761020f565b8063715018a6146105685780638069876d1461057f5780638da5cb5b146105aa57806391b7f5ed146105d55761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461046f5780635c975abb146104985780636352211e146104c35780636c0360eb1461050057806370a082311461052b5761020f565b80633ccfd60b146103c757806342842e0e146103de578063463fff79146104075780634f6ccce7146104325761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806323b872dd146103365780632f745c591461035f57806332cb6b0c1461039c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906131f7565b610863565b6040516102489190613897565b60405180910390f35b34801561025d57600080fd5b50610278600480360381019061027391906131ca565b6109ad565b005b34801561028657600080fd5b5061028f610a46565b60405161029c91906138b2565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c7919061329a565b610ad8565b6040516102d99190613830565b60405180910390f35b3480156102ee57600080fd5b506103096004803603810190610304919061318a565b610b5d565b005b34801561031757600080fd5b50610320610c76565b60405161032d9190613c34565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613074565b610c7f565b005b34801561036b57600080fd5b506103866004803603810190610381919061318a565b610c8f565b6040516103939190613c34565b60405180910390f35b3480156103a857600080fd5b506103b1610e8d565b6040516103be9190613c34565b60405180910390f35b3480156103d357600080fd5b506103dc610e93565b005b3480156103ea57600080fd5b5061040560048036038101906104009190613074565b610fcb565b005b34801561041357600080fd5b5061041c610feb565b6040516104299190613c34565b60405180910390f35b34801561043e57600080fd5b506104596004803603810190610454919061329a565b610ff0565b6040516104669190613c34565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190613251565b611043565b005b3480156104a457600080fd5b506104ad6110d9565b6040516104ba9190613897565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e5919061329a565b6110ec565b6040516104f79190613830565b60405180910390f35b34801561050c57600080fd5b50610515611102565b60405161052291906138b2565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d9190613007565b611190565b60405161055f9190613c34565b60405180910390f35b34801561057457600080fd5b5061057d611279565b005b34801561058b57600080fd5b50610594611301565b6040516105a19190613c34565b60405180910390f35b3480156105b657600080fd5b506105bf611306565b6040516105cc9190613830565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f7919061329a565b611330565b005b34801561060a57600080fd5b5061062560048036038101906106209190613251565b6113b6565b005b34801561063357600080fd5b5061063c61144c565b60405161064991906138b2565b60405180910390f35b34801561065e57600080fd5b506106676114de565b6040516106749190613c34565b60405180910390f35b6106976004803603810190610692919061329a565b6114e4565b005b3480156106a557600080fd5b506106c060048036038101906106bb919061314a565b611742565b005b3480156106ce57600080fd5b506106e960048036038101906106e491906130c7565b6118c3565b005b3480156106f757600080fd5b5061070061191f565b60405161070d91906138b2565b60405180910390f35b34801561072257600080fd5b5061073d6004803603810190610738919061329a565b611958565b60405161074a91906138b2565b60405180910390f35b34801561075f57600080fd5b50610768611a37565b6040516107759190613830565b60405180910390f35b34801561078a57600080fd5b50610793611a4f565b6040516107a091906138b2565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb9190613034565b611add565b6040516107dd9190613897565b60405180910390f35b3480156107f257600080fd5b5061080d6004803603810190610808919061329a565b611b71565b005b34801561081b57600080fd5b5061083660048036038101906108319190613007565b611bf7565b005b34801561084457600080fd5b5061084d611cef565b60405161085a9190613c34565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a657506109a582611cf4565b5b9050919050565b6109b5611d5e565b73ffffffffffffffffffffffffffffffffffffffff166109d3611306565b73ffffffffffffffffffffffffffffffffffffffff1614610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090613a94565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b606060018054610a5590613f90565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8190613f90565b8015610ace5780601f10610aa357610100808354040283529160200191610ace565b820191906000526020600020905b815481529060010190602001808311610ab157829003601f168201915b5050505050905090565b6000610ae382611d66565b610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1990613bf4565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b68826110ec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd090613b14565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf8611d5e565b73ffffffffffffffffffffffffffffffffffffffff161480610c275750610c2681610c21611d5e565b611add565b5b610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d906139f4565b60405180910390fd5b610c71838383611d73565b505050565b60008054905090565b610c8a838383611e25565b505050565b6000610c9a83611190565b8210610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd2906138d4565b60405180910390fd5b6000610ce5610c76565b905060008060005b83811015610e4b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ddf57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e375786841415610e28578195505050505050610e87565b8380610e3390613ff3565b9450505b508080610e4390613ff3565b915050610ced565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90613bd4565b60405180910390fd5b92915050565b600a5481565b610e9b611d5e565b73ffffffffffffffffffffffffffffffffffffffff16610eb9611306565b73ffffffffffffffffffffffffffffffffffffffff1614610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690613a94565b60405180910390fd5b60004790506000610f1e611d5e565b73ffffffffffffffffffffffffffffffffffffffff1682604051610f419061381b565b60006040518083038185875af1925050503d8060008114610f7e576040519150601f19603f3d011682016040523d82523d6000602084013e610f83565b606091505b5050905080610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90613bb4565b60405180910390fd5b5050565b610fe6838383604051806020016040528060008152506118c3565b505050565b600281565b6000610ffa610c76565b821061103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290613994565b60405180910390fd5b819050919050565b61104b611d5e565b73ffffffffffffffffffffffffffffffffffffffff16611069611306565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690613a94565b60405180910390fd5b80600890805190602001906110d5929190612de1565b5050565b600c60009054906101000a900460ff1681565b60006110f7826123cc565b600001519050919050565b6008805461110f90613f90565b80601f016020809104026020016040519081016040528092919081815260200182805461113b90613f90565b80156111885780601f1061115d57610100808354040283529160200191611188565b820191906000526020600020905b81548152906001019060200180831161116b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890613a34565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611281611d5e565b73ffffffffffffffffffffffffffffffffffffffff1661129f611306565b73ffffffffffffffffffffffffffffffffffffffff16146112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec90613a94565b60405180910390fd5b6112ff6000612527565b565b606481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611338611d5e565b73ffffffffffffffffffffffffffffffffffffffff16611356611306565b73ffffffffffffffffffffffffffffffffffffffff16146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390613a94565b60405180910390fd5b80600b8190555050565b6113be611d5e565b73ffffffffffffffffffffffffffffffffffffffff166113dc611306565b73ffffffffffffffffffffffffffffffffffffffff1614611432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142990613a94565b60405180910390fd5b8060099080519060200190611448929190612de1565b5050565b60606002805461145b90613f90565b80601f016020809104026020016040519081016040528092919081815260200182805461148790613f90565b80156114d45780601f106114a9576101008083540402835291602001916114d4565b820191906000526020600020905b8154815290600101906020018083116114b757829003601f168201915b5050505050905090565b600b5481565b60006114ee611d5e565b9050600c60009054906101000a900460ff1615611540576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611537906138f4565b60405180910390fd5b81611549610c76565b6115539190613d7f565b600a541015611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e90613a14565b60405180910390fd5b600082116115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190613954565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f90613c14565b60405180910390fd5b611650610c76565b6064106116a057816002101561169b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611692906139d4565b60405180910390fd5b611734565b81601410156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90613974565b60405180910390fd5b34600b54836116f39190613e06565b14611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a90613af4565b60405180910390fd5b5b61173e81836125ed565b5050565b61174a611d5e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af90613ab4565b60405180910390fd5b80600660006117c5611d5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611872611d5e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118b79190613897565b60405180910390a35050565b6118ce848484611e25565b6118da8484848461260b565b611919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191090613b54565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061196382611d66565b6119a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199990613a54565b60405180910390fd5b6000600880546119b190613f90565b9050116119cd5760405180602001604052806000815250611a30565b60086119d8836127a2565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611a20939291906137ea565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60098054611a5c90613f90565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8890613f90565b8015611ad55780601f10611aaa57610100808354040283529160200191611ad5565b820191906000526020600020905b815481529060010190602001808311611ab857829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b79611d5e565b73ffffffffffffffffffffffffffffffffffffffff16611b97611306565b73ffffffffffffffffffffffffffffffffffffffff1614611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490613a94565b60405180910390fd5b80600a8190555050565b611bff611d5e565b73ffffffffffffffffffffffffffffffffffffffff16611c1d611306565b73ffffffffffffffffffffffffffffffffffffffff1614611c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6a90613a94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda90613914565b60405180910390fd5b611cec81612527565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e30826123cc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e57611d5e565b73ffffffffffffffffffffffffffffffffffffffff161480611eb35750611e7c611d5e565b73ffffffffffffffffffffffffffffffffffffffff16611e9b84610ad8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ecf5750611ece8260000151611ec9611d5e565b611add565b5b905080611f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0890613ad4565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90613a74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fea906139b4565b60405180910390fd5b6120008585856001612903565b6120106000848460000151611d73565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122169190613d7f565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561235c5761228c81611d66565b1561235b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c48686866001612909565b505050505050565b6123d4612e67565b6123dd82611d66565b61241c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241390613934565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461250e578092505050612522565b50808061251a90613f66565b915050612422565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61260782826040518060200160405280600081525061290f565b5050565b600061262c8473ffffffffffffffffffffffffffffffffffffffff16612dce565b15612795578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612655611d5e565b8786866040518563ffffffff1660e01b8152600401612677949392919061384b565b602060405180830381600087803b15801561269157600080fd5b505af19250505080156126c257506040513d601f19601f820116820180604052508101906126bf9190613224565b60015b612745573d80600081146126f2576040519150601f19603f3d011682016040523d82523d6000602084013e6126f7565b606091505b5060008151141561273d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273490613b54565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061279a565b600190505b949350505050565b606060008214156127ea576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128fe565b600082905060005b6000821461281c57808061280590613ff3565b915050600a826128159190613dd5565b91506127f2565b60008167ffffffffffffffff81111561283857612837614129565b5b6040519080825280601f01601f19166020018201604052801561286a5781602001600182028036833780820191505090505b5090505b600085146128f7576001826128839190613e60565b9150600a85612892919061403c565b603061289e9190613d7f565b60f81b8183815181106128b4576128b36140fa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128f09190613dd5565b945061286e565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297c90613b94565b60405180910390fd5b61298e81611d66565b156129ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c590613b74565b60405180910390fd5b60008311612a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0890613b34565b60405180910390fd5b612a1e6000858386612903565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b1b9190613d39565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b429190613d39565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612db157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d51600088848861260b565b612d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8790613b54565b60405180910390fd5b8180612d9b90613ff3565b9250508080612da990613ff3565b915050612ce0565b5080600081905550612dc66000878588612909565b505050505050565b600080823b905060008111915050919050565b828054612ded90613f90565b90600052602060002090601f016020900481019282612e0f5760008555612e56565b82601f10612e2857805160ff1916838001178555612e56565b82800160010185558215612e56579182015b82811115612e55578251825591602001919060010190612e3a565b5b509050612e639190612ea1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612eba576000816000905550600101612ea2565b5090565b6000612ed1612ecc84613c74565b613c4f565b905082815260208101848484011115612eed57612eec61415d565b5b612ef8848285613f24565b509392505050565b6000612f13612f0e84613ca5565b613c4f565b905082815260208101848484011115612f2f57612f2e61415d565b5b612f3a848285613f24565b509392505050565b600081359050612f518161480d565b92915050565b600081359050612f6681614824565b92915050565b600081359050612f7b8161483b565b92915050565b600081519050612f908161483b565b92915050565b600082601f830112612fab57612faa614158565b5b8135612fbb848260208601612ebe565b91505092915050565b600082601f830112612fd957612fd8614158565b5b8135612fe9848260208601612f00565b91505092915050565b60008135905061300181614852565b92915050565b60006020828403121561301d5761301c614167565b5b600061302b84828501612f42565b91505092915050565b6000806040838503121561304b5761304a614167565b5b600061305985828601612f42565b925050602061306a85828601612f42565b9150509250929050565b60008060006060848603121561308d5761308c614167565b5b600061309b86828701612f42565b93505060206130ac86828701612f42565b92505060406130bd86828701612ff2565b9150509250925092565b600080600080608085870312156130e1576130e0614167565b5b60006130ef87828801612f42565b945050602061310087828801612f42565b935050604061311187828801612ff2565b925050606085013567ffffffffffffffff81111561313257613131614162565b5b61313e87828801612f96565b91505092959194509250565b6000806040838503121561316157613160614167565b5b600061316f85828601612f42565b925050602061318085828601612f57565b9150509250929050565b600080604083850312156131a1576131a0614167565b5b60006131af85828601612f42565b92505060206131c085828601612ff2565b9150509250929050565b6000602082840312156131e0576131df614167565b5b60006131ee84828501612f57565b91505092915050565b60006020828403121561320d5761320c614167565b5b600061321b84828501612f6c565b91505092915050565b60006020828403121561323a57613239614167565b5b600061324884828501612f81565b91505092915050565b60006020828403121561326757613266614167565b5b600082013567ffffffffffffffff81111561328557613284614162565b5b61329184828501612fc4565b91505092915050565b6000602082840312156132b0576132af614167565b5b60006132be84828501612ff2565b91505092915050565b6132d081613e94565b82525050565b6132df81613ea6565b82525050565b60006132f082613ceb565b6132fa8185613d01565b935061330a818560208601613f33565b6133138161416c565b840191505092915050565b600061332982613cf6565b6133338185613d1d565b9350613343818560208601613f33565b61334c8161416c565b840191505092915050565b600061336282613cf6565b61336c8185613d2e565b935061337c818560208601613f33565b80840191505092915050565b6000815461339581613f90565b61339f8186613d2e565b945060018216600081146133ba57600181146133cb576133fe565b60ff198316865281860193506133fe565b6133d485613cd6565b60005b838110156133f6578154818901526001820191506020810190506133d7565b838801955050505b50505092915050565b6000613414602283613d1d565b915061341f8261417d565b604082019050919050565b6000613437600683613d1d565b9150613442826141cc565b602082019050919050565b600061345a602683613d1d565b9150613465826141f5565b604082019050919050565b600061347d602a83613d1d565b915061348882614244565b604082019050919050565b60006134a0600a83613d1d565b91506134ab82614293565b602082019050919050565b60006134c3601683613d1d565b91506134ce826142bc565b602082019050919050565b60006134e6602383613d1d565b91506134f1826142e5565b604082019050919050565b6000613509602583613d1d565b915061351482614334565b604082019050919050565b600061352c601683613d1d565b915061353782614383565b602082019050919050565b600061354f603983613d1d565b915061355a826143ac565b604082019050919050565b6000613572601283613d1d565b915061357d826143fb565b602082019050919050565b6000613595602b83613d1d565b91506135a082614424565b604082019050919050565b60006135b8601583613d1d565b91506135c382614473565b602082019050919050565b60006135db602683613d1d565b91506135e68261449c565b604082019050919050565b60006135fe602083613d1d565b9150613609826144eb565b602082019050919050565b6000613621601a83613d1d565b915061362c82614514565b602082019050919050565b6000613644603283613d1d565b915061364f8261453d565b604082019050919050565b6000613667601683613d1d565b91506136728261458c565b602082019050919050565b600061368a602283613d1d565b9150613695826145b5565b604082019050919050565b60006136ad600083613d12565b91506136b882614604565b600082019050919050565b60006136d0602383613d1d565b91506136db82614607565b604082019050919050565b60006136f3603383613d1d565b91506136fe82614656565b604082019050919050565b6000613716601d83613d1d565b9150613721826146a5565b602082019050919050565b6000613739602183613d1d565b9150613744826146ce565b604082019050919050565b600061375c600e83613d1d565b91506137678261471d565b602082019050919050565b600061377f602e83613d1d565b915061378a82614746565b604082019050919050565b60006137a2602d83613d1d565b91506137ad82614795565b604082019050919050565b60006137c5600c83613d1d565b91506137d0826147e4565b602082019050919050565b6137e481613f1a565b82525050565b60006137f68286613388565b91506138028285613357565b915061380e8284613357565b9150819050949350505050565b6000613826826136a0565b9150819050919050565b600060208201905061384560008301846132c7565b92915050565b600060808201905061386060008301876132c7565b61386d60208301866132c7565b61387a60408301856137db565b818103606083015261388c81846132e5565b905095945050505050565b60006020820190506138ac60008301846132d6565b92915050565b600060208201905081810360008301526138cc818461331e565b905092915050565b600060208201905081810360008301526138ed81613407565b9050919050565b6000602082019050818103600083015261390d8161342a565b9050919050565b6000602082019050818103600083015261392d8161344d565b9050919050565b6000602082019050818103600083015261394d81613470565b9050919050565b6000602082019050818103600083015261396d81613493565b9050919050565b6000602082019050818103600083015261398d816134b6565b9050919050565b600060208201905081810360008301526139ad816134d9565b9050919050565b600060208201905081810360008301526139cd816134fc565b9050919050565b600060208201905081810360008301526139ed8161351f565b9050919050565b60006020820190508181036000830152613a0d81613542565b9050919050565b60006020820190508181036000830152613a2d81613565565b9050919050565b60006020820190508181036000830152613a4d81613588565b9050919050565b60006020820190508181036000830152613a6d816135ab565b9050919050565b60006020820190508181036000830152613a8d816135ce565b9050919050565b60006020820190508181036000830152613aad816135f1565b9050919050565b60006020820190508181036000830152613acd81613614565b9050919050565b60006020820190508181036000830152613aed81613637565b9050919050565b60006020820190508181036000830152613b0d8161365a565b9050919050565b60006020820190508181036000830152613b2d8161367d565b9050919050565b60006020820190508181036000830152613b4d816136c3565b9050919050565b60006020820190508181036000830152613b6d816136e6565b9050919050565b60006020820190508181036000830152613b8d81613709565b9050919050565b60006020820190508181036000830152613bad8161372c565b9050919050565b60006020820190508181036000830152613bcd8161374f565b9050919050565b60006020820190508181036000830152613bed81613772565b9050919050565b60006020820190508181036000830152613c0d81613795565b9050919050565b60006020820190508181036000830152613c2d816137b8565b9050919050565b6000602082019050613c4960008301846137db565b92915050565b6000613c59613c6a565b9050613c658282613fc2565b919050565b6000604051905090565b600067ffffffffffffffff821115613c8f57613c8e614129565b5b613c988261416c565b9050602081019050919050565b600067ffffffffffffffff821115613cc057613cbf614129565b5b613cc98261416c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4482613ede565b9150613d4f83613ede565b9250826fffffffffffffffffffffffffffffffff03821115613d7457613d7361406d565b5b828201905092915050565b6000613d8a82613f1a565b9150613d9583613f1a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dca57613dc961406d565b5b828201905092915050565b6000613de082613f1a565b9150613deb83613f1a565b925082613dfb57613dfa61409c565b5b828204905092915050565b6000613e1182613f1a565b9150613e1c83613f1a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e5557613e5461406d565b5b828202905092915050565b6000613e6b82613f1a565b9150613e7683613f1a565b925082821015613e8957613e8861406d565b5b828203905092915050565b6000613e9f82613efa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f51578082015181840152602081019050613f36565b83811115613f60576000848401525b50505050565b6000613f7182613f1a565b91506000821415613f8557613f8461406d565b5b600182039050919050565b60006002820490506001821680613fa857607f821691505b60208210811415613fbc57613fbb6140cb565b5b50919050565b613fcb8261416c565b810181811067ffffffffffffffff82111715613fea57613fe9614129565b5b80604052505050565b6000613ffe82613f1a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140315761403061406d565b5b600182019050919050565b600061404782613f1a565b915061405283613f1a565b9250826140625761406161409c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61481681613e94565b811461482157600080fd5b50565b61482d81613ea6565b811461483857600080fd5b50565b61484481613eb2565b811461484f57600080fd5b50565b61485b81613f1a565b811461486657600080fd5b5056fea2646970667358221220703b6feed1cac0e14adb815dcc23037c0e00f4ed335756dbc73c46de4cf7704d64736f6c63430008070033

Deployed Bytecode Sourcemap

38075:2453:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26089:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39652:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27716:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29277:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28798:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24530:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30153:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25194:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38597:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39435:209;;;;;;;;;;;;;:::i;:::-;;30386:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38449:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24707:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39741:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38679:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27525:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38121:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26525:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2567:103;;;;;;;;;;;;;:::i;:::-;;38545:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1916:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39969:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39849:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27885:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38636:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38766:657;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29563:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30634:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38298:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40163:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38351:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38208:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29922:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40057:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2825:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38499:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26089:372;26191:4;26243:25;26228:40;;;:11;:40;;;;:105;;;;26300:33;26285:48;;;:11;:48;;;;26228:105;:172;;;;26365:35;26350:50;;;:11;:50;;;;26228:172;:225;;;;26417:36;26441:11;26417:23;:36::i;:::-;26228:225;26208:245;;26089:372;;;:::o;39652:81::-;2147:12;:10;:12::i;:::-;2136:23;;:7;:5;:7::i;:::-;:23;;;2128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39719:6:::1;39710;;:15;;;;;;;;;;;;;;;;;;39652:81:::0;:::o;27716:100::-;27770:13;27803:5;27796:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27716:100;:::o;29277:214::-;29345:7;29373:16;29381:7;29373;:16::i;:::-;29365:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;29459:15;:24;29475:7;29459:24;;;;;;;;;;;;;;;;;;;;;29452:31;;29277:214;;;:::o;28798:413::-;28871:13;28887:24;28903:7;28887:15;:24::i;:::-;28871:40;;28936:5;28930:11;;:2;:11;;;;28922:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29031:5;29015:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29040:37;29057:5;29064:12;:10;:12::i;:::-;29040:16;:37::i;:::-;29015:62;28993:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;29175:28;29184:2;29188:7;29197:5;29175:8;:28::i;:::-;28860:351;28798:413;;:::o;24530:100::-;24583:7;24610:12;;24603:19;;24530:100;:::o;30153:162::-;30279:28;30289:4;30295:2;30299:7;30279:9;:28::i;:::-;30153:162;;;:::o;25194:823::-;25283:7;25319:16;25329:5;25319:9;:16::i;:::-;25311:5;:24;25303:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25385:22;25410:13;:11;:13::i;:::-;25385:38;;25434:19;25468:25;25522:9;25517:426;25541:14;25537:1;:18;25517:426;;;25577:31;25611:11;:14;25623:1;25611:14;;;;;;;;;;;25577:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25670:1;25644:28;;:9;:14;;;:28;;;25640:103;;25713:9;:14;;;25693:34;;25640:103;25782:5;25761:26;;:17;:26;;;25757:175;;;25827:5;25812:11;:20;25808:77;;;25864:1;25857:8;;;;;;;;;25808:77;25903:13;;;;;:::i;:::-;;;;25757:175;25562:381;25557:3;;;;;:::i;:::-;;;;25517:426;;;;25953:56;;;;;;;;;;:::i;:::-;;;;;;;;25194:823;;;;;:::o;38597:32::-;;;;:::o;39435:209::-;2147:12;:10;:12::i;:::-;2136:23;;:7;:5;:7::i;:::-;:23;;;2128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39485:15:::1;39503:21;39485:39;;39536:12;39554;:10;:12::i;:::-;:17;;39579:7;39554:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39535:56;;;39610:7;39602:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;39474:170;;39435:209::o:0;30386:177::-;30516:39;30533:4;30539:2;30543:7;30516:39;;;;;;;;;;;;:16;:39::i;:::-;30386:177;;;:::o;38449:43::-;38491:1;38449:43;:::o;24707:187::-;24774:7;24810:13;:11;:13::i;:::-;24802:5;:21;24794:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;24881:5;24874:12;;24707:187;;;:::o;39741:100::-;2147:12;:10;:12::i;:::-;2136:23;;:7;:5;:7::i;:::-;:23;;;2128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39825:8:::1;39815:7;:18;;;;;;;;;;;;:::i;:::-;;39741:100:::0;:::o;38679:25::-;;;;;;;;;;;;;:::o;27525:124::-;27589:7;27616:20;27628:7;27616:11;:20::i;:::-;:25;;;27609:32;;27525:124;;;:::o;38121:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26525:221::-;26589:7;26634:1;26617:19;;:5;:19;;;;26609:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;26710:12;:19;26723:5;26710:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26702:36;;26695:43;;26525:221;;;:::o;2567:103::-;2147:12;:10;:12::i;:::-;2136:23;;:7;:5;:7::i;:::-;:23;;;2128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2632:30:::1;2659:1;2632:18;:30::i;:::-;2567:103::o:0;38545:45::-;38587:3;38545:45;:::o;1916:87::-;1962:7;1989:6;;;;;;;;;;;1982:13;;1916:87;:::o;39969:84::-;2147:12;:10;:12::i;:::-;2136:23;;:7;:5;:7::i;:::-;:23;;;2128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40041:8:::1;40033:5;:16;;;;39969:84:::0;:::o;39849:116::-;2147:12;:10;:12::i;:::-;2136:23;;:7;:5;:7::i;:::-;:23;;;2128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39945:12:::1;39931:11;:26;;;;;;;;;;;;:::i;:::-;;39849:116:::0;:::o;27885:104::-;27941:13;27974:7;27967:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27885:104;:::o;38636:34::-;;;;:::o;38766:657::-;38825:15;38843:12;:10;:12::i;:::-;38825:30;;38875:6;;;;;;;;;;;38874:7;38866:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;38941:7;38925:13;:11;:13::i;:::-;:23;;;;:::i;:::-;38911:10;;:37;;38903:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39000:1;38990:7;:11;38982:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;39048:7;39035:20;;:9;:20;;;39027:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;39107:13;:11;:13::i;:::-;38587:3;39088:32;39085:291;;39163:7;38491:1;39144:26;;39136:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;39085:291;;;39251:7;38536:2;39237:21;;39229:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;39328:9;39319:5;;39309:7;:15;;;;:::i;:::-;:28;39301:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;39085:291;39388:27;39398:7;39407;39388:9;:27::i;:::-;38814:609;38766:657;:::o;29563:288::-;29670:12;:10;:12::i;:::-;29658:24;;:8;:24;;;;29650:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;29771:8;29726:18;:32;29745:12;:10;:12::i;:::-;29726:32;;;;;;;;;;;;;;;:42;29759:8;29726:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29824:8;29795:48;;29810:12;:10;:12::i;:::-;29795:48;;;29834:8;29795:48;;;;;;:::i;:::-;;;;;;;;29563:288;;:::o;30634:355::-;30793:28;30803:4;30809:2;30813:7;30793:9;:28::i;:::-;30854:48;30877:4;30883:2;30887:7;30896:5;30854:22;:48::i;:::-;30832:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;30634:355;;;;:::o;38298:46::-;;;;;;;;;;;;;;;;;;;:::o;40163:362::-;40229:13;40263:17;40271:8;40263:7;:17::i;:::-;40255:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;40348:1;40330:7;40324:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;40406:7;40430:26;40447:8;40430:16;:26::i;:::-;40473:13;;;;;;;;;;;;;;;;;40373:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40324:193;40317:200;;40163:362;;;:::o;38351:89::-;38398:42;38351:89;:::o;38208:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29922:164::-;30019:4;30043:18;:25;30062:5;30043:25;;;;;;;;;;;;;;;:35;30069:8;30043:35;;;;;;;;;;;;;;;;;;;;;;;;;30036:42;;29922:164;;;;:::o;40057:96::-;2147:12;:10;:12::i;:::-;2136:23;;:7;:5;:7::i;:::-;:23;;;2128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40140:9:::1;40127:10;:22;;;;40057:96:::0;:::o;2825:201::-;2147:12;:10;:12::i;:::-;2136:23;;:7;:5;:7::i;:::-;:23;;;2128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2934:1:::1;2914:22;;:8;:22;;;;2906:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2990:28;3009:8;2990:18;:28::i;:::-;2825:201:::0;:::o;38499:39::-;38536:2;38499:39;:::o;22593:157::-;22678:4;22717:25;22702:40;;;:11;:40;;;;22695:47;;22593:157;;;:::o;657:98::-;710:7;737:10;730:17;;657:98;:::o;31244:111::-;31301:4;31335:12;;31325:7;:22;31318:29;;31244:111;;;:::o;35286:196::-;35428:2;35401:15;:24;35417:7;35401:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35466:7;35462:2;35446:28;;35455:5;35446:28;;;;;;;;;;;;35286:196;;;:::o;33385:1783::-;33500:35;33538:20;33550:7;33538:11;:20::i;:::-;33500:58;;33571:22;33613:13;:18;;;33597:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;33672:12;:10;:12::i;:::-;33648:36;;:20;33660:7;33648:11;:20::i;:::-;:36;;;33597:87;:154;;;;33701:50;33718:13;:18;;;33738:12;:10;:12::i;:::-;33701:16;:50::i;:::-;33597:154;33571:181;;33773:17;33765:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;33888:4;33866:26;;:13;:18;;;:26;;;33858:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;33968:1;33954:16;;:2;:16;;;;33946:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34025:43;34047:4;34053:2;34057:7;34066:1;34025:21;:43::i;:::-;34133:49;34150:1;34154:7;34163:13;:18;;;34133:8;:49::i;:::-;34417:1;34387:12;:18;34400:4;34387:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34461:1;34433:12;:16;34446:2;34433:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34509:43;;;;;;;;34524:2;34509:43;;;;;;34535:15;34509:43;;;;;34486:11;:20;34498:7;34486:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34792:19;34824:1;34814:7;:11;;;;:::i;:::-;34792:33;;34881:1;34840:43;;:11;:24;34852:11;34840:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;34836:227;;;34904:20;34912:11;34904:7;:20::i;:::-;34900:152;;;34972:64;;;;;;;;34987:13;:18;;;34972:64;;;;;;35007:13;:28;;;34972:64;;;;;34945:11;:24;34957:11;34945:24;;;;;;;;;;;:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34900:152;34836:227;35099:7;35095:2;35080:27;;35089:4;35080:27;;;;;;;;;;;;35118:42;35139:4;35145:2;35149:7;35158:1;35118:20;:42::i;:::-;33489:1679;;;33385:1783;;;:::o;26991:472::-;27052:21;;:::i;:::-;27094:16;27102:7;27094;:16::i;:::-;27086:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27175:12;27190:7;27175:22;;27170:216;27224:31;27258:11;:17;27270:4;27258:17;;;;;;;;;;;27224:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27320:1;27294:28;;:9;:14;;;:28;;;27290:85;;27350:9;27343:16;;;;;;27290:85;27209:177;27201:6;;;;;:::i;:::-;;;;27170:216;;26991:472;;;;:::o;3186:191::-;3260:16;3279:6;;;;;;;;;;;3260:25;;3305:8;3296:6;;:17;;;;;;;;;;;;;;;;;;3360:8;3329:40;;3350:8;3329:40;;;;;;;;;;;;3249:128;3186:191;:::o;31363:104::-;31432:27;31442:2;31446:8;31432:27;;;;;;;;;;;;:9;:27::i;:::-;31363:104;;:::o;36047:804::-;36202:4;36223:15;:2;:13;;;:15::i;:::-;36219:625;;;36275:2;36259:36;;;36296:12;:10;:12::i;:::-;36310:4;36316:7;36325:5;36259:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36255:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36522:1;36505:6;:13;:18;36501:273;;;36548:61;;;;;;;;;;:::i;:::-;;;;;;;;36501:273;36724:6;36718:13;36709:6;36705:2;36701:15;36694:38;36255:534;36392:45;;;36382:55;;;:6;:55;;;;36375:62;;;;;36219:625;36828:4;36821:11;;36047:804;;;;;;;:::o;3734:723::-;3790:13;4020:1;4011:5;:10;4007:53;;;4038:10;;;;;;;;;;;;;;;;;;;;;4007:53;4070:12;4085:5;4070:20;;4101:14;4126:78;4141:1;4133:4;:9;4126:78;;4159:8;;;;;:::i;:::-;;;;4190:2;4182:10;;;;;:::i;:::-;;;4126:78;;;4214:19;4246:6;4236:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4214:39;;4264:154;4280:1;4271:5;:10;4264:154;;4308:1;4298:11;;;;;:::i;:::-;;;4375:2;4367:5;:10;;;;:::i;:::-;4354:2;:24;;;;:::i;:::-;4341:39;;4324:6;4331;4324:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4404:2;4395:11;;;;;:::i;:::-;;;4264:154;;;4442:6;4428:21;;;;;3734:723;;;;:::o;37339:159::-;;;;;:::o;37910:158::-;;;;;:::o;31744:1387::-;31867:20;31890:12;;31867:35;;31935:1;31921:16;;:2;:16;;;;31913:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32120:21;32128:12;32120:7;:21::i;:::-;32119:22;32111:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32205:1;32194:8;:12;32186:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32259:61;32289:1;32293:2;32297:12;32311:8;32259:21;:61::i;:::-;32333:30;32366:12;:16;32379:2;32366:16;;;;;;;;;;;;;;;32333:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32412:135;;;;;;;;32468:8;32438:11;:19;;;:39;;;;:::i;:::-;32412:135;;;;;;32527:8;32492:11;:24;;;:44;;;;:::i;:::-;32412:135;;;;;32393:12;:16;32406:2;32393:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32586:43;;;;;;;;32601:2;32586:43;;;;;;32612:15;32586:43;;;;;32558:11;:25;32570:12;32558:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32642:20;32665:12;32642:35;;32695:9;32690:325;32714:8;32710:1;:12;32690:325;;;32774:12;32770:2;32749:38;;32766:1;32749:38;;;;;;;;;;;;32828:59;32859:1;32863:2;32867:12;32881:5;32828:22;:59::i;:::-;32802:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;32989:14;;;;;:::i;:::-;;;;32724:3;;;;;:::i;:::-;;;;32690:325;;;;33040:12;33025;:27;;;;33063:60;33092:1;33096:2;33100:12;33114:8;33063:20;:60::i;:::-;31856:1275;;;31744:1387;;;:::o;14485:387::-;14545:4;14753:12;14820:7;14808:20;14800:28;;14863:1;14856:4;:8;14849:15;;;14485:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:365::-;10234:3;10255:66;10319:1;10314:3;10255:66;:::i;:::-;10248:73;;10330:93;10419:3;10330:93;:::i;:::-;10448:2;10443:3;10439:12;10432:19;;10092:365;;;:::o;10463:366::-;10605:3;10626:67;10690:2;10685:3;10626:67;:::i;:::-;10619:74;;10702:93;10791:3;10702:93;:::i;:::-;10820:2;10815:3;10811:12;10804:19;;10463:366;;;:::o;10835:::-;10977:3;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11074:93;11163:3;11074:93;:::i;:::-;11192:2;11187:3;11183:12;11176:19;;10835:366;;;:::o;11207:::-;11349:3;11370:67;11434:2;11429:3;11370:67;:::i;:::-;11363:74;;11446:93;11535:3;11446:93;:::i;:::-;11564:2;11559:3;11555:12;11548:19;;11207:366;;;:::o;11579:::-;11721:3;11742:67;11806:2;11801:3;11742:67;:::i;:::-;11735:74;;11818:93;11907:3;11818:93;:::i;:::-;11936:2;11931:3;11927:12;11920:19;;11579:366;;;:::o;11951:::-;12093:3;12114:67;12178:2;12173:3;12114:67;:::i;:::-;12107:74;;12190:93;12279:3;12190:93;:::i;:::-;12308:2;12303:3;12299:12;12292:19;;11951:366;;;:::o;12323:::-;12465:3;12486:67;12550:2;12545:3;12486:67;:::i;:::-;12479:74;;12562:93;12651:3;12562:93;:::i;:::-;12680:2;12675:3;12671:12;12664:19;;12323:366;;;:::o;12695:::-;12837:3;12858:67;12922:2;12917:3;12858:67;:::i;:::-;12851:74;;12934:93;13023:3;12934:93;:::i;:::-;13052:2;13047:3;13043:12;13036:19;;12695:366;;;:::o;13067:::-;13209:3;13230:67;13294:2;13289:3;13230:67;:::i;:::-;13223:74;;13306:93;13395:3;13306:93;:::i;:::-;13424:2;13419:3;13415:12;13408:19;;13067:366;;;:::o;13439:::-;13581:3;13602:67;13666:2;13661:3;13602:67;:::i;:::-;13595:74;;13678:93;13767:3;13678:93;:::i;:::-;13796:2;13791:3;13787:12;13780:19;;13439:366;;;:::o;13811:::-;13953:3;13974:67;14038:2;14033:3;13974:67;:::i;:::-;13967:74;;14050:93;14139:3;14050:93;:::i;:::-;14168:2;14163:3;14159:12;14152:19;;13811:366;;;:::o;14183:::-;14325:3;14346:67;14410:2;14405:3;14346:67;:::i;:::-;14339:74;;14422:93;14511:3;14422:93;:::i;:::-;14540:2;14535:3;14531:12;14524:19;;14183:366;;;:::o;14555:::-;14697:3;14718:67;14782:2;14777:3;14718:67;:::i;:::-;14711:74;;14794:93;14883:3;14794:93;:::i;:::-;14912:2;14907:3;14903:12;14896:19;;14555:366;;;:::o;14927:::-;15069:3;15090:67;15154:2;15149:3;15090:67;:::i;:::-;15083:74;;15166:93;15255:3;15166:93;:::i;:::-;15284:2;15279:3;15275:12;15268:19;;14927:366;;;:::o;15299:::-;15441:3;15462:67;15526:2;15521:3;15462:67;:::i;:::-;15455:74;;15538:93;15627:3;15538:93;:::i;:::-;15656:2;15651:3;15647:12;15640:19;;15299:366;;;:::o;15671:::-;15813:3;15834:67;15898:2;15893:3;15834:67;:::i;:::-;15827:74;;15910:93;15999:3;15910:93;:::i;:::-;16028:2;16023:3;16019:12;16012:19;;15671:366;;;:::o;16043:::-;16185:3;16206:67;16270:2;16265:3;16206:67;:::i;:::-;16199:74;;16282:93;16371:3;16282:93;:::i;:::-;16400:2;16395:3;16391:12;16384:19;;16043:366;;;:::o;16415:::-;16557:3;16578:67;16642:2;16637:3;16578:67;:::i;:::-;16571:74;;16654:93;16743:3;16654:93;:::i;:::-;16772:2;16767:3;16763:12;16756:19;;16415:366;;;:::o;16787:398::-;16946:3;16967:83;17048:1;17043:3;16967:83;:::i;:::-;16960:90;;17059:93;17148:3;17059:93;:::i;:::-;17177:1;17172:3;17168:11;17161:18;;16787:398;;;:::o;17191:366::-;17333:3;17354:67;17418:2;17413:3;17354:67;:::i;:::-;17347:74;;17430:93;17519:3;17430:93;:::i;:::-;17548:2;17543:3;17539:12;17532:19;;17191:366;;;:::o;17563:::-;17705:3;17726:67;17790:2;17785:3;17726:67;:::i;:::-;17719:74;;17802:93;17891:3;17802:93;:::i;:::-;17920:2;17915:3;17911:12;17904:19;;17563:366;;;:::o;17935:::-;18077:3;18098:67;18162:2;18157:3;18098:67;:::i;:::-;18091:74;;18174:93;18263:3;18174:93;:::i;:::-;18292:2;18287:3;18283:12;18276:19;;17935:366;;;:::o;18307:::-;18449:3;18470:67;18534:2;18529:3;18470:67;:::i;:::-;18463:74;;18546:93;18635:3;18546:93;:::i;:::-;18664:2;18659:3;18655:12;18648:19;;18307:366;;;:::o;18679:::-;18821:3;18842:67;18906:2;18901:3;18842:67;:::i;:::-;18835:74;;18918:93;19007:3;18918:93;:::i;:::-;19036:2;19031:3;19027:12;19020:19;;18679:366;;;:::o;19051:::-;19193:3;19214:67;19278:2;19273:3;19214:67;:::i;:::-;19207:74;;19290:93;19379:3;19290:93;:::i;:::-;19408:2;19403:3;19399:12;19392:19;;19051:366;;;:::o;19795:::-;19937:3;19958:67;20022:2;20017:3;19958:67;:::i;:::-;19951:74;;20034:93;20123:3;20034:93;:::i;:::-;20152:2;20147:3;20143:12;20136:19;;19795:366;;;:::o;20167:::-;20309:3;20330:67;20394:2;20389:3;20330:67;:::i;:::-;20323:74;;20406:93;20495:3;20406:93;:::i;:::-;20524:2;20519:3;20515:12;20508:19;;20167:366;;;:::o;20539:118::-;20626:24;20644:5;20626:24;:::i;:::-;20621:3;20614:37;20539:118;;:::o;20663:589::-;20888:3;20910:92;20998:3;20989:6;20910:92;:::i;:::-;20903:99;;21019:95;21110:3;21101:6;21019:95;:::i;:::-;21012:102;;21131:95;21222:3;21213:6;21131:95;:::i;:::-;21124:102;;21243:3;21236:10;;20663:589;;;;;;:::o;21258:379::-;21442:3;21464:147;21607:3;21464:147;:::i;:::-;21457:154;;21628:3;21621:10;;21258:379;;;:::o;21643:222::-;21736:4;21774:2;21763:9;21759:18;21751:26;;21787:71;21855:1;21844:9;21840:17;21831:6;21787:71;:::i;:::-;21643:222;;;;:::o;21871:640::-;22066:4;22104:3;22093:9;22089:19;22081:27;;22118:71;22186:1;22175:9;22171:17;22162:6;22118:71;:::i;:::-;22199:72;22267:2;22256:9;22252:18;22243:6;22199:72;:::i;:::-;22281;22349:2;22338:9;22334:18;22325:6;22281:72;:::i;:::-;22400:9;22394:4;22390:20;22385:2;22374:9;22370:18;22363:48;22428:76;22499:4;22490:6;22428:76;:::i;:::-;22420:84;;21871:640;;;;;;;:::o;22517:210::-;22604:4;22642:2;22631:9;22627:18;22619:26;;22655:65;22717:1;22706:9;22702:17;22693:6;22655:65;:::i;:::-;22517:210;;;;:::o;22733:313::-;22846:4;22884:2;22873:9;22869:18;22861:26;;22933:9;22927:4;22923:20;22919:1;22908:9;22904:17;22897:47;22961:78;23034:4;23025:6;22961:78;:::i;:::-;22953:86;;22733:313;;;;:::o;23052:419::-;23218:4;23256:2;23245:9;23241:18;23233:26;;23305:9;23299:4;23295:20;23291:1;23280:9;23276:17;23269:47;23333:131;23459:4;23333:131;:::i;:::-;23325:139;;23052:419;;;:::o;23477:::-;23643:4;23681:2;23670:9;23666:18;23658:26;;23730:9;23724:4;23720:20;23716:1;23705:9;23701:17;23694:47;23758:131;23884:4;23758:131;:::i;:::-;23750:139;;23477:419;;;:::o;23902:::-;24068:4;24106:2;24095:9;24091:18;24083:26;;24155:9;24149:4;24145:20;24141:1;24130:9;24126:17;24119:47;24183:131;24309:4;24183:131;:::i;:::-;24175:139;;23902:419;;;:::o;24327:::-;24493:4;24531:2;24520:9;24516:18;24508:26;;24580:9;24574:4;24570:20;24566:1;24555:9;24551:17;24544:47;24608:131;24734:4;24608:131;:::i;:::-;24600:139;;24327:419;;;:::o;24752:::-;24918:4;24956:2;24945:9;24941:18;24933:26;;25005:9;24999:4;24995:20;24991:1;24980:9;24976:17;24969:47;25033:131;25159:4;25033:131;:::i;:::-;25025:139;;24752:419;;;:::o;25177:::-;25343:4;25381:2;25370:9;25366:18;25358:26;;25430:9;25424:4;25420:20;25416:1;25405:9;25401:17;25394:47;25458:131;25584:4;25458:131;:::i;:::-;25450:139;;25177:419;;;:::o;25602:::-;25768:4;25806:2;25795:9;25791:18;25783:26;;25855:9;25849:4;25845:20;25841:1;25830:9;25826:17;25819:47;25883:131;26009:4;25883:131;:::i;:::-;25875:139;;25602:419;;;:::o;26027:::-;26193:4;26231:2;26220:9;26216:18;26208:26;;26280:9;26274:4;26270:20;26266:1;26255:9;26251:17;26244:47;26308:131;26434:4;26308:131;:::i;:::-;26300:139;;26027:419;;;:::o;26452:::-;26618:4;26656:2;26645:9;26641:18;26633:26;;26705:9;26699:4;26695:20;26691:1;26680:9;26676:17;26669:47;26733:131;26859:4;26733:131;:::i;:::-;26725:139;;26452:419;;;:::o;26877:::-;27043:4;27081:2;27070:9;27066:18;27058:26;;27130:9;27124:4;27120:20;27116:1;27105:9;27101:17;27094:47;27158:131;27284:4;27158:131;:::i;:::-;27150:139;;26877:419;;;:::o;27302:::-;27468:4;27506:2;27495:9;27491:18;27483:26;;27555:9;27549:4;27545:20;27541:1;27530:9;27526:17;27519:47;27583:131;27709:4;27583:131;:::i;:::-;27575:139;;27302:419;;;:::o;27727:::-;27893:4;27931:2;27920:9;27916:18;27908:26;;27980:9;27974:4;27970:20;27966:1;27955:9;27951:17;27944:47;28008:131;28134:4;28008:131;:::i;:::-;28000:139;;27727:419;;;:::o;28152:::-;28318:4;28356:2;28345:9;28341:18;28333:26;;28405:9;28399:4;28395:20;28391:1;28380:9;28376:17;28369:47;28433:131;28559:4;28433:131;:::i;:::-;28425:139;;28152:419;;;:::o;28577:::-;28743:4;28781:2;28770:9;28766:18;28758:26;;28830:9;28824:4;28820:20;28816:1;28805:9;28801:17;28794:47;28858:131;28984:4;28858:131;:::i;:::-;28850:139;;28577:419;;;:::o;29002:::-;29168:4;29206:2;29195:9;29191:18;29183:26;;29255:9;29249:4;29245:20;29241:1;29230:9;29226:17;29219:47;29283:131;29409:4;29283:131;:::i;:::-;29275:139;;29002:419;;;:::o;29427:::-;29593:4;29631:2;29620:9;29616:18;29608:26;;29680:9;29674:4;29670:20;29666:1;29655:9;29651:17;29644:47;29708:131;29834:4;29708:131;:::i;:::-;29700:139;;29427:419;;;:::o;29852:::-;30018:4;30056:2;30045:9;30041:18;30033:26;;30105:9;30099:4;30095:20;30091:1;30080:9;30076:17;30069:47;30133:131;30259:4;30133:131;:::i;:::-;30125:139;;29852:419;;;:::o;30277:::-;30443:4;30481:2;30470:9;30466:18;30458:26;;30530:9;30524:4;30520:20;30516:1;30505:9;30501:17;30494:47;30558:131;30684:4;30558:131;:::i;:::-;30550:139;;30277:419;;;:::o;30702:::-;30868:4;30906:2;30895:9;30891:18;30883:26;;30955:9;30949:4;30945:20;30941:1;30930:9;30926:17;30919:47;30983:131;31109:4;30983:131;:::i;:::-;30975:139;;30702:419;;;:::o;31127:::-;31293:4;31331:2;31320:9;31316:18;31308:26;;31380:9;31374:4;31370:20;31366:1;31355:9;31351:17;31344:47;31408:131;31534:4;31408:131;:::i;:::-;31400:139;;31127:419;;;:::o;31552:::-;31718:4;31756:2;31745:9;31741:18;31733:26;;31805:9;31799:4;31795:20;31791:1;31780:9;31776:17;31769:47;31833:131;31959:4;31833:131;:::i;:::-;31825:139;;31552:419;;;:::o;31977:::-;32143:4;32181:2;32170:9;32166:18;32158:26;;32230:9;32224:4;32220:20;32216:1;32205:9;32201:17;32194:47;32258:131;32384:4;32258:131;:::i;:::-;32250:139;;31977:419;;;:::o;32402:::-;32568:4;32606:2;32595:9;32591:18;32583:26;;32655:9;32649:4;32645:20;32641:1;32630:9;32626:17;32619:47;32683:131;32809:4;32683:131;:::i;:::-;32675:139;;32402:419;;;:::o;32827:::-;32993:4;33031:2;33020:9;33016:18;33008:26;;33080:9;33074:4;33070:20;33066:1;33055:9;33051:17;33044:47;33108:131;33234:4;33108:131;:::i;:::-;33100:139;;32827:419;;;:::o;33252:::-;33418:4;33456:2;33445:9;33441:18;33433:26;;33505:9;33499:4;33495:20;33491:1;33480:9;33476:17;33469:47;33533:131;33659:4;33533:131;:::i;:::-;33525:139;;33252:419;;;:::o;34102:::-;34268:4;34306:2;34295:9;34291:18;34283:26;;34355:9;34349:4;34345:20;34341:1;34330:9;34326:17;34319:47;34383:131;34509:4;34383:131;:::i;:::-;34375:139;;34102:419;;;:::o;34527:::-;34693:4;34731:2;34720:9;34716:18;34708:26;;34780:9;34774:4;34770:20;34766:1;34755:9;34751:17;34744:47;34808:131;34934:4;34808:131;:::i;:::-;34800:139;;34527:419;;;:::o;34952:222::-;35045:4;35083:2;35072:9;35068:18;35060:26;;35096:71;35164:1;35153:9;35149:17;35140:6;35096:71;:::i;:::-;34952:222;;;;:::o;35180:129::-;35214:6;35241:20;;:::i;:::-;35231:30;;35270:33;35298:4;35290:6;35270:33;:::i;:::-;35180:129;;;:::o;35315:75::-;35348:6;35381:2;35375:9;35365:19;;35315:75;:::o;35396:307::-;35457:4;35547:18;35539:6;35536:30;35533:56;;;35569:18;;:::i;:::-;35533:56;35607:29;35629:6;35607:29;:::i;:::-;35599:37;;35691:4;35685;35681:15;35673:23;;35396:307;;;:::o;35709:308::-;35771:4;35861:18;35853:6;35850:30;35847:56;;;35883:18;;:::i;:::-;35847:56;35921:29;35943:6;35921:29;:::i;:::-;35913:37;;36005:4;35999;35995:15;35987:23;;35709:308;;;:::o;36023:141::-;36072:4;36095:3;36087:11;;36118:3;36115:1;36108:14;36152:4;36149:1;36139:18;36131:26;;36023:141;;;:::o;36170:98::-;36221:6;36255:5;36249:12;36239:22;;36170:98;;;:::o;36274:99::-;36326:6;36360:5;36354:12;36344:22;;36274:99;;;:::o;36379:168::-;36462:11;36496:6;36491:3;36484:19;36536:4;36531:3;36527:14;36512:29;;36379:168;;;;:::o;36553:147::-;36654:11;36691:3;36676:18;;36553:147;;;;:::o;36706:169::-;36790:11;36824:6;36819:3;36812:19;36864:4;36859:3;36855:14;36840:29;;36706:169;;;;:::o;36881:148::-;36983:11;37020:3;37005:18;;36881:148;;;;:::o;37035:273::-;37075:3;37094:20;37112:1;37094:20;:::i;:::-;37089:25;;37128:20;37146:1;37128:20;:::i;:::-;37123:25;;37250:1;37214:34;37210:42;37207:1;37204:49;37201:75;;;37256:18;;:::i;:::-;37201:75;37300:1;37297;37293:9;37286:16;;37035:273;;;;:::o;37314:305::-;37354:3;37373:20;37391:1;37373:20;:::i;:::-;37368:25;;37407:20;37425:1;37407:20;:::i;:::-;37402:25;;37561:1;37493:66;37489:74;37486:1;37483:81;37480:107;;;37567:18;;:::i;:::-;37480:107;37611:1;37608;37604:9;37597:16;;37314:305;;;;:::o;37625:185::-;37665:1;37682:20;37700:1;37682:20;:::i;:::-;37677:25;;37716:20;37734:1;37716:20;:::i;:::-;37711:25;;37755:1;37745:35;;37760:18;;:::i;:::-;37745:35;37802:1;37799;37795:9;37790:14;;37625:185;;;;:::o;37816:348::-;37856:7;37879:20;37897:1;37879:20;:::i;:::-;37874:25;;37913:20;37931:1;37913:20;:::i;:::-;37908:25;;38101:1;38033:66;38029:74;38026:1;38023:81;38018:1;38011:9;38004:17;38000:105;37997:131;;;38108:18;;:::i;:::-;37997:131;38156:1;38153;38149:9;38138:20;;37816:348;;;;:::o;38170:191::-;38210:4;38230:20;38248:1;38230:20;:::i;:::-;38225:25;;38264:20;38282:1;38264:20;:::i;:::-;38259:25;;38303:1;38300;38297:8;38294:34;;;38308:18;;:::i;:::-;38294:34;38353:1;38350;38346:9;38338:17;;38170:191;;;;:::o;38367:96::-;38404:7;38433:24;38451:5;38433:24;:::i;:::-;38422:35;;38367:96;;;:::o;38469:90::-;38503:7;38546:5;38539:13;38532:21;38521:32;;38469:90;;;:::o;38565:149::-;38601:7;38641:66;38634:5;38630:78;38619:89;;38565:149;;;:::o;38720:118::-;38757:7;38797:34;38790:5;38786:46;38775:57;;38720:118;;;:::o;38844:126::-;38881:7;38921:42;38914:5;38910:54;38899:65;;38844:126;;;:::o;38976:77::-;39013:7;39042:5;39031:16;;38976:77;;;:::o;39059:154::-;39143:6;39138:3;39133;39120:30;39205:1;39196:6;39191:3;39187:16;39180:27;39059:154;;;:::o;39219:307::-;39287:1;39297:113;39311:6;39308:1;39305:13;39297:113;;;39396:1;39391:3;39387:11;39381:18;39377:1;39372:3;39368:11;39361:39;39333:2;39330:1;39326:10;39321:15;;39297:113;;;39428:6;39425:1;39422:13;39419:101;;;39508:1;39499:6;39494:3;39490:16;39483:27;39419:101;39268:258;39219:307;;;:::o;39532:171::-;39571:3;39594:24;39612:5;39594:24;:::i;:::-;39585:33;;39640:4;39633:5;39630:15;39627:41;;;39648:18;;:::i;:::-;39627:41;39695:1;39688:5;39684:13;39677:20;;39532:171;;;:::o;39709:320::-;39753:6;39790:1;39784:4;39780:12;39770:22;;39837:1;39831:4;39827:12;39858:18;39848:81;;39914:4;39906:6;39902:17;39892:27;;39848:81;39976:2;39968:6;39965:14;39945:18;39942:38;39939:84;;;39995:18;;:::i;:::-;39939:84;39760:269;39709:320;;;:::o;40035:281::-;40118:27;40140:4;40118:27;:::i;:::-;40110:6;40106:40;40248:6;40236:10;40233:22;40212:18;40200:10;40197:34;40194:62;40191:88;;;40259:18;;:::i;:::-;40191:88;40299:10;40295:2;40288:22;40078:238;40035:281;;:::o;40322:233::-;40361:3;40384:24;40402:5;40384:24;:::i;:::-;40375:33;;40430:66;40423:5;40420:77;40417:103;;;40500:18;;:::i;:::-;40417:103;40547:1;40540:5;40536:13;40529:20;;40322:233;;;:::o;40561:176::-;40593:1;40610:20;40628:1;40610:20;:::i;:::-;40605:25;;40644:20;40662:1;40644:20;:::i;:::-;40639:25;;40683:1;40673:35;;40688:18;;:::i;:::-;40673:35;40729:1;40726;40722:9;40717:14;;40561:176;;;;:::o;40743:180::-;40791:77;40788:1;40781:88;40888:4;40885:1;40878:15;40912:4;40909:1;40902:15;40929:180;40977:77;40974:1;40967:88;41074:4;41071:1;41064:15;41098:4;41095:1;41088:15;41115:180;41163:77;41160:1;41153:88;41260:4;41257:1;41250:15;41284:4;41281:1;41274:15;41301:180;41349:77;41346:1;41339:88;41446:4;41443:1;41436:15;41470:4;41467:1;41460:15;41487:180;41535:77;41532:1;41525:88;41632:4;41629:1;41622:15;41656:4;41653:1;41646:15;41673:117;41782:1;41779;41772:12;41796:117;41905:1;41902;41895:12;41919:117;42028:1;42025;42018:12;42042:117;42151:1;42148;42141:12;42165:102;42206:6;42257:2;42253:7;42248:2;42241:5;42237:14;42233:28;42223:38;;42165:102;;;:::o;42273:221::-;42413:34;42409:1;42401:6;42397:14;42390:58;42482:4;42477:2;42469:6;42465:15;42458:29;42273:221;:::o;42500:156::-;42640:8;42636:1;42628:6;42624:14;42617:32;42500:156;:::o;42662:225::-;42802:34;42798:1;42790:6;42786:14;42779:58;42871:8;42866:2;42858:6;42854:15;42847:33;42662:225;:::o;42893:229::-;43033:34;43029:1;43021:6;43017:14;43010:58;43102:12;43097:2;43089:6;43085:15;43078:37;42893:229;:::o;43128:160::-;43268:12;43264:1;43256:6;43252:14;43245:36;43128:160;:::o;43294:172::-;43434:24;43430:1;43422:6;43418:14;43411:48;43294:172;:::o;43472:222::-;43612:34;43608:1;43600:6;43596:14;43589:58;43681:5;43676:2;43668:6;43664:15;43657:30;43472:222;:::o;43700:224::-;43840:34;43836:1;43828:6;43824:14;43817:58;43909:7;43904:2;43896:6;43892:15;43885:32;43700:224;:::o;43930:172::-;44070:24;44066:1;44058:6;44054:14;44047:48;43930:172;:::o;44108:244::-;44248:34;44244:1;44236:6;44232:14;44225:58;44317:27;44312:2;44304:6;44300:15;44293:52;44108:244;:::o;44358:168::-;44498:20;44494:1;44486:6;44482:14;44475:44;44358:168;:::o;44532:230::-;44672:34;44668:1;44660:6;44656:14;44649:58;44741:13;44736:2;44728:6;44724:15;44717:38;44532:230;:::o;44768:171::-;44908:23;44904:1;44896:6;44892:14;44885:47;44768:171;:::o;44945:225::-;45085:34;45081:1;45073:6;45069:14;45062:58;45154:8;45149:2;45141:6;45137:15;45130:33;44945:225;:::o;45176:182::-;45316:34;45312:1;45304:6;45300:14;45293:58;45176:182;:::o;45364:176::-;45504:28;45500:1;45492:6;45488:14;45481:52;45364:176;:::o;45546:237::-;45686:34;45682:1;45674:6;45670:14;45663:58;45755:20;45750:2;45742:6;45738:15;45731:45;45546:237;:::o;45789:172::-;45929:24;45925:1;45917:6;45913:14;45906:48;45789:172;:::o;45967:221::-;46107:34;46103:1;46095:6;46091:14;46084:58;46176:4;46171:2;46163:6;46159:15;46152:29;45967:221;:::o;46194:114::-;;:::o;46314:222::-;46454:34;46450:1;46442:6;46438:14;46431:58;46523:5;46518:2;46510:6;46506:15;46499:30;46314:222;:::o;46542:238::-;46682:34;46678:1;46670:6;46666:14;46659:58;46751:21;46746:2;46738:6;46734:15;46727:46;46542:238;:::o;46786:179::-;46926:31;46922:1;46914:6;46910:14;46903:55;46786:179;:::o;46971:220::-;47111:34;47107:1;47099:6;47095:14;47088:58;47180:3;47175:2;47167:6;47163:15;47156:28;46971:220;:::o;47197:164::-;47337:16;47333:1;47325:6;47321:14;47314:40;47197:164;:::o;47367:233::-;47507:34;47503:1;47495:6;47491:14;47484:58;47576:16;47571:2;47563:6;47559:15;47552:41;47367:233;:::o;47846:232::-;47986:34;47982:1;47974:6;47970:14;47963:58;48055:15;48050:2;48042:6;48038:15;48031:40;47846:232;:::o;48084:162::-;48224:14;48220:1;48212:6;48208:14;48201:38;48084:162;:::o;48252:122::-;48325:24;48343:5;48325:24;:::i;:::-;48318:5;48315:35;48305:63;;48364:1;48361;48354:12;48305:63;48252:122;:::o;48380:116::-;48450:21;48465:5;48450:21;:::i;:::-;48443:5;48440:32;48430:60;;48486:1;48483;48476:12;48430:60;48380:116;:::o;48502:120::-;48574:23;48591:5;48574:23;:::i;:::-;48567:5;48564:34;48554:62;;48612:1;48609;48602:12;48554:62;48502:120;:::o;48628:122::-;48701:24;48719:5;48701:24;:::i;:::-;48694:5;48691:35;48681:63;;48740:1;48737;48730:12;48681:63;48628:122;:::o

Swarm Source

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