ETH Price: $3,411.60 (-0.77%)
Gas: 5 Gwei

Token

Hwtape (Hwape_NFT)
 

Overview

Max Total Supply

245 Hwape_NFT

Holders

183

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Hwape_NFT
0x312250a403b32032b196bae9081e58e9ba33aadd
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:
BabyGirl

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2021-10-13
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
pragma solidity ^0.8.0;

// Sources flattened with hardhat v2.3.0 https://hardhat.org

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

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}('');
        require(success, 'Address: unable to send value, recipient may have reverted');
    }

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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


    /**
     * @dev format given uint to memory string
     *
     * @param _i uint to convert
     * @return string is uint converted to string
     */
    function _uint2str(uint _i) internal pure returns (string memory) {
      if (_i == 0) {
        return "0";
      }
      uint j = _i;
      uint len;
      while (j != 0) {
        len++;
        j /= 10;
      }
      bytes memory bstr = new bytes(len);
      uint k = len;
      while (_i != 0) {
        k = k-1;
        uint8 temp = (48 + uint8(_i - _i / 10 * 10));
        bytes1 b1 = bytes1(temp);
        bstr[k] = b1;
        _i /= 10;
      }
      return string(bstr);
    }


}

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

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), 'ERC721: owner query for nonexistent token');
        return owner;
    }

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

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

    

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), 'ERC721: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved');

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved');
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), 'ERC721: transfer to non ERC721Receiver implementer');
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), 'ERC721: operator query for nonexistent token');
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely
     s `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, '');
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), 'ERC721: transfer to non ERC721Receiver implementer');
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), 'ERC721: mint to the zero address');
        require(!_exists(tokenId), 'ERC721: token already minted');

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, 'ERC721: transfer of token that is not own');
        require(to != address(0), 'ERC721: transfer to the zero address');

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721: transfer to non ERC721Receiver implementer');
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), 'ERC721URIStorage: URI set of nonexistent token');
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), 'Pausable: paused');
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), 'Pausable: not paused');
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721Burnable: caller is not owner nor approved');
        _burn(tokenId);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, 'Counter: decrement overflow');
        unchecked {
            counter._value = value - 1;
        }
    }
}

pragma solidity ^0.8.0;

contract BabyGirl is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable, ERC721Burnable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    uint256 public maxSupply = 10000;
    uint256 public maxLevel1 = 150;
    uint256 public maxLevel2 = 350;
    uint256 public maxLevel3 = 1000;
    uint256 public maxLevel4 = 3500;
    uint256 public maxLevel5 = 5000;
    uint [5] T = [5, 4, 3, 2,1];
    uint [5] S = [94, 75, 23, 8,4];
    uint256 public price = 48000000000000000; //50000000000000000  0.05
    bool public saleOpen = true;
    bool public presaleOpen = false;
    string public baseURI='https://ipfs.io/ipfs/QmUYJpMKBhwfirDM4wSD4cYKzFxRaB4WYJpPX8pJEGUWke/';
    address princeWallet = 0xf30F5Abf229fB9E002Df04e63aDaDBA0776d4109;
    mapping(uint => uint) public level;
    uint256 public level1;
    uint256 public level2;
    uint256 public level3;
    uint256 public level4;
    uint256 public level5;

    mapping(address => bool) public claimed;

    bytes32 public saleMerkleRoot =0xad05fa613dbc0c67d072571de21d1e33efc5690ef0c0d0a66380fbbe07d0347e;


    receive() external payable {}

    constructor() ERC721('Hwtape', 'Hwape_NFT') {}

    function rand(uint sid) public view returns(uint) {  //随机生成等级
    uint _length = 1234567890123456789012+sid;
    uint random = uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp)));
    uint sum = 0;
    uint factor =0;
    uint randoms = random%_length;
    for(uint i=0; i<S.length; i++) {
           sum+=S[i];
        }
    randoms *= sum;
    for(uint b= 0 ; b<S.length; b++) {
         factor += S[b];
         if(randoms/1000000000000000000000<=factor)
         {
             if (T[b]==5){
                 if(level5<maxLevel5){
                        return 5;
                 }

             } else  if (T[b]==4){
                 if(level4<maxLevel4){
                   //  level2 == level2+1;
                        return 4;
                 }

             } else if (T[b]==3){
                 if(level3<maxLevel3){
                        return 3;
                 }
             } else if (T[b]==2){
                 if(level2<maxLevel2){
                        return 2;
                 }
             } else if (T[b]==1){
                        if(level1<maxLevel1){
                        return 1;
                 }
             }
         }
        }
    if(level5<maxLevel5){
                        return 5;
                 }else if (level4<maxLevel4){
                         return 4;
                 }else if (level3<maxLevel3){
                         return 3;
                 }else if (level2<maxLevel2){
                         return 2;
                 }else if (level1<maxLevel1){
                         return 1;
                 }else{
                     return 5;
                 }
}

   
    function reserveMints(address to) public onlyOwner {
        for (uint256 i = 0; i < 50; i++) internalMint(to);
    }


    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(princeWallet).transfer(balance);

    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function toggleSale() public onlyOwner {
        saleOpen = !saleOpen;
    }

    function togglePresale() public onlyOwner {
        presaleOpen = !presaleOpen;
    }

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

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }
   function setSaleMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        saleMerkleRoot = merkleRoot;
    }
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

  
    //把树叶的proof生成传入做校验

    function internalMint(address to) internal {
        require(totalSupply() < maxSupply, 'supply depleted');
        _tokenIdCounter.increment();
        uint _level = rand(_tokenIdCounter.current());
        level[_tokenIdCounter.current()] = _level;
        if(_level ==1 ) {
            level1 += 1;
        } else if(_level ==2 ) {
            level2 += 1;
        } else if(_level ==3 ) {
            level3 += 1;
        } else if(_level ==4 ) {
            level4 += 1;
        } else if(_level ==5 ) {
            level5 += 1;
        }
          _safeMint(to, _tokenIdCounter.current());
    }

    function safeMint(address to,uint256 amount) public onlyOwner {

      require(amount <= 1000, 'only 3 per transaction allowed');
      for (uint256 i = 0; i < amount; i++) internalMint(to);
    }



    function mints(bytes32[] calldata merkleProof,uint256 amount) public payable {
        require(MerkleProof.verify(merkleProof,saleMerkleRoot,keccak256(abi.encodePacked(msg.sender))), 'Invalid proof');
        require(!claimed[msg.sender], "Address already claimed");
        require(amount <= 1, 'only 1 per transaction allowed');
        claimed[msg.sender] = true;
        for (uint256 i = 0; i < amount; i++) internalMint(msg.sender);
    }

    function mint(uint256 amount) public payable {
        require(msg.value >= price * amount, 'not enough was paid'); // 付钱的
        require(amount <= 1000, 'only 3 per transaction allowed');
        for (uint256 i = 0; i < amount; i++) internalMint(msg.sender);
    }
    function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
        return super.tokenURI(level[tokenId]);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"uint256"}],"name":"level","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"level1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"level2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"level3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"level4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"level5","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLevel1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLevel2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLevel3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLevel4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLevel5","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mints","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"sid","type":"uint256"}],"name":"rand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"reserveMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMint","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":[],"name":"saleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setSaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052612710600d556096600e5561015e600f556103e8601055610dac6011556113886012556040518060a00160405280600560ff168152602001600460ff168152602001600360ff168152602001600260ff168152602001600160ff168152506013906005620000749291906200033a565b506040518060a00160405280605e60ff168152602001604b60ff168152602001601760ff168152602001600860ff168152602001600460ff168152506018906005620000c29291906200033a565b5066aa87bee5380000601d556001601e60006101000a81548160ff0219169083151502179055506000601e60016101000a81548160ff0219169083151502179055506040518060800160405280604481526020016200607360449139601f90805190602001906200013592919062000384565b5073f30f5abf229fb9e002df04e63adadba0776d4109602060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fad05fa613dbc0c67d072571de21d1e33efc5690ef0c0d0a66380fbbe07d0347e60001b602855348015620001bf57600080fd5b506040518060400160405280600681526020017f48777461706500000000000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f48776170655f4e4654000000000000000000000000000000000000000000000081525081600090805190602001906200024492919062000384565b5080600190805190602001906200025d92919062000384565b5050506000600b60006101000a81548160ff02191690831515021790555060006200028d6200033260201b60201c565b905080600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000499565b600033905090565b826005810192821562000371579160200282015b8281111562000370578251829060ff169055916020019190600101906200034e565b5b50905062000380919062000415565b5090565b828054620003929062000434565b90600052602060002090601f016020900481019282620003b6576000855562000402565b82601f10620003d157805160ff191683800117855562000402565b8280016001018555821562000402579182015b8281111562000401578251825591602001919060010190620003e4565b5b50905062000411919062000415565b5090565b5b808211156200043057600081600090555060010162000416565b5090565b600060028204905060018216806200044d57607f821691505b602082108114156200046457620004636200046a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615bca80620004a96000396000f3fe60806040526004361061031e5760003560e01c806380678654116101ab578063bee6348a116100f7578063da5f684311610095578063f17996191161006f578063f179961914610ba2578063f2fde38b14610bbe578063f91eb63014610be7578063fcd9a15e14610c1057610325565b8063da5f684314610b11578063e985e9c514610b3a578063ed3cad1f14610b7757610325565b8063c87b56dd116100d1578063c87b56dd14610a41578063c884ef8314610a7e578063d4a417e614610abb578063d5abeb0114610ae657610325565b8063bee6348a146109c0578063c380d980146109eb578063c3bc86b914610a1657610325565b8063a035b1fe11610164578063a22cb4651161013e578063a22cb46514610918578063b6e7782314610941578063b88d4fde1461096c578063bc3377d91461099557610325565b8063a035b1fe146108a8578063a0712d68146108d3578063a1448194146108ef57610325565b806380678654146107bc5780638456cb59146107e75780638da5cb5b146107fe57806391b7f5ed1461082957806395d89b411461085257806399288dbb1461087d57610325565b806342966c681161026a5780636352211e116102235780636c0360eb116101fd5780636c0360eb1461072657806370a0823114610751578063715018a61461078e5780637d8966e4146107a557610325565b80636352211e14610693578063666fa186146106d057806368a2db98146106fb57610325565b806342966c6814610571578063438b63001461059a57806349bb330f146105d75780634f6ccce71461060257806355f804b31461063f5780635c975abb1461066857610325565b806323b872dd116102d757806334393743116102b157806334393743146105035780633ccfd60b1461051a5780633f4ba83a1461053157806342842e0e1461054857610325565b806323b872dd146104605780632530c905146104895780632f745c59146104c657610325565b806301ffc9a71461032a57806305c58df21461036757806306fdde03146103a4578063081812fc146103cf578063095ea7b31461040c57806318160ddd1461043557610325565b3661032557005b600080fd5b34801561033657600080fd5b50610351600480360381019061034c9190614534565b610c3b565b60405161035e919061528d565b60405180910390f35b34801561037357600080fd5b5061038e600480360381019061038991906145c7565b610c4d565b60405161039b9190615665565b60405180910390f35b3480156103b057600080fd5b506103b9610c65565b6040516103c691906152c3565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906145c7565b610cf7565b6040516104039190615204565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190614477565b610d7c565b005b34801561044157600080fd5b5061044a610e94565b6040516104579190615665565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190614371565b610ea1565b005b34801561049557600080fd5b506104b060048036038101906104ab91906145c7565b610f01565b6040516104bd9190615665565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190614477565b6112df565b6040516104fa9190615665565b60405180910390f35b34801561050f57600080fd5b50610518611384565b005b34801561052657600080fd5b5061052f61142c565b005b34801561053d57600080fd5b50610546611519565b005b34801561055457600080fd5b5061056f600480360381019061056a9190614371565b61159f565b005b34801561057d57600080fd5b50610598600480360381019061059391906145c7565b6115bf565b005b3480156105a657600080fd5b506105c160048036038101906105bc919061430c565b61161b565b6040516105ce919061526b565b60405180910390f35b3480156105e357600080fd5b506105ec611715565b6040516105f99190615665565b60405180910390f35b34801561060e57600080fd5b50610629600480360381019061062491906145c7565b61171b565b6040516106369190615665565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190614586565b6117b2565b005b34801561067457600080fd5b5061067d611848565b60405161068a919061528d565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b591906145c7565b61185f565b6040516106c79190615204565b60405180910390f35b3480156106dc57600080fd5b506106e5611911565b6040516106f29190615665565b60405180910390f35b34801561070757600080fd5b50610710611917565b60405161071d9190615665565b60405180910390f35b34801561073257600080fd5b5061073b61191d565b60405161074891906152c3565b60405180910390f35b34801561075d57600080fd5b506107786004803603810190610773919061430c565b6119ab565b6040516107859190615665565b60405180910390f35b34801561079a57600080fd5b506107a3611a63565b005b3480156107b157600080fd5b506107ba611ba0565b005b3480156107c857600080fd5b506107d1611c48565b6040516107de9190615665565b60405180910390f35b3480156107f357600080fd5b506107fc611c4e565b005b34801561080a57600080fd5b50610813611cd4565b6040516108209190615204565b60405180910390f35b34801561083557600080fd5b50610850600480360381019061084b91906145c7565b611cfe565b005b34801561085e57600080fd5b50610867611d84565b60405161087491906152c3565b60405180910390f35b34801561088957600080fd5b50610892611e16565b60405161089f919061528d565b60405180910390f35b3480156108b457600080fd5b506108bd611e29565b6040516108ca9190615665565b60405180910390f35b6108ed60048036038101906108e891906145c7565b611e2f565b005b3480156108fb57600080fd5b5061091660048036038101906109119190614477565b611eef565b005b34801561092457600080fd5b5061093f600480360381019061093a919061443b565b611fdc565b005b34801561094d57600080fd5b5061095661215d565b6040516109639190615665565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e91906143c0565b612163565b005b3480156109a157600080fd5b506109aa6121c5565b6040516109b79190615665565b60405180910390f35b3480156109cc57600080fd5b506109d56121cb565b6040516109e2919061528d565b60405180910390f35b3480156109f757600080fd5b50610a006121de565b604051610a0d9190615665565b60405180910390f35b348015610a2257600080fd5b50610a2b6121e4565b604051610a389190615665565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a6391906145c7565b6121ea565b604051610a7591906152c3565b60405180910390f35b348015610a8a57600080fd5b50610aa56004803603810190610aa0919061430c565b61220f565b604051610ab2919061528d565b60405180910390f35b348015610ac757600080fd5b50610ad061222f565b604051610add91906152a8565b60405180910390f35b348015610af257600080fd5b50610afb612235565b604051610b089190615665565b60405180910390f35b348015610b1d57600080fd5b50610b386004803603810190610b33919061430c565b61223b565b005b348015610b4657600080fd5b50610b616004803603810190610b5c9190614335565b6122e3565b604051610b6e919061528d565b60405180910390f35b348015610b8357600080fd5b50610b8c612377565b604051610b999190615665565b60405180910390f35b610bbc6004803603810190610bb791906144b3565b61237d565b005b348015610bca57600080fd5b50610be56004803603810190610be0919061430c565b612586565b005b348015610bf357600080fd5b50610c0e6004803603810190610c09919061450b565b612732565b005b348015610c1c57600080fd5b50610c256127b8565b604051610c329190615665565b60405180910390f35b6000610c46826127be565b9050919050565b60216020528060005260406000206000915090505481565b606060008054610c749061596d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca09061596d565b8015610ced5780601f10610cc257610100808354040283529160200191610ced565b820191906000526020600020905b815481529060010190602001808311610cd057829003601f168201915b5050505050905090565b6000610d0282612838565b610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d38906154e5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d878261185f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def906155a5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e176128a4565b73ffffffffffffffffffffffffffffffffffffffff161480610e465750610e4581610e406128a4565b6122e3565b5b610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90615445565b60405180910390fd5b610e8f83836128ac565b505050565b6000600880549050905090565b610eb2610eac6128a4565b82612965565b610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee8906155e5565b60405180910390fd5b610efc838383612a43565b505050565b600080826842ed123b0bd8203a14610f199190615798565b905060004442604051602001610f309291906151d8565b6040516020818303038152906040528051906020012060001c905060008060008484610f5c9190615a16565b905060005b6005811015610fc65760188160058110610fa4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015484610fb19190615798565b93508080610fbe9061599f565b915050610f61565b508281610fd3919061581f565b905060005b600581101561124d576018816005811061101b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154836110289190615798565b925082683635c9adc5dea000008361104091906157ee565b1161123a57600560138260058110611081577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015414156110a95760125460265410156110a457600596505050505050506112da565b611239565b6004601382600581106110e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154141561110d57601154602554101561110857600496505050505050506112da565b611238565b600360138260058110611149577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154141561117157601054602454101561116c57600396505050505050506112da565b611237565b6002601382600581106111ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015414156111d557600f5460235410156111d057600296505050505050506112da565b611236565b600160138260058110611211577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154141561123557600e54602254101561123457600196505050505050506112da565b5b5b5b5b5b5b80806112459061599f565b915050610fd8565b506012546026541015611268576005955050505050506112da565b6011546025541015611282576004955050505050506112da565b601054602454101561129c576003955050505050506112da565b600f5460235410156112b6576002955050505050506112da565b600e5460225410156112d0576001955050505050506112da565b6005955050505050505b919050565b60006112ea836119ab565b821061132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290615325565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61138c6128a4565b73ffffffffffffffffffffffffffffffffffffffff166113aa611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790615505565b60405180910390fd5b601e60019054906101000a900460ff1615601e60016101000a81548160ff021916908315150217905550565b6114346128a4565b73ffffffffffffffffffffffffffffffffffffffff16611452611cd4565b73ffffffffffffffffffffffffffffffffffffffff16146114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90615505565b60405180910390fd5b6000479050602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611515573d6000803e3d6000fd5b5050565b6115216128a4565b73ffffffffffffffffffffffffffffffffffffffff1661153f611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90615505565b60405180910390fd5b61159d612c9f565b565b6115ba83838360405180602001604052806000815250612163565b505050565b6115d06115ca6128a4565b82612965565b61160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690615645565b60405180910390fd5b61161881612d41565b50565b60606000611628836119ab565b905060008167ffffffffffffffff81111561166c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561169a5781602001602082028036833780820191505090505b50905060005b8281101561170a576116b285826112df565b8282815181106116eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806117029061599f565b9150506116a0565b508092505050919050565b60225481565b6000611725610e94565b8210611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d90615605565b60405180910390fd5b600882815481106117a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6117ba6128a4565b73ffffffffffffffffffffffffffffffffffffffff166117d8611cd4565b73ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590615505565b60405180910390fd5b80601f9080519060200190611844929190614091565b5050565b6000600b60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90615485565b60405180910390fd5b80915050919050565b60105481565b60125481565b601f805461192a9061596d565b80601f01602080910402602001604051908101604052809291908181526020018280546119569061596d565b80156119a35780601f10611978576101008083540402835291602001916119a3565b820191906000526020600020905b81548152906001019060200180831161198657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1390615465565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a6b6128a4565b73ffffffffffffffffffffffffffffffffffffffff16611a89611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690615505565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611ba86128a4565b73ffffffffffffffffffffffffffffffffffffffff16611bc6611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390615505565b60405180910390fd5b601e60009054906101000a900460ff1615601e60006101000a81548160ff021916908315150217905550565b60255481565b611c566128a4565b73ffffffffffffffffffffffffffffffffffffffff16611c74611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190615505565b60405180910390fd5b611cd2612d4d565b565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d066128a4565b73ffffffffffffffffffffffffffffffffffffffff16611d24611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7190615505565b60405180910390fd5b80601d8190555050565b606060018054611d939061596d565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbf9061596d565b8015611e0c5780601f10611de157610100808354040283529160200191611e0c565b820191906000526020600020905b815481529060010190602001808311611def57829003601f168201915b5050505050905090565b601e60009054906101000a900460ff1681565b601d5481565b80601d54611e3d919061581f565b341015611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e76906155c5565b60405180910390fd5b6103e8811115611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb906153a5565b60405180910390fd5b60005b81811015611eeb57611ed833612df0565b8080611ee39061599f565b915050611ec7565b5050565b611ef76128a4565b73ffffffffffffffffffffffffffffffffffffffff16611f15611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290615505565b60405180910390fd5b6103e8811115611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa7906153a5565b60405180910390fd5b60005b81811015611fd757611fc483612df0565b8080611fcf9061599f565b915050611fb3565b505050565b611fe46128a4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612049906153e5565b60405180910390fd5b806005600061205f6128a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661210c6128a4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612151919061528d565b60405180910390a35050565b60115481565b61217461216e6128a4565b83612965565b6121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa906155e5565b60405180910390fd5b6121bf84848484612f5b565b50505050565b60235481565b601e60019054906101000a900460ff1681565b60245481565b600e5481565b60606122086021600084815260200190815260200160002054612fb7565b9050919050565b60276020528060005260406000206000915054906101000a900460ff1681565b60285481565b600d5481565b6122436128a4565b73ffffffffffffffffffffffffffffffffffffffff16612261611cd4565b73ffffffffffffffffffffffffffffffffffffffff16146122b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ae90615505565b60405180910390fd5b60005b60328110156122df576122cc82612df0565b80806122d79061599f565b9150506122ba565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f5481565b6123f1838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050602854336040516020016123d69190615153565b60405160208183030381529060405280519060200120613109565b612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790615625565b60405180910390fd5b602760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156124bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b490615525565b60405180910390fd5b6001811115612501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f890615585565b60405180910390fd5b6001602760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b818110156125805761256d33612df0565b80806125789061599f565b91505061255c565b50505050565b61258e6128a4565b73ffffffffffffffffffffffffffffffffffffffff166125ac611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614612602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f990615505565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266990615365565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61273a6128a4565b73ffffffffffffffffffffffffffffffffffffffff16612758611cd4565b73ffffffffffffffffffffffffffffffffffffffff16146127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a590615505565b60405180910390fd5b8060288190555050565b60265481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612831575061283082613120565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661291f8361185f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061297082612838565b6129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a690615405565b60405180910390fd5b60006129ba8361185f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a2957508373ffffffffffffffffffffffffffffffffffffffff16612a1184610cf7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a3a5750612a3981856122e3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a638261185f565b73ffffffffffffffffffffffffffffffffffffffff1614612ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab090615545565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b20906153c5565b60405180910390fd5b612b34838383613202565b612b3f6000826128ac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b8f9190615879565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612be69190615798565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612ca7611848565b612ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdd906152e5565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612d2a6128a4565b604051612d379190615204565b60405180910390a1565b612d4a8161325a565b50565b612d55611848565b15612d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8c90615425565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612dd96128a4565b604051612de69190615204565b60405180910390a1565b600d54612dfb610e94565b10612e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3290615305565b60405180910390fd5b612e45600c6132ad565b6000612e59612e54600c6132c3565b610f01565b90508060216000612e6a600c6132c3565b8152602001908152602001600020819055506001811415612ea457600160226000828254612e989190615798565b92505081905550612f44565b6002811415612ecc57600160236000828254612ec09190615798565b92505081905550612f43565b6003811415612ef457600160246000828254612ee89190615798565b92505081905550612f42565b6004811415612f1c57600160256000828254612f109190615798565b92505081905550612f41565b6005811415612f4057600160266000828254612f389190615798565b925050819055505b5b5b5b5b612f5782612f52600c6132c3565b6132d1565b5050565b612f66848484612a43565b612f72848484846132ef565b612fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa890615345565b60405180910390fd5b50505050565b6060612fc282612838565b613001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff8906154c5565b60405180910390fd5b6000600a600084815260200190815260200160002080546130219061596d565b80601f016020809104026020016040519081016040528092919081815260200182805461304d9061596d565b801561309a5780601f1061306f5761010080835404028352916020019161309a565b820191906000526020600020905b81548152906001019060200180831161307d57829003601f168201915b5050505050905060006130ab613486565b90506000815114156130c1578192505050613104565b6000825111156130f65780826040516020016130de929190615192565b60405160208183030381529060405292505050613104565b6130ff84613518565b925050505b919050565b60008261311685846135de565b1490509392505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806131eb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806131fb57506131fa8261365a565b5b9050919050565b61320a611848565b1561324a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324190615425565b60405180910390fd5b6132558383836136c4565b505050565b613263816137d8565b6000600a600083815260200190815260200160002080546132839061596d565b9050146132aa57600a600082815260200190815260200160002060006132a99190614117565b5b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b6132eb8282604051806020016040528060008152506138e9565b5050565b60006133108473ffffffffffffffffffffffffffffffffffffffff16613944565b15613479578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133396128a4565b8786866040518563ffffffff1660e01b815260040161335b949392919061521f565b602060405180830381600087803b15801561337557600080fd5b505af19250505080156133a657506040513d601f19601f820116820180604052508101906133a3919061455d565b60015b613429573d80600081146133d6576040519150601f19603f3d011682016040523d82523d6000602084013e6133db565b606091505b50600081511415613421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341890615345565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061347e565b600190505b949350505050565b6060601f80546134959061596d565b80601f01602080910402602001604051908101604052809291908181526020018280546134c19061596d565b801561350e5780601f106134e35761010080835404028352916020019161350e565b820191906000526020600020905b8154815290600101906020018083116134f157829003601f168201915b5050505050905090565b606061352382612838565b613562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355990615565565b60405180910390fd5b600061356c613486565b9050600081511161358c57604051806020016040528060008152506135d6565b8061359684613957565b6040516020016135a691906151b6565b6040516020818303038152906040526040516020016135c692919061516e565b6040516020818303038152906040525b915050919050565b60008082905060005b845181101561364f5761363a8286838151811061362d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151613b04565b915080806136479061599f565b9150506135e7565b508091505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6136cf838383613b2f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137125761370d81613b34565b613751565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146137505761374f8382613b7d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137945761378f81613cea565b6137d3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146137d2576137d18282613e2d565b5b5b505050565b60006137e38261185f565b90506137f181600084613202565b6137fc6000836128ac565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461384c9190615879565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6138f38383613eac565b61390060008484846132ef565b61393f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161393690615345565b60405180910390fd5b505050565b600080823b905060008111915050919050565b6060600082141561399f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613aff565b600082905060005b600082146139d15780806139ba9061599f565b915050600a826139ca91906157ee565b91506139a7565b60008167ffffffffffffffff811115613a13577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613a455781602001600182028036833780820191505090505b5090505b60008514613af857600182613a5e9190615879565b9150600a85613a6d9190615a16565b6030613a799190615798565b60f81b818381518110613ab5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613af191906157ee565b9450613a49565b8093505050505b919050565b6000818310613b1c57613b17828461407a565b613b27565b613b26838361407a565b5b905092915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613b8a846119ab565b613b949190615879565b9050600060076000848152602001908152602001600020549050818114613c79576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613cfe9190615879565b9050600060096000848152602001908152602001600020549050600060088381548110613d54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613d9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613e11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613e38836119ab565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f13906154a5565b60405180910390fd5b613f2581612838565b15613f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f5c90615385565b60405180910390fd5b613f7160008383613202565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613fc19190615798565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600082600052816020526040600020905092915050565b82805461409d9061596d565b90600052602060002090601f0160209004810192826140bf5760008555614106565b82601f106140d857805160ff1916838001178555614106565b82800160010185558215614106579182015b828111156141055782518255916020019190600101906140ea565b5b5090506141139190614157565b5090565b5080546141239061596d565b6000825580601f106141355750614154565b601f0160209004906000526020600020908101906141539190614157565b5b50565b5b80821115614170576000816000905550600101614158565b5090565b6000614187614182846156b1565b615680565b90508281526020810184848401111561419f57600080fd5b6141aa84828561592b565b509392505050565b60006141c56141c0846156e1565b615680565b9050828152602081018484840111156141dd57600080fd5b6141e884828561592b565b509392505050565b6000813590506141ff81615b21565b92915050565b60008083601f84011261421757600080fd5b8235905067ffffffffffffffff81111561423057600080fd5b60208301915083602082028301111561424857600080fd5b9250929050565b60008135905061425e81615b38565b92915050565b60008135905061427381615b4f565b92915050565b60008135905061428881615b66565b92915050565b60008151905061429d81615b66565b92915050565b600082601f8301126142b457600080fd5b81356142c4848260208601614174565b91505092915050565b600082601f8301126142de57600080fd5b81356142ee8482602086016141b2565b91505092915050565b60008135905061430681615b7d565b92915050565b60006020828403121561431e57600080fd5b600061432c848285016141f0565b91505092915050565b6000806040838503121561434857600080fd5b6000614356858286016141f0565b9250506020614367858286016141f0565b9150509250929050565b60008060006060848603121561438657600080fd5b6000614394868287016141f0565b93505060206143a5868287016141f0565b92505060406143b6868287016142f7565b9150509250925092565b600080600080608085870312156143d657600080fd5b60006143e4878288016141f0565b94505060206143f5878288016141f0565b9350506040614406878288016142f7565b925050606085013567ffffffffffffffff81111561442357600080fd5b61442f878288016142a3565b91505092959194509250565b6000806040838503121561444e57600080fd5b600061445c858286016141f0565b925050602061446d8582860161424f565b9150509250929050565b6000806040838503121561448a57600080fd5b6000614498858286016141f0565b92505060206144a9858286016142f7565b9150509250929050565b6000806000604084860312156144c857600080fd5b600084013567ffffffffffffffff8111156144e257600080fd5b6144ee86828701614205565b93509350506020614501868287016142f7565b9150509250925092565b60006020828403121561451d57600080fd5b600061452b84828501614264565b91505092915050565b60006020828403121561454657600080fd5b600061455484828501614279565b91505092915050565b60006020828403121561456f57600080fd5b600061457d8482850161428e565b91505092915050565b60006020828403121561459857600080fd5b600082013567ffffffffffffffff8111156145b257600080fd5b6145be848285016142cd565b91505092915050565b6000602082840312156145d957600080fd5b60006145e7848285016142f7565b91505092915050565b60006145fc838361511e565b60208301905092915050565b614611816158ad565b82525050565b614628614623826158ad565b6159e8565b82525050565b600061463982615721565b614643818561574f565b935061464e83615711565b8060005b8381101561467f57815161466688826145f0565b975061467183615742565b925050600181019050614652565b5085935050505092915050565b614695816158bf565b82525050565b6146a4816158cb565b82525050565b60006146b58261572c565b6146bf8185615760565b93506146cf81856020860161593a565b6146d881615b03565b840191505092915050565b60006146ee8261572c565b6146f88185615771565b935061470881856020860161593a565b80840191505092915050565b600061471f82615737565b614729818561577c565b935061473981856020860161593a565b61474281615b03565b840191505092915050565b600061475882615737565b614762818561578d565b935061477281856020860161593a565b80840191505092915050565b600061478b60148361577c565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006147cb600f8361577c565b91507f737570706c79206465706c6574656400000000000000000000000000000000006000830152602082019050919050565b600061480b602b8361577c565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061487160328361577c565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006148d760268361577c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061493d601c8361577c565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061497d601e8361577c565b91507f6f6e6c79203320706572207472616e73616374696f6e20616c6c6f77656400006000830152602082019050919050565b60006149bd60248361577c565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a2360198361577c565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614a63602c8361577c565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614ac960108361577c565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000614b0960388361577c565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614b6f602a8361577c565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614bd560298361577c565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c3b60208361577c565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614c7b60318361577c565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000614ce1602c8361577c565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614d4760058361578d565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000614d8760208361577c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614dc760178361577c565b91507f4164647265737320616c726561647920636c61696d65640000000000000000006000830152602082019050919050565b6000614e0760298361577c565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e6d602f8361577c565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614ed3601e8361577c565b91507f6f6e6c79203120706572207472616e73616374696f6e20616c6c6f77656400006000830152602082019050919050565b6000614f1360218361577c565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f7960138361577c565b91507f6e6f7420656e6f756768207761732070616964000000000000000000000000006000830152602082019050919050565b6000614fb960318361577c565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061501f602c8361577c565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000615085600d8361577c565b91507f496e76616c69642070726f6f66000000000000000000000000000000000000006000830152602082019050919050565b60006150c560308361577c565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b61512781615921565b82525050565b61513681615921565b82525050565b61514d61514882615921565b615a0c565b82525050565b600061515f8284614617565b60148201915081905092915050565b600061517a828561474d565b915061518682846146e3565b91508190509392505050565b600061519e828561474d565b91506151aa828461474d565b91508190509392505050565b60006151c2828461474d565b91506151cd82614d3a565b915081905092915050565b60006151e4828561513c565b6020820191506151f4828461513c565b6020820191508190509392505050565b60006020820190506152196000830184614608565b92915050565b60006080820190506152346000830187614608565b6152416020830186614608565b61524e604083018561512d565b818103606083015261526081846146aa565b905095945050505050565b60006020820190508181036000830152615285818461462e565b905092915050565b60006020820190506152a2600083018461468c565b92915050565b60006020820190506152bd600083018461469b565b92915050565b600060208201905081810360008301526152dd8184614714565b905092915050565b600060208201905081810360008301526152fe8161477e565b9050919050565b6000602082019050818103600083015261531e816147be565b9050919050565b6000602082019050818103600083015261533e816147fe565b9050919050565b6000602082019050818103600083015261535e81614864565b9050919050565b6000602082019050818103600083015261537e816148ca565b9050919050565b6000602082019050818103600083015261539e81614930565b9050919050565b600060208201905081810360008301526153be81614970565b9050919050565b600060208201905081810360008301526153de816149b0565b9050919050565b600060208201905081810360008301526153fe81614a16565b9050919050565b6000602082019050818103600083015261541e81614a56565b9050919050565b6000602082019050818103600083015261543e81614abc565b9050919050565b6000602082019050818103600083015261545e81614afc565b9050919050565b6000602082019050818103600083015261547e81614b62565b9050919050565b6000602082019050818103600083015261549e81614bc8565b9050919050565b600060208201905081810360008301526154be81614c2e565b9050919050565b600060208201905081810360008301526154de81614c6e565b9050919050565b600060208201905081810360008301526154fe81614cd4565b9050919050565b6000602082019050818103600083015261551e81614d7a565b9050919050565b6000602082019050818103600083015261553e81614dba565b9050919050565b6000602082019050818103600083015261555e81614dfa565b9050919050565b6000602082019050818103600083015261557e81614e60565b9050919050565b6000602082019050818103600083015261559e81614ec6565b9050919050565b600060208201905081810360008301526155be81614f06565b9050919050565b600060208201905081810360008301526155de81614f6c565b9050919050565b600060208201905081810360008301526155fe81614fac565b9050919050565b6000602082019050818103600083015261561e81615012565b9050919050565b6000602082019050818103600083015261563e81615078565b9050919050565b6000602082019050818103600083015261565e816150b8565b9050919050565b600060208201905061567a600083018461512d565b92915050565b6000604051905081810181811067ffffffffffffffff821117156156a7576156a6615ad4565b5b8060405250919050565b600067ffffffffffffffff8211156156cc576156cb615ad4565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156156fc576156fb615ad4565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006157a382615921565b91506157ae83615921565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156157e3576157e2615a47565b5b828201905092915050565b60006157f982615921565b915061580483615921565b92508261581457615813615a76565b5b828204905092915050565b600061582a82615921565b915061583583615921565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561586e5761586d615a47565b5b828202905092915050565b600061588482615921565b915061588f83615921565b9250828210156158a2576158a1615a47565b5b828203905092915050565b60006158b882615901565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561595857808201518184015260208101905061593d565b83811115615967576000848401525b50505050565b6000600282049050600182168061598557607f821691505b6020821081141561599957615998615aa5565b5b50919050565b60006159aa82615921565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156159dd576159dc615a47565b5b600182019050919050565b60006159f3826159fa565b9050919050565b6000615a0582615b14565b9050919050565b6000819050919050565b6000615a2182615921565b9150615a2c83615921565b925082615a3c57615a3b615a76565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b615b2a816158ad565b8114615b3557600080fd5b50565b615b41816158bf565b8114615b4c57600080fd5b50565b615b58816158cb565b8114615b6357600080fd5b50565b615b6f816158d5565b8114615b7a57600080fd5b50565b615b8681615921565b8114615b9157600080fd5b5056fea26469706673582212207cebfebf9e52f2a05b6f208777a17fb5e458c82ae07c2c77e30e098d0bc56bb664736f6c6343000800003368747470733a2f2f697066732e696f2f697066732f516d55594a704d4b426877666972444d347753443463594b7a46785261423457594a70505838704a454755576b652f

Deployed Bytecode

0x60806040526004361061031e5760003560e01c806380678654116101ab578063bee6348a116100f7578063da5f684311610095578063f17996191161006f578063f179961914610ba2578063f2fde38b14610bbe578063f91eb63014610be7578063fcd9a15e14610c1057610325565b8063da5f684314610b11578063e985e9c514610b3a578063ed3cad1f14610b7757610325565b8063c87b56dd116100d1578063c87b56dd14610a41578063c884ef8314610a7e578063d4a417e614610abb578063d5abeb0114610ae657610325565b8063bee6348a146109c0578063c380d980146109eb578063c3bc86b914610a1657610325565b8063a035b1fe11610164578063a22cb4651161013e578063a22cb46514610918578063b6e7782314610941578063b88d4fde1461096c578063bc3377d91461099557610325565b8063a035b1fe146108a8578063a0712d68146108d3578063a1448194146108ef57610325565b806380678654146107bc5780638456cb59146107e75780638da5cb5b146107fe57806391b7f5ed1461082957806395d89b411461085257806399288dbb1461087d57610325565b806342966c681161026a5780636352211e116102235780636c0360eb116101fd5780636c0360eb1461072657806370a0823114610751578063715018a61461078e5780637d8966e4146107a557610325565b80636352211e14610693578063666fa186146106d057806368a2db98146106fb57610325565b806342966c6814610571578063438b63001461059a57806349bb330f146105d75780634f6ccce71461060257806355f804b31461063f5780635c975abb1461066857610325565b806323b872dd116102d757806334393743116102b157806334393743146105035780633ccfd60b1461051a5780633f4ba83a1461053157806342842e0e1461054857610325565b806323b872dd146104605780632530c905146104895780632f745c59146104c657610325565b806301ffc9a71461032a57806305c58df21461036757806306fdde03146103a4578063081812fc146103cf578063095ea7b31461040c57806318160ddd1461043557610325565b3661032557005b600080fd5b34801561033657600080fd5b50610351600480360381019061034c9190614534565b610c3b565b60405161035e919061528d565b60405180910390f35b34801561037357600080fd5b5061038e600480360381019061038991906145c7565b610c4d565b60405161039b9190615665565b60405180910390f35b3480156103b057600080fd5b506103b9610c65565b6040516103c691906152c3565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906145c7565b610cf7565b6040516104039190615204565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190614477565b610d7c565b005b34801561044157600080fd5b5061044a610e94565b6040516104579190615665565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190614371565b610ea1565b005b34801561049557600080fd5b506104b060048036038101906104ab91906145c7565b610f01565b6040516104bd9190615665565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190614477565b6112df565b6040516104fa9190615665565b60405180910390f35b34801561050f57600080fd5b50610518611384565b005b34801561052657600080fd5b5061052f61142c565b005b34801561053d57600080fd5b50610546611519565b005b34801561055457600080fd5b5061056f600480360381019061056a9190614371565b61159f565b005b34801561057d57600080fd5b50610598600480360381019061059391906145c7565b6115bf565b005b3480156105a657600080fd5b506105c160048036038101906105bc919061430c565b61161b565b6040516105ce919061526b565b60405180910390f35b3480156105e357600080fd5b506105ec611715565b6040516105f99190615665565b60405180910390f35b34801561060e57600080fd5b50610629600480360381019061062491906145c7565b61171b565b6040516106369190615665565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190614586565b6117b2565b005b34801561067457600080fd5b5061067d611848565b60405161068a919061528d565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b591906145c7565b61185f565b6040516106c79190615204565b60405180910390f35b3480156106dc57600080fd5b506106e5611911565b6040516106f29190615665565b60405180910390f35b34801561070757600080fd5b50610710611917565b60405161071d9190615665565b60405180910390f35b34801561073257600080fd5b5061073b61191d565b60405161074891906152c3565b60405180910390f35b34801561075d57600080fd5b506107786004803603810190610773919061430c565b6119ab565b6040516107859190615665565b60405180910390f35b34801561079a57600080fd5b506107a3611a63565b005b3480156107b157600080fd5b506107ba611ba0565b005b3480156107c857600080fd5b506107d1611c48565b6040516107de9190615665565b60405180910390f35b3480156107f357600080fd5b506107fc611c4e565b005b34801561080a57600080fd5b50610813611cd4565b6040516108209190615204565b60405180910390f35b34801561083557600080fd5b50610850600480360381019061084b91906145c7565b611cfe565b005b34801561085e57600080fd5b50610867611d84565b60405161087491906152c3565b60405180910390f35b34801561088957600080fd5b50610892611e16565b60405161089f919061528d565b60405180910390f35b3480156108b457600080fd5b506108bd611e29565b6040516108ca9190615665565b60405180910390f35b6108ed60048036038101906108e891906145c7565b611e2f565b005b3480156108fb57600080fd5b5061091660048036038101906109119190614477565b611eef565b005b34801561092457600080fd5b5061093f600480360381019061093a919061443b565b611fdc565b005b34801561094d57600080fd5b5061095661215d565b6040516109639190615665565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e91906143c0565b612163565b005b3480156109a157600080fd5b506109aa6121c5565b6040516109b79190615665565b60405180910390f35b3480156109cc57600080fd5b506109d56121cb565b6040516109e2919061528d565b60405180910390f35b3480156109f757600080fd5b50610a006121de565b604051610a0d9190615665565b60405180910390f35b348015610a2257600080fd5b50610a2b6121e4565b604051610a389190615665565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a6391906145c7565b6121ea565b604051610a7591906152c3565b60405180910390f35b348015610a8a57600080fd5b50610aa56004803603810190610aa0919061430c565b61220f565b604051610ab2919061528d565b60405180910390f35b348015610ac757600080fd5b50610ad061222f565b604051610add91906152a8565b60405180910390f35b348015610af257600080fd5b50610afb612235565b604051610b089190615665565b60405180910390f35b348015610b1d57600080fd5b50610b386004803603810190610b33919061430c565b61223b565b005b348015610b4657600080fd5b50610b616004803603810190610b5c9190614335565b6122e3565b604051610b6e919061528d565b60405180910390f35b348015610b8357600080fd5b50610b8c612377565b604051610b999190615665565b60405180910390f35b610bbc6004803603810190610bb791906144b3565b61237d565b005b348015610bca57600080fd5b50610be56004803603810190610be0919061430c565b612586565b005b348015610bf357600080fd5b50610c0e6004803603810190610c09919061450b565b612732565b005b348015610c1c57600080fd5b50610c256127b8565b604051610c329190615665565b60405180910390f35b6000610c46826127be565b9050919050565b60216020528060005260406000206000915090505481565b606060008054610c749061596d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca09061596d565b8015610ced5780601f10610cc257610100808354040283529160200191610ced565b820191906000526020600020905b815481529060010190602001808311610cd057829003601f168201915b5050505050905090565b6000610d0282612838565b610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d38906154e5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d878261185f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def906155a5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e176128a4565b73ffffffffffffffffffffffffffffffffffffffff161480610e465750610e4581610e406128a4565b6122e3565b5b610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90615445565b60405180910390fd5b610e8f83836128ac565b505050565b6000600880549050905090565b610eb2610eac6128a4565b82612965565b610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee8906155e5565b60405180910390fd5b610efc838383612a43565b505050565b600080826842ed123b0bd8203a14610f199190615798565b905060004442604051602001610f309291906151d8565b6040516020818303038152906040528051906020012060001c905060008060008484610f5c9190615a16565b905060005b6005811015610fc65760188160058110610fa4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015484610fb19190615798565b93508080610fbe9061599f565b915050610f61565b508281610fd3919061581f565b905060005b600581101561124d576018816005811061101b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154836110289190615798565b925082683635c9adc5dea000008361104091906157ee565b1161123a57600560138260058110611081577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015414156110a95760125460265410156110a457600596505050505050506112da565b611239565b6004601382600581106110e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154141561110d57601154602554101561110857600496505050505050506112da565b611238565b600360138260058110611149577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154141561117157601054602454101561116c57600396505050505050506112da565b611237565b6002601382600581106111ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015414156111d557600f5460235410156111d057600296505050505050506112da565b611236565b600160138260058110611211577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154141561123557600e54602254101561123457600196505050505050506112da565b5b5b5b5b5b5b80806112459061599f565b915050610fd8565b506012546026541015611268576005955050505050506112da565b6011546025541015611282576004955050505050506112da565b601054602454101561129c576003955050505050506112da565b600f5460235410156112b6576002955050505050506112da565b600e5460225410156112d0576001955050505050506112da565b6005955050505050505b919050565b60006112ea836119ab565b821061132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290615325565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61138c6128a4565b73ffffffffffffffffffffffffffffffffffffffff166113aa611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790615505565b60405180910390fd5b601e60019054906101000a900460ff1615601e60016101000a81548160ff021916908315150217905550565b6114346128a4565b73ffffffffffffffffffffffffffffffffffffffff16611452611cd4565b73ffffffffffffffffffffffffffffffffffffffff16146114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90615505565b60405180910390fd5b6000479050602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611515573d6000803e3d6000fd5b5050565b6115216128a4565b73ffffffffffffffffffffffffffffffffffffffff1661153f611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90615505565b60405180910390fd5b61159d612c9f565b565b6115ba83838360405180602001604052806000815250612163565b505050565b6115d06115ca6128a4565b82612965565b61160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690615645565b60405180910390fd5b61161881612d41565b50565b60606000611628836119ab565b905060008167ffffffffffffffff81111561166c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561169a5781602001602082028036833780820191505090505b50905060005b8281101561170a576116b285826112df565b8282815181106116eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806117029061599f565b9150506116a0565b508092505050919050565b60225481565b6000611725610e94565b8210611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d90615605565b60405180910390fd5b600882815481106117a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6117ba6128a4565b73ffffffffffffffffffffffffffffffffffffffff166117d8611cd4565b73ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590615505565b60405180910390fd5b80601f9080519060200190611844929190614091565b5050565b6000600b60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90615485565b60405180910390fd5b80915050919050565b60105481565b60125481565b601f805461192a9061596d565b80601f01602080910402602001604051908101604052809291908181526020018280546119569061596d565b80156119a35780601f10611978576101008083540402835291602001916119a3565b820191906000526020600020905b81548152906001019060200180831161198657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1390615465565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a6b6128a4565b73ffffffffffffffffffffffffffffffffffffffff16611a89611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690615505565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611ba86128a4565b73ffffffffffffffffffffffffffffffffffffffff16611bc6611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390615505565b60405180910390fd5b601e60009054906101000a900460ff1615601e60006101000a81548160ff021916908315150217905550565b60255481565b611c566128a4565b73ffffffffffffffffffffffffffffffffffffffff16611c74611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190615505565b60405180910390fd5b611cd2612d4d565b565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d066128a4565b73ffffffffffffffffffffffffffffffffffffffff16611d24611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7190615505565b60405180910390fd5b80601d8190555050565b606060018054611d939061596d565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbf9061596d565b8015611e0c5780601f10611de157610100808354040283529160200191611e0c565b820191906000526020600020905b815481529060010190602001808311611def57829003601f168201915b5050505050905090565b601e60009054906101000a900460ff1681565b601d5481565b80601d54611e3d919061581f565b341015611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e76906155c5565b60405180910390fd5b6103e8811115611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb906153a5565b60405180910390fd5b60005b81811015611eeb57611ed833612df0565b8080611ee39061599f565b915050611ec7565b5050565b611ef76128a4565b73ffffffffffffffffffffffffffffffffffffffff16611f15611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290615505565b60405180910390fd5b6103e8811115611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa7906153a5565b60405180910390fd5b60005b81811015611fd757611fc483612df0565b8080611fcf9061599f565b915050611fb3565b505050565b611fe46128a4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612049906153e5565b60405180910390fd5b806005600061205f6128a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661210c6128a4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612151919061528d565b60405180910390a35050565b60115481565b61217461216e6128a4565b83612965565b6121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa906155e5565b60405180910390fd5b6121bf84848484612f5b565b50505050565b60235481565b601e60019054906101000a900460ff1681565b60245481565b600e5481565b60606122086021600084815260200190815260200160002054612fb7565b9050919050565b60276020528060005260406000206000915054906101000a900460ff1681565b60285481565b600d5481565b6122436128a4565b73ffffffffffffffffffffffffffffffffffffffff16612261611cd4565b73ffffffffffffffffffffffffffffffffffffffff16146122b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ae90615505565b60405180910390fd5b60005b60328110156122df576122cc82612df0565b80806122d79061599f565b9150506122ba565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f5481565b6123f1838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050602854336040516020016123d69190615153565b60405160208183030381529060405280519060200120613109565b612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790615625565b60405180910390fd5b602760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156124bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b490615525565b60405180910390fd5b6001811115612501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f890615585565b60405180910390fd5b6001602760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b818110156125805761256d33612df0565b80806125789061599f565b91505061255c565b50505050565b61258e6128a4565b73ffffffffffffffffffffffffffffffffffffffff166125ac611cd4565b73ffffffffffffffffffffffffffffffffffffffff1614612602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f990615505565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266990615365565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61273a6128a4565b73ffffffffffffffffffffffffffffffffffffffff16612758611cd4565b73ffffffffffffffffffffffffffffffffffffffff16146127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a590615505565b60405180910390fd5b8060288190555050565b60265481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612831575061283082613120565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661291f8361185f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061297082612838565b6129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a690615405565b60405180910390fd5b60006129ba8361185f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a2957508373ffffffffffffffffffffffffffffffffffffffff16612a1184610cf7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a3a5750612a3981856122e3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a638261185f565b73ffffffffffffffffffffffffffffffffffffffff1614612ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab090615545565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b20906153c5565b60405180910390fd5b612b34838383613202565b612b3f6000826128ac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b8f9190615879565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612be69190615798565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612ca7611848565b612ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdd906152e5565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612d2a6128a4565b604051612d379190615204565b60405180910390a1565b612d4a8161325a565b50565b612d55611848565b15612d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8c90615425565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612dd96128a4565b604051612de69190615204565b60405180910390a1565b600d54612dfb610e94565b10612e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3290615305565b60405180910390fd5b612e45600c6132ad565b6000612e59612e54600c6132c3565b610f01565b90508060216000612e6a600c6132c3565b8152602001908152602001600020819055506001811415612ea457600160226000828254612e989190615798565b92505081905550612f44565b6002811415612ecc57600160236000828254612ec09190615798565b92505081905550612f43565b6003811415612ef457600160246000828254612ee89190615798565b92505081905550612f42565b6004811415612f1c57600160256000828254612f109190615798565b92505081905550612f41565b6005811415612f4057600160266000828254612f389190615798565b925050819055505b5b5b5b5b612f5782612f52600c6132c3565b6132d1565b5050565b612f66848484612a43565b612f72848484846132ef565b612fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa890615345565b60405180910390fd5b50505050565b6060612fc282612838565b613001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff8906154c5565b60405180910390fd5b6000600a600084815260200190815260200160002080546130219061596d565b80601f016020809104026020016040519081016040528092919081815260200182805461304d9061596d565b801561309a5780601f1061306f5761010080835404028352916020019161309a565b820191906000526020600020905b81548152906001019060200180831161307d57829003601f168201915b5050505050905060006130ab613486565b90506000815114156130c1578192505050613104565b6000825111156130f65780826040516020016130de929190615192565b60405160208183030381529060405292505050613104565b6130ff84613518565b925050505b919050565b60008261311685846135de565b1490509392505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806131eb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806131fb57506131fa8261365a565b5b9050919050565b61320a611848565b1561324a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324190615425565b60405180910390fd5b6132558383836136c4565b505050565b613263816137d8565b6000600a600083815260200190815260200160002080546132839061596d565b9050146132aa57600a600082815260200190815260200160002060006132a99190614117565b5b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b6132eb8282604051806020016040528060008152506138e9565b5050565b60006133108473ffffffffffffffffffffffffffffffffffffffff16613944565b15613479578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133396128a4565b8786866040518563ffffffff1660e01b815260040161335b949392919061521f565b602060405180830381600087803b15801561337557600080fd5b505af19250505080156133a657506040513d601f19601f820116820180604052508101906133a3919061455d565b60015b613429573d80600081146133d6576040519150601f19603f3d011682016040523d82523d6000602084013e6133db565b606091505b50600081511415613421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341890615345565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061347e565b600190505b949350505050565b6060601f80546134959061596d565b80601f01602080910402602001604051908101604052809291908181526020018280546134c19061596d565b801561350e5780601f106134e35761010080835404028352916020019161350e565b820191906000526020600020905b8154815290600101906020018083116134f157829003601f168201915b5050505050905090565b606061352382612838565b613562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355990615565565b60405180910390fd5b600061356c613486565b9050600081511161358c57604051806020016040528060008152506135d6565b8061359684613957565b6040516020016135a691906151b6565b6040516020818303038152906040526040516020016135c692919061516e565b6040516020818303038152906040525b915050919050565b60008082905060005b845181101561364f5761363a8286838151811061362d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151613b04565b915080806136479061599f565b9150506135e7565b508091505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6136cf838383613b2f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137125761370d81613b34565b613751565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146137505761374f8382613b7d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137945761378f81613cea565b6137d3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146137d2576137d18282613e2d565b5b5b505050565b60006137e38261185f565b90506137f181600084613202565b6137fc6000836128ac565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461384c9190615879565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6138f38383613eac565b61390060008484846132ef565b61393f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161393690615345565b60405180910390fd5b505050565b600080823b905060008111915050919050565b6060600082141561399f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613aff565b600082905060005b600082146139d15780806139ba9061599f565b915050600a826139ca91906157ee565b91506139a7565b60008167ffffffffffffffff811115613a13577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613a455781602001600182028036833780820191505090505b5090505b60008514613af857600182613a5e9190615879565b9150600a85613a6d9190615a16565b6030613a799190615798565b60f81b818381518110613ab5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613af191906157ee565b9450613a49565b8093505050505b919050565b6000818310613b1c57613b17828461407a565b613b27565b613b26838361407a565b5b905092915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613b8a846119ab565b613b949190615879565b9050600060076000848152602001908152602001600020549050818114613c79576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613cfe9190615879565b9050600060096000848152602001908152602001600020549050600060088381548110613d54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613d9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613e11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613e38836119ab565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f13906154a5565b60405180910390fd5b613f2581612838565b15613f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f5c90615385565b60405180910390fd5b613f7160008383613202565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613fc19190615798565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600082600052816020526040600020905092915050565b82805461409d9061596d565b90600052602060002090601f0160209004810192826140bf5760008555614106565b82601f106140d857805160ff1916838001178555614106565b82800160010185558215614106579182015b828111156141055782518255916020019190600101906140ea565b5b5090506141139190614157565b5090565b5080546141239061596d565b6000825580601f106141355750614154565b601f0160209004906000526020600020908101906141539190614157565b5b50565b5b80821115614170576000816000905550600101614158565b5090565b6000614187614182846156b1565b615680565b90508281526020810184848401111561419f57600080fd5b6141aa84828561592b565b509392505050565b60006141c56141c0846156e1565b615680565b9050828152602081018484840111156141dd57600080fd5b6141e884828561592b565b509392505050565b6000813590506141ff81615b21565b92915050565b60008083601f84011261421757600080fd5b8235905067ffffffffffffffff81111561423057600080fd5b60208301915083602082028301111561424857600080fd5b9250929050565b60008135905061425e81615b38565b92915050565b60008135905061427381615b4f565b92915050565b60008135905061428881615b66565b92915050565b60008151905061429d81615b66565b92915050565b600082601f8301126142b457600080fd5b81356142c4848260208601614174565b91505092915050565b600082601f8301126142de57600080fd5b81356142ee8482602086016141b2565b91505092915050565b60008135905061430681615b7d565b92915050565b60006020828403121561431e57600080fd5b600061432c848285016141f0565b91505092915050565b6000806040838503121561434857600080fd5b6000614356858286016141f0565b9250506020614367858286016141f0565b9150509250929050565b60008060006060848603121561438657600080fd5b6000614394868287016141f0565b93505060206143a5868287016141f0565b92505060406143b6868287016142f7565b9150509250925092565b600080600080608085870312156143d657600080fd5b60006143e4878288016141f0565b94505060206143f5878288016141f0565b9350506040614406878288016142f7565b925050606085013567ffffffffffffffff81111561442357600080fd5b61442f878288016142a3565b91505092959194509250565b6000806040838503121561444e57600080fd5b600061445c858286016141f0565b925050602061446d8582860161424f565b9150509250929050565b6000806040838503121561448a57600080fd5b6000614498858286016141f0565b92505060206144a9858286016142f7565b9150509250929050565b6000806000604084860312156144c857600080fd5b600084013567ffffffffffffffff8111156144e257600080fd5b6144ee86828701614205565b93509350506020614501868287016142f7565b9150509250925092565b60006020828403121561451d57600080fd5b600061452b84828501614264565b91505092915050565b60006020828403121561454657600080fd5b600061455484828501614279565b91505092915050565b60006020828403121561456f57600080fd5b600061457d8482850161428e565b91505092915050565b60006020828403121561459857600080fd5b600082013567ffffffffffffffff8111156145b257600080fd5b6145be848285016142cd565b91505092915050565b6000602082840312156145d957600080fd5b60006145e7848285016142f7565b91505092915050565b60006145fc838361511e565b60208301905092915050565b614611816158ad565b82525050565b614628614623826158ad565b6159e8565b82525050565b600061463982615721565b614643818561574f565b935061464e83615711565b8060005b8381101561467f57815161466688826145f0565b975061467183615742565b925050600181019050614652565b5085935050505092915050565b614695816158bf565b82525050565b6146a4816158cb565b82525050565b60006146b58261572c565b6146bf8185615760565b93506146cf81856020860161593a565b6146d881615b03565b840191505092915050565b60006146ee8261572c565b6146f88185615771565b935061470881856020860161593a565b80840191505092915050565b600061471f82615737565b614729818561577c565b935061473981856020860161593a565b61474281615b03565b840191505092915050565b600061475882615737565b614762818561578d565b935061477281856020860161593a565b80840191505092915050565b600061478b60148361577c565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006147cb600f8361577c565b91507f737570706c79206465706c6574656400000000000000000000000000000000006000830152602082019050919050565b600061480b602b8361577c565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061487160328361577c565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006148d760268361577c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061493d601c8361577c565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061497d601e8361577c565b91507f6f6e6c79203320706572207472616e73616374696f6e20616c6c6f77656400006000830152602082019050919050565b60006149bd60248361577c565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a2360198361577c565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614a63602c8361577c565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614ac960108361577c565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000614b0960388361577c565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614b6f602a8361577c565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614bd560298361577c565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c3b60208361577c565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614c7b60318361577c565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000614ce1602c8361577c565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614d4760058361578d565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000614d8760208361577c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614dc760178361577c565b91507f4164647265737320616c726561647920636c61696d65640000000000000000006000830152602082019050919050565b6000614e0760298361577c565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e6d602f8361577c565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614ed3601e8361577c565b91507f6f6e6c79203120706572207472616e73616374696f6e20616c6c6f77656400006000830152602082019050919050565b6000614f1360218361577c565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f7960138361577c565b91507f6e6f7420656e6f756768207761732070616964000000000000000000000000006000830152602082019050919050565b6000614fb960318361577c565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061501f602c8361577c565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000615085600d8361577c565b91507f496e76616c69642070726f6f66000000000000000000000000000000000000006000830152602082019050919050565b60006150c560308361577c565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b61512781615921565b82525050565b61513681615921565b82525050565b61514d61514882615921565b615a0c565b82525050565b600061515f8284614617565b60148201915081905092915050565b600061517a828561474d565b915061518682846146e3565b91508190509392505050565b600061519e828561474d565b91506151aa828461474d565b91508190509392505050565b60006151c2828461474d565b91506151cd82614d3a565b915081905092915050565b60006151e4828561513c565b6020820191506151f4828461513c565b6020820191508190509392505050565b60006020820190506152196000830184614608565b92915050565b60006080820190506152346000830187614608565b6152416020830186614608565b61524e604083018561512d565b818103606083015261526081846146aa565b905095945050505050565b60006020820190508181036000830152615285818461462e565b905092915050565b60006020820190506152a2600083018461468c565b92915050565b60006020820190506152bd600083018461469b565b92915050565b600060208201905081810360008301526152dd8184614714565b905092915050565b600060208201905081810360008301526152fe8161477e565b9050919050565b6000602082019050818103600083015261531e816147be565b9050919050565b6000602082019050818103600083015261533e816147fe565b9050919050565b6000602082019050818103600083015261535e81614864565b9050919050565b6000602082019050818103600083015261537e816148ca565b9050919050565b6000602082019050818103600083015261539e81614930565b9050919050565b600060208201905081810360008301526153be81614970565b9050919050565b600060208201905081810360008301526153de816149b0565b9050919050565b600060208201905081810360008301526153fe81614a16565b9050919050565b6000602082019050818103600083015261541e81614a56565b9050919050565b6000602082019050818103600083015261543e81614abc565b9050919050565b6000602082019050818103600083015261545e81614afc565b9050919050565b6000602082019050818103600083015261547e81614b62565b9050919050565b6000602082019050818103600083015261549e81614bc8565b9050919050565b600060208201905081810360008301526154be81614c2e565b9050919050565b600060208201905081810360008301526154de81614c6e565b9050919050565b600060208201905081810360008301526154fe81614cd4565b9050919050565b6000602082019050818103600083015261551e81614d7a565b9050919050565b6000602082019050818103600083015261553e81614dba565b9050919050565b6000602082019050818103600083015261555e81614dfa565b9050919050565b6000602082019050818103600083015261557e81614e60565b9050919050565b6000602082019050818103600083015261559e81614ec6565b9050919050565b600060208201905081810360008301526155be81614f06565b9050919050565b600060208201905081810360008301526155de81614f6c565b9050919050565b600060208201905081810360008301526155fe81614fac565b9050919050565b6000602082019050818103600083015261561e81615012565b9050919050565b6000602082019050818103600083015261563e81615078565b9050919050565b6000602082019050818103600083015261565e816150b8565b9050919050565b600060208201905061567a600083018461512d565b92915050565b6000604051905081810181811067ffffffffffffffff821117156156a7576156a6615ad4565b5b8060405250919050565b600067ffffffffffffffff8211156156cc576156cb615ad4565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156156fc576156fb615ad4565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006157a382615921565b91506157ae83615921565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156157e3576157e2615a47565b5b828201905092915050565b60006157f982615921565b915061580483615921565b92508261581457615813615a76565b5b828204905092915050565b600061582a82615921565b915061583583615921565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561586e5761586d615a47565b5b828202905092915050565b600061588482615921565b915061588f83615921565b9250828210156158a2576158a1615a47565b5b828203905092915050565b60006158b882615901565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561595857808201518184015260208101905061593d565b83811115615967576000848401525b50505050565b6000600282049050600182168061598557607f821691505b6020821081141561599957615998615aa5565b5b50919050565b60006159aa82615921565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156159dd576159dc615a47565b5b600182019050919050565b60006159f3826159fa565b9050919050565b6000615a0582615b14565b9050919050565b6000819050919050565b6000615a2182615921565b9150615a2c83615921565b925082615a3c57615a3b615a76565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b615b2a816158ad565b8114615b3557600080fd5b50565b615b41816158bf565b8114615b4c57600080fd5b50565b615b58816158cb565b8114615b6357600080fd5b50565b615b6f816158d5565b8114615b7a57600080fd5b50565b615b8681615921565b8114615b9157600080fd5b5056fea26469706673582212207cebfebf9e52f2a05b6f208777a17fb5e458c82ae07c2c77e30e098d0bc56bb664736f6c63430008000033

Deployed Bytecode Sourcemap

58990:6769:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65585:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59801:34;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31245:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32691:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32251:374;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44948:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33581:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60231:1722;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44616:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62478:87;;;;;;;;;;;;;:::i;:::-;;62095:147;;;;;;;;;;;;;:::i;:::-;;62319:65;;;;;;;;;;;;;:::i;:::-;;33991:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57393:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64631:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59842:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45138:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62573:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53452:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30939:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59300:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59376;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59630:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30669:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56384:148;;;;;;;;;;;;;:::i;:::-;;62392:78;;;;;;;;;;;;;:::i;:::-;;59926:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62250:61;;;;;;;;;;;;;:::i;:::-;;55733:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62683:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31414:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59558:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59485:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64349:276;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63680:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32984:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59338:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34247:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59870:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59592:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59898:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59226:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65415:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59984:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60032:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59187:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61966:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33350:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59263:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63892:449;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56687:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62776:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59954:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65585:171;65688:4;65712:36;65736:11;65712:23;:36::i;:::-;65705:43;;65585:171;;;:::o;59801:34::-;;;;;;;;;;;;;;;;;:::o;31245:100::-;31299:13;31332:5;31325:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31245:100;:::o;32691:221::-;32767:7;32795:16;32803:7;32795;:16::i;:::-;32787:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32880:15;:24;32896:7;32880:24;;;;;;;;;;;;;;;;;;;;;32873:31;;32691:221;;;:::o;32251:374::-;32332:13;32348:23;32363:7;32348:14;:23::i;:::-;32332:39;;32396:5;32390:11;;:2;:11;;;;32382:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32476:5;32460:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32485:37;32502:5;32509:12;:10;:12::i;:::-;32485:16;:37::i;:::-;32460:62;32452:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;32596:21;32605:2;32609:7;32596:8;:21::i;:::-;32251:374;;;:::o;44948:113::-;45009:7;45036:10;:17;;;;45029:24;;44948:113;:::o;33581:339::-;33776:41;33795:12;:10;:12::i;:::-;33809:7;33776:18;:41::i;:::-;33768:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;33884:28;33894:4;33900:2;33904:7;33884:9;:28::i;:::-;33581:339;;;:::o;60231:1722::-;60275:4;60310:12;60348:3;60325:22;:26;;;;:::i;:::-;60310:41;;60358:11;60404:16;60422:15;60387:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60377:62;;;;;;60372:68;;60358:82;;60447:8;60466:11;60487:12;60509:7;60502:6;:14;;;;:::i;:::-;60487:29;;60527:6;60523:66;60539:8;60537:1;:10;60523:66;;;60573:1;60575;60573:4;;;;;;;;;;;;;;;;;60568:9;;;;;:::i;:::-;;;60549:3;;;;;:::i;:::-;;;;60523:66;;;;60606:3;60595:14;;;;;:::i;:::-;;;60620:6;60616:863;60634:8;60632:1;:10;60616:863;;;60671:1;60673;60671:4;;;;;;;;;;;;;;;;;60661:14;;;;;:::i;:::-;;;60722:6;60698:22;60690:7;:30;;;;:::i;:::-;:38;60687:781;;60766:1;60760;60762;60760:4;;;;;;;;;;;;;;;;;:7;60756:700;;;60798:9;;60791:6;;:16;60788:76;;;60842:1;60835:8;;;;;;;;;;60788:76;60756:700;;;60899:1;60893;60895;60893:4;;;;;;;;;;;;;;;;;:7;60889:567;;;60931:9;;60924:6;;:16;60921:120;;;61019:1;61012:8;;;;;;;;;;60921:120;60889:567;;;61075:1;61069;61071;61069:4;;;;;;;;;;;;;;;;;:7;61065:391;;;61107:9;;61100:6;;:16;61097:76;;;61151:1;61144:8;;;;;;;;;;61097:76;61065:391;;;61205:1;61199;61201;61199:4;;;;;;;;;;;;;;;;;:7;61195:261;;;61237:9;;61230:6;;:16;61227:76;;;61281:1;61274:8;;;;;;;;;;61227:76;61195:261;;;61335:1;61329;61331;61329:4;;;;;;;;;;;;;;;;;:7;61325:131;;;61374:9;;61367:6;;:16;61364:76;;;61418:1;61411:8;;;;;;;;;;61364:76;61325:131;61195:261;61065:391;60889:567;60756:700;60687:781;60644:3;;;;;:::i;:::-;;;;60616:863;;;;61495:9;;61488:6;;:16;61485:465;;;61539:1;61532:8;;;;;;;;;61485:465;61577:9;;61570:6;;:16;61566:384;;;61622:1;61615:8;;;;;;;;;61566:384;61660:9;;61653:6;;:16;61649:301;;;61705:1;61698:8;;;;;;;;;61649:301;61743:9;;61736:6;;:16;61732:218;;;61788:1;61781:8;;;;;;;;;61732:218;61826:9;;61819:6;;:16;61815:135;;;61871:1;61864:8;;;;;;;;;61815:135;61928:1;61921:8;;;;;;;60231:1722;;;;:::o;44616:256::-;44713:7;44749:23;44766:5;44749:16;:23::i;:::-;44741:5;:31;44733:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;44838:12;:19;44851:5;44838:19;;;;;;;;;;;;;;;:26;44858:5;44838:26;;;;;;;;;;;;44831:33;;44616:256;;;;:::o;62478:87::-;55964:12;:10;:12::i;:::-;55953:23;;:7;:5;:7::i;:::-;:23;;;55945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62546:11:::1;;;;;;;;;;;62545:12;62531:11;;:26;;;;;;;;;;;;;;;;;;62478:87::o:0;62095:147::-;55964:12;:10;:12::i;:::-;55953:23;;:7;:5;:7::i;:::-;:23;;;55945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62143:15:::1;62161:21;62143:39;;62201:12;;;;;;;;;;;62193:30;;:39;62224:7;62193:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;56024:1;62095:147::o:0;62319:65::-;55964:12;:10;:12::i;:::-;55953:23;;:7;:5;:7::i;:::-;:23;;;55945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62366:10:::1;:8;:10::i;:::-;62319:65::o:0;33991:185::-;34129:39;34146:4;34152:2;34156:7;34129:39;;;;;;;;;;;;:16;:39::i;:::-;33991:185;;;:::o;57393:245::-;57511:41;57530:12;:10;:12::i;:::-;57544:7;57511:18;:41::i;:::-;57503:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;57616:14;57622:7;57616:5;:14::i;:::-;57393:245;:::o;64631:348::-;64706:16;64734:23;64760:17;64770:6;64760:9;:17::i;:::-;64734:43;;64784:25;64826:15;64812:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64784:58;;64854:9;64849:103;64869:15;64865:1;:19;64849:103;;;64914:30;64934:6;64942:1;64914:19;:30::i;:::-;64900:8;64909:1;64900:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;64886:3;;;;;:::i;:::-;;;;64849:103;;;;64965:8;64958:15;;;;64631:348;;;:::o;59842:21::-;;;;:::o;45138:233::-;45213:7;45249:30;:28;:30::i;:::-;45241:5;:38;45233:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;45346:10;45357:5;45346:17;;;;;;;;;;;;;;;;;;;;;;;;45339:24;;45138:233;;;:::o;62573:102::-;55964:12;:10;:12::i;:::-;55953:23;;:7;:5;:7::i;:::-;:23;;;55945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62657:10:::1;62647:7;:20;;;;;;;;;;;;:::i;:::-;;62573:102:::0;:::o;53452:86::-;53499:4;53523:7;;;;;;;;;;;53516:14;;53452:86;:::o;30939:239::-;31011:7;31031:13;31047:7;:16;31055:7;31047:16;;;;;;;;;;;;;;;;;;;;;31031:32;;31099:1;31082:19;;:5;:19;;;;31074:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31165:5;31158:12;;;30939:239;;;:::o;59300:31::-;;;;:::o;59376:::-;;;;:::o;59630:92::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30669:208::-;30741:7;30786:1;30769:19;;:5;:19;;;;30761:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30853:9;:16;30863:5;30853:16;;;;;;;;;;;;;;;;30846:23;;30669:208;;;:::o;56384:148::-;55964:12;:10;:12::i;:::-;55953:23;;:7;:5;:7::i;:::-;:23;;;55945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56491:1:::1;56454:40;;56475:6;;;;;;;;;;;56454:40;;;;;;;;;;;;56522:1;56505:6;;:19;;;;;;;;;;;;;;;;;;56384:148::o:0;62392:78::-;55964:12;:10;:12::i;:::-;55953:23;;:7;:5;:7::i;:::-;:23;;;55945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62454:8:::1;;;;;;;;;;;62453:9;62442:8;;:20;;;;;;;;;;;;;;;;;;62392:78::o:0;59926:21::-;;;;:::o;62250:61::-;55964:12;:10;:12::i;:::-;55953:23;;:7;:5;:7::i;:::-;:23;;;55945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62295:8:::1;:6;:8::i;:::-;62250:61::o:0;55733:87::-;55779:7;55806:6;;;;;;;;;;;55799:13;;55733:87;:::o;62683:88::-;55964:12;:10;:12::i;:::-;55953:23;;:7;:5;:7::i;:::-;:23;;;55945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62755:8:::1;62747:5;:16;;;;62683:88:::0;:::o;31414:104::-;31470:13;31503:7;31496:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31414:104;:::o;59558:27::-;;;;;;;;;;;;;:::o;59485:40::-;;;;:::o;64349:276::-;64434:6;64426:5;;:14;;;;:::i;:::-;64413:9;:27;;64405:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;64506:4;64496:6;:14;;64488:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;64561:9;64556:61;64580:6;64576:1;:10;64556:61;;;64593:24;64606:10;64593:12;:24::i;:::-;64588:3;;;;;:::i;:::-;;;;64556:61;;;;64349:276;:::o;63680:200::-;55964:12;:10;:12::i;:::-;55953:23;;:7;:5;:7::i;:::-;:23;;;55945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63771:4:::1;63761:6;:14;;63753:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;63824:9;63819:53;63843:6;63839:1;:10;63819:53;;;63856:16;63869:2;63856:12;:16::i;:::-;63851:3;;;;;:::i;:::-;;;;63819:53;;;;63680:200:::0;;:::o;32984:295::-;33099:12;:10;:12::i;:::-;33087:24;;:8;:24;;;;33079:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33199:8;33154:18;:32;33173:12;:10;:12::i;:::-;33154:32;;;;;;;;;;;;;;;:42;33187:8;33154:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33252:8;33223:48;;33238:12;:10;:12::i;:::-;33223:48;;;33262:8;33223:48;;;;;;:::i;:::-;;;;;;;;32984:295;;:::o;59338:31::-;;;;:::o;34247:328::-;34422:41;34441:12;:10;:12::i;:::-;34455:7;34422:18;:41::i;:::-;34414:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34528:39;34542:4;34548:2;34552:7;34561:5;34528:13;:39::i;:::-;34247:328;;;;:::o;59870:21::-;;;;:::o;59592:31::-;;;;;;;;;;;;;:::o;59898:21::-;;;;:::o;59226:30::-;;;;:::o;65415:162::-;65506:13;65539:30;65554:5;:14;65560:7;65554:14;;;;;;;;;;;;65539;:30::i;:::-;65532:37;;65415:162;;;:::o;59984:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;60032:97::-;;;;:::o;59187:32::-;;;;:::o;61966:119::-;55964:12;:10;:12::i;:::-;55953:23;;:7;:5;:7::i;:::-;:23;;;55945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62033:9:::1;62028:49;62052:2;62048:1;:6;62028:49;;;62061:16;62074:2;62061:12;:16::i;:::-;62056:3;;;;;:::i;:::-;;;;62028:49;;;;61966:119:::0;:::o;33350:164::-;33447:4;33471:18;:25;33490:5;33471:25;;;;;;;;;;;;;;;:35;33497:8;33471:35;;;;;;;;;;;;;;;;;;;;;;;;;33464:42;;33350:164;;;;:::o;59263:30::-;;;;:::o;63892:449::-;63988:86;64007:11;;63988:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64019:14;;64061:10;64044:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;64034:39;;;;;;63988:18;:86::i;:::-;63980:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;64112:7;:19;64120:10;64112:19;;;;;;;;;;;;;;;;;;;;;;;;;64111:20;64103:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;64188:1;64178:6;:11;;64170:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;64257:4;64235:7;:19;64243:10;64235:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;64277:9;64272:61;64296:6;64292:1;:10;64272:61;;;64309:24;64322:10;64309:12;:24::i;:::-;64304:3;;;;;:::i;:::-;;;;64272:61;;;;63892:449;;;:::o;56687:244::-;55964:12;:10;:12::i;:::-;55953:23;;:7;:5;:7::i;:::-;:23;;;55945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56796:1:::1;56776:22;;:8;:22;;;;56768:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56886:8;56857:38;;56878:6;;;;;;;;;;;56857:38;;;;;;;;;;;;56915:8;56906:6;;:17;;;;;;;;;;;;;;;;;;56687:244:::0;:::o;62776:112::-;55964:12;:10;:12::i;:::-;55953:23;;:7;:5;:7::i;:::-;:23;;;55945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62870:10:::1;62853:14;:27;;;;62776:112:::0;:::o;59954:21::-;;;;:::o;44308:224::-;44410:4;44449:35;44434:50;;;:11;:50;;;;:90;;;;44488:36;44512:11;44488:23;:36::i;:::-;44434:90;44427:97;;44308:224;;;:::o;36085:127::-;36150:4;36202:1;36174:30;;:7;:16;36182:7;36174:16;;;;;;;;;;;;;;;;;;;;;:30;;;;36167:37;;36085:127;;;:::o;24966:98::-;25019:7;25046:10;25039:17;;24966:98;:::o;40032:174::-;40134:2;40107:15;:24;40123:7;40107:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40190:7;40186:2;40152:46;;40161:23;40176:7;40161:14;:23::i;:::-;40152:46;;;;;;;;;;;;40032:174;;:::o;36379:348::-;36472:4;36497:16;36505:7;36497;:16::i;:::-;36489:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36573:13;36589:23;36604:7;36589:14;:23::i;:::-;36573:39;;36642:5;36631:16;;:7;:16;;;:51;;;;36675:7;36651:31;;:20;36663:7;36651:11;:20::i;:::-;:31;;;36631:51;:87;;;;36686:32;36703:5;36710:7;36686:16;:32::i;:::-;36631:87;36623:96;;;36379:348;;;;:::o;39336:578::-;39495:4;39468:31;;:23;39483:7;39468:14;:23::i;:::-;:31;;;39460:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39578:1;39564:16;;:2;:16;;;;39556:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39634:39;39655:4;39661:2;39665:7;39634:20;:39::i;:::-;39738:29;39755:1;39759:7;39738:8;:29::i;:::-;39799:1;39780:9;:15;39790:4;39780:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;39828:1;39811:9;:13;39821:2;39811:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39859:2;39840:7;:16;39848:7;39840:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39898:7;39894:2;39879:27;;39888:4;39879:27;;;;;;;;;;;;39336:578;;;:::o;54511:120::-;54055:8;:6;:8::i;:::-;54047:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;54580:5:::1;54570:7;;:15;;;;;;;;;;;;;;;;;;54601:22;54610:12;:10;:12::i;:::-;54601:22;;;;;;:::i;:::-;;;;;;;;54511:120::o:0;65292:115::-;65379:20;65391:7;65379:11;:20::i;:::-;65292:115;:::o;54252:118::-;53778:8;:6;:8::i;:::-;53777:9;53769:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;54322:4:::1;54312:7;;:14;;;;;;;;;;;;;;;;;;54342:20;54349:12;:10;:12::i;:::-;54342:20;;;;;;:::i;:::-;;;;;;;;54252:118::o:0;63054:618::-;63132:9;;63116:13;:11;:13::i;:::-;:25;63108:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;63172:27;:15;:25;:27::i;:::-;63210:11;63224:31;63229:25;:15;:23;:25::i;:::-;63224:4;:31::i;:::-;63210:45;;63301:6;63266:5;:32;63272:25;:15;:23;:25::i;:::-;63266:32;;;;;;;;;;;:41;;;;63330:1;63321:6;:10;63318:294;;;63359:1;63349:6;;:11;;;;;;;:::i;:::-;;;;;;;;63318:294;;;63390:1;63381:6;:10;63378:234;;;63419:1;63409:6;;:11;;;;;;;:::i;:::-;;;;;;;;63378:234;;;63450:1;63441:6;:10;63438:174;;;63479:1;63469:6;;:11;;;;;;;:::i;:::-;;;;;;;;63438:174;;;63510:1;63501:6;:10;63498:114;;;63539:1;63529:6;;:11;;;;;;;:::i;:::-;;;;;;;;63498:114;;;63570:1;63561:6;:10;63558:54;;;63599:1;63589:6;;:11;;;;;;;:::i;:::-;;;;;;;;63558:54;63498:114;63438:174;63378:234;63318:294;63624:40;63634:2;63638:25;:15;:23;:25::i;:::-;63624:9;:40::i;:::-;63054:618;;:::o;35457:315::-;35614:28;35624:4;35630:2;35634:7;35614:9;:28::i;:::-;35661:48;35684:4;35690:2;35694:7;35703:5;35661:22;:48::i;:::-;35653:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35457:315;;;;:::o;50886:677::-;50959:13;50993:16;51001:7;50993;:16::i;:::-;50985:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;51076:23;51102:10;:19;51113:7;51102:19;;;;;;;;;;;51076:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51132:18;51153:10;:8;:10::i;:::-;51132:31;;51261:1;51245:4;51239:18;:23;51235:72;;;51286:9;51279:16;;;;;;51235:72;51437:1;51417:9;51411:23;:27;51407:108;;;51486:4;51492:9;51469:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51455:48;;;;;;51407:108;51532:23;51547:7;51532:14;:23::i;:::-;51525:30;;;;50886:677;;;;:::o;1162:190::-;1287:4;1340;1311:25;1324:5;1331:4;1311:12;:25::i;:::-;:33;1304:40;;1162:190;;;;;:::o;30339:266::-;30441:4;30480:25;30465:40;;;:11;:40;;;;:92;;;;30524:33;30509:48;;;:11;:48;;;;30465:92;:132;;;;30561:36;30585:11;30561:23;:36::i;:::-;30465:132;30458:139;;30339:266;;;:::o;64985:229::-;53778:8;:6;:8::i;:::-;53777:9;53769:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;65161:45:::1;65188:4;65194:2;65198:7;65161:26;:45::i;:::-;64985:229:::0;;;:::o;52165:206::-;52234:20;52246:7;52234:11;:20::i;:::-;52308:1;52277:10;:19;52288:7;52277:19;;;;;;;;;;;52271:33;;;;;:::i;:::-;;;:38;52267:97;;52333:10;:19;52344:7;52333:19;;;;;;;;;;;;52326:26;;;;:::i;:::-;52267:97;52165:206;:::o;58586:127::-;58693:1;58675:7;:14;;;:19;;;;;;;;;;;58586:127;:::o;58464:114::-;58529:7;58556;:14;;;58549:21;;58464:114;;;:::o;37071:110::-;37147:26;37157:2;37161:7;37147:26;;;;;;;;;;;;:9;:26::i;:::-;37071:110;;:::o;40771:872::-;40926:4;40947:15;:2;:13;;;:15::i;:::-;40943:693;;;40999:2;40983:36;;;41020:12;:10;:12::i;:::-;41034:4;41040:7;41049:5;40983:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40979:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41246:1;41229:6;:13;:18;41225:341;;;41272:60;;;;;;;;;;:::i;:::-;;;;;;;;41225:341;41516:6;41510:13;41501:6;41497:2;41493:15;41486:38;40979:602;41116:45;;;41106:55;;;:6;:55;;;;41099:62;;;;;40943:693;41620:4;41613:11;;40771:872;;;;;;;:::o;62894:100::-;62946:13;62979:7;62972:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62894:100;:::o;31597:361::-;31670:13;31704:16;31712:7;31704;:16::i;:::-;31696:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31785:21;31809:10;:8;:10::i;:::-;31785:34;;31861:1;31843:7;31837:21;:25;:113;;;;;;;;;;;;;;;;;31889:7;31915:18;:7;:16;:18::i;:::-;31898:45;;;;;;;;:::i;:::-;;;;;;;;;;;;;31872:72;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31837:113;31830:120;;;31597:361;;;:::o;2029:296::-;2112:7;2132:20;2155:4;2132:27;;2175:9;2170:118;2194:5;:12;2190:1;:16;2170:118;;;2243:33;2253:12;2267:5;2273:1;2267:8;;;;;;;;;;;;;;;;;;;;;;2243:9;:33::i;:::-;2228:48;;2208:3;;;;;:::i;:::-;;;;2170:118;;;;2305:12;2298:19;;;2029:296;;;;:::o;28855:157::-;28940:4;28979:25;28964:40;;;:11;:40;;;;28957:47;;28855:157;;;:::o;45984:589::-;46128:45;46155:4;46161:2;46165:7;46128:26;:45::i;:::-;46206:1;46190:18;;:4;:18;;;46186:187;;;46225:40;46257:7;46225:31;:40::i;:::-;46186:187;;;46295:2;46287:10;;:4;:10;;;46283:90;;46314:47;46347:4;46353:7;46314:32;:47::i;:::-;46283:90;46186:187;46401:1;46387:16;;:2;:16;;;46383:183;;;46420:45;46457:7;46420:36;:45::i;:::-;46383:183;;;46493:4;46487:10;;:2;:10;;;46483:83;;46514:40;46542:2;46546:7;46514:27;:40::i;:::-;46483:83;46383:183;45984:589;;;:::o;38639:360::-;38699:13;38715:23;38730:7;38715:14;:23::i;:::-;38699:39;;38751:48;38772:5;38787:1;38791:7;38751:20;:48::i;:::-;38840:29;38857:1;38861:7;38840:8;:29::i;:::-;38902:1;38882:9;:16;38892:5;38882:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;38921:7;:16;38929:7;38921:16;;;;;;;;;;;;38914:23;;;;;;;;;;;38983:7;38979:1;38955:36;;38964:5;38955:36;;;;;;;;;;;;38639:360;;:::o;37408:284::-;37538:18;37544:2;37548:7;37538:5;:18::i;:::-;37575:54;37606:1;37610:2;37614:7;37623:5;37575:22;:54::i;:::-;37567:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;37408:284;;;:::o;16847:444::-;16907:4;17115:12;17239:7;17227:20;17219:28;;17282:1;17275:4;:8;17268:15;;;16847:444;;;:::o;25623:723::-;25679:13;25909:1;25900:5;:10;25896:53;;;25927:10;;;;;;;;;;;;;;;;;;;;;25896:53;25959:12;25974:5;25959:20;;25990:14;26015:78;26030:1;26022:4;:9;26015:78;;26048:8;;;;;:::i;:::-;;;;26079:2;26071:10;;;;;:::i;:::-;;;26015:78;;;26103:19;26135:6;26125:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26103:39;;26153:154;26169:1;26160:5;:10;26153:154;;26197:1;26187:11;;;;;:::i;:::-;;;26264:2;26256:5;:10;;;;:::i;:::-;26243:2;:24;;;;:::i;:::-;26230:39;;26213:6;26220;26213:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;26293:2;26284:11;;;;;:::i;:::-;;;26153:154;;;26331:6;26317:21;;;;;25623:723;;;;:::o;8236:149::-;8299:7;8330:1;8326;:5;:51;;8357:20;8372:1;8375;8357:14;:20::i;:::-;8326:51;;;8334:20;8349:1;8352;8334:14;:20::i;:::-;8326:51;8319:58;;8236:149;;;;:::o;42256:126::-;;;;:::o;47296:164::-;47400:10;:17;;;;47373:15;:24;47389:7;47373:24;;;;;;;;;;;:44;;;;47428:10;47444:7;47428:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47296:164;:::o;48087:988::-;48353:22;48403:1;48378:22;48395:4;48378:16;:22::i;:::-;:26;;;;:::i;:::-;48353:51;;48415:18;48436:17;:26;48454:7;48436:26;;;;;;;;;;;;48415:47;;48583:14;48569:10;:28;48565:328;;48614:19;48636:12;:18;48649:4;48636:18;;;;;;;;;;;;;;;:34;48655:14;48636:34;;;;;;;;;;;;48614:56;;48720:11;48687:12;:18;48700:4;48687:18;;;;;;;;;;;;;;;:30;48706:10;48687:30;;;;;;;;;;;:44;;;;48837:10;48804:17;:30;48822:11;48804:30;;;;;;;;;;;:43;;;;48565:328;;48989:17;:26;49007:7;48989:26;;;;;;;;;;;48982:33;;;49033:12;:18;49046:4;49033:18;;;;;;;;;;;;;;;:34;49052:14;49033:34;;;;;;;;;;;49026:41;;;48087:988;;;;:::o;49370:1079::-;49623:22;49668:1;49648:10;:17;;;;:21;;;;:::i;:::-;49623:46;;49680:18;49701:15;:24;49717:7;49701:24;;;;;;;;;;;;49680:45;;50052:19;50074:10;50085:14;50074:26;;;;;;;;;;;;;;;;;;;;;;;;50052:48;;50138:11;50113:10;50124;50113:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;50249:10;50218:15;:28;50234:11;50218:28;;;;;;;;;;;:41;;;;50390:15;:24;50406:7;50390:24;;;;;;;;;;;50383:31;;;50425:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49370:1079;;;;:::o;46874:221::-;46959:14;46976:20;46993:2;46976:16;:20::i;:::-;46959:37;;47034:7;47007:12;:16;47020:2;47007:16;;;;;;;;;;;;;;;:24;47024:6;47007:24;;;;;;;;;;;:34;;;;47081:6;47052:17;:26;47070:7;47052:26;;;;;;;;;;;:35;;;;46874:221;;;:::o;38028:382::-;38122:1;38108:16;;:2;:16;;;;38100:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38181:16;38189:7;38181;:16::i;:::-;38180:17;38172:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38243:45;38272:1;38276:2;38280:7;38243:20;:45::i;:::-;38318:1;38301:9;:13;38311:2;38301:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38349:2;38330:7;:16;38338:7;38330:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38394:7;38390:2;38369:33;;38386:1;38369:33;;;;;;;;;;;;38028:382;;:::o;8393:268::-;8461:13;8568:1;8562:4;8555:15;8597:1;8591:4;8584:15;8638:4;8632;8622:21;8613:30;;8540:114;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;867:367::-;;;1000:3;993:4;985:6;981:17;977:27;967:2;;1018:1;1015;1008:12;967:2;1054:6;1041:20;1031:30;;1084:18;1076:6;1073:30;1070:2;;;1116:1;1113;1106:12;1070:2;1153:4;1145:6;1141:17;1129:29;;1207:3;1199:4;1191:6;1187:17;1177:8;1173:32;1170:41;1167:2;;;1224:1;1221;1214:12;1167:2;957:277;;;;;:::o;1240:133::-;;1321:6;1308:20;1299:29;;1337:30;1361:5;1337:30;:::i;:::-;1289:84;;;;:::o;1379:139::-;;1463:6;1450:20;1441:29;;1479:33;1506:5;1479:33;:::i;:::-;1431:87;;;;:::o;1524:137::-;;1607:6;1594:20;1585:29;;1623:32;1649:5;1623:32;:::i;:::-;1575:86;;;;:::o;1667:141::-;;1754:6;1748:13;1739:22;;1770:32;1796:5;1770:32;:::i;:::-;1729:79;;;;:::o;1827:271::-;;1931:3;1924:4;1916:6;1912:17;1908:27;1898:2;;1949:1;1946;1939:12;1898:2;1989:6;1976:20;2014:78;2088:3;2080:6;2073:4;2065:6;2061:17;2014:78;:::i;:::-;2005:87;;1888:210;;;;;:::o;2118:273::-;;2223:3;2216:4;2208:6;2204:17;2200:27;2190:2;;2241:1;2238;2231:12;2190:2;2281:6;2268:20;2306:79;2381:3;2373:6;2366:4;2358:6;2354:17;2306:79;:::i;:::-;2297:88;;2180:211;;;;;:::o;2397:139::-;;2481:6;2468:20;2459:29;;2497:33;2524:5;2497:33;:::i;:::-;2449:87;;;;:::o;2542:262::-;;2650:2;2638:9;2629:7;2625:23;2621:32;2618:2;;;2666:1;2663;2656:12;2618:2;2709:1;2734:53;2779:7;2770:6;2759:9;2755:22;2734:53;:::i;:::-;2724:63;;2680:117;2608:196;;;;:::o;2810:407::-;;;2935:2;2923:9;2914:7;2910:23;2906:32;2903:2;;;2951:1;2948;2941:12;2903:2;2994:1;3019:53;3064:7;3055:6;3044:9;3040:22;3019:53;:::i;:::-;3009:63;;2965:117;3121:2;3147:53;3192:7;3183:6;3172:9;3168:22;3147:53;:::i;:::-;3137:63;;3092:118;2893:324;;;;;:::o;3223:552::-;;;;3365:2;3353:9;3344:7;3340:23;3336:32;3333:2;;;3381:1;3378;3371:12;3333:2;3424:1;3449:53;3494:7;3485:6;3474:9;3470:22;3449:53;:::i;:::-;3439:63;;3395:117;3551:2;3577:53;3622:7;3613:6;3602:9;3598:22;3577:53;:::i;:::-;3567:63;;3522:118;3679:2;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3650:118;3323:452;;;;;:::o;3781:809::-;;;;;3949:3;3937:9;3928:7;3924:23;3920:33;3917:2;;;3966:1;3963;3956:12;3917:2;4009:1;4034:53;4079:7;4070:6;4059:9;4055:22;4034:53;:::i;:::-;4024:63;;3980:117;4136:2;4162:53;4207:7;4198:6;4187:9;4183:22;4162:53;:::i;:::-;4152:63;;4107:118;4264:2;4290:53;4335:7;4326:6;4315:9;4311:22;4290:53;:::i;:::-;4280:63;;4235:118;4420:2;4409:9;4405:18;4392:32;4451:18;4443:6;4440:30;4437:2;;;4483:1;4480;4473:12;4437:2;4511:62;4565:7;4556:6;4545:9;4541:22;4511:62;:::i;:::-;4501:72;;4363:220;3907:683;;;;;;;:::o;4596:401::-;;;4718:2;4706:9;4697:7;4693:23;4689:32;4686:2;;;4734:1;4731;4724:12;4686:2;4777:1;4802:53;4847:7;4838:6;4827:9;4823:22;4802:53;:::i;:::-;4792:63;;4748:117;4904:2;4930:50;4972:7;4963:6;4952:9;4948:22;4930:50;:::i;:::-;4920:60;;4875:115;4676:321;;;;;:::o;5003:407::-;;;5128:2;5116:9;5107:7;5103:23;5099:32;5096:2;;;5144:1;5141;5134:12;5096:2;5187:1;5212:53;5257:7;5248:6;5237:9;5233:22;5212:53;:::i;:::-;5202:63;;5158:117;5314:2;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5285:118;5086:324;;;;;:::o;5416:570::-;;;;5576:2;5564:9;5555:7;5551:23;5547:32;5544:2;;;5592:1;5589;5582:12;5544:2;5663:1;5652:9;5648:17;5635:31;5693:18;5685:6;5682:30;5679:2;;;5725:1;5722;5715:12;5679:2;5761:80;5833:7;5824:6;5813:9;5809:22;5761:80;:::i;:::-;5743:98;;;;5606:245;5890:2;5916:53;5961:7;5952:6;5941:9;5937:22;5916:53;:::i;:::-;5906:63;;5861:118;5534:452;;;;;:::o;5992:262::-;;6100:2;6088:9;6079:7;6075:23;6071:32;6068:2;;;6116:1;6113;6106:12;6068:2;6159:1;6184:53;6229:7;6220:6;6209:9;6205:22;6184:53;:::i;:::-;6174:63;;6130:117;6058:196;;;;:::o;6260:260::-;;6367:2;6355:9;6346:7;6342:23;6338:32;6335:2;;;6383:1;6380;6373:12;6335:2;6426:1;6451:52;6495:7;6486:6;6475:9;6471:22;6451:52;:::i;:::-;6441:62;;6397:116;6325:195;;;;:::o;6526:282::-;;6644:2;6632:9;6623:7;6619:23;6615:32;6612:2;;;6660:1;6657;6650:12;6612:2;6703:1;6728:63;6783:7;6774:6;6763:9;6759:22;6728:63;:::i;:::-;6718:73;;6674:127;6602:206;;;;:::o;6814:375::-;;6932:2;6920:9;6911:7;6907:23;6903:32;6900:2;;;6948:1;6945;6938:12;6900:2;7019:1;7008:9;7004:17;6991:31;7049:18;7041:6;7038:30;7035:2;;;7081:1;7078;7071:12;7035:2;7109:63;7164:7;7155:6;7144:9;7140:22;7109:63;:::i;:::-;7099:73;;6962:220;6890:299;;;;:::o;7195:262::-;;7303:2;7291:9;7282:7;7278:23;7274:32;7271:2;;;7319:1;7316;7309:12;7271:2;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7261:196;;;;:::o;7463:179::-;;7553:46;7595:3;7587:6;7553:46;:::i;:::-;7631:4;7626:3;7622:14;7608:28;;7543:99;;;;:::o;7648:118::-;7735:24;7753:5;7735:24;:::i;:::-;7730:3;7723:37;7713:53;;:::o;7772:157::-;7877:45;7897:24;7915:5;7897:24;:::i;:::-;7877:45;:::i;:::-;7872:3;7865:58;7855:74;;:::o;7965:732::-;;8113:54;8161:5;8113:54;:::i;:::-;8183:86;8262:6;8257:3;8183:86;:::i;:::-;8176:93;;8293:56;8343:5;8293:56;:::i;:::-;8372:7;8403:1;8388:284;8413:6;8410:1;8407:13;8388:284;;;8489:6;8483:13;8516:63;8575:3;8560:13;8516:63;:::i;:::-;8509:70;;8602:60;8655:6;8602:60;:::i;:::-;8592:70;;8448:224;8435:1;8432;8428:9;8423:14;;8388:284;;;8392:14;8688:3;8681:10;;8089:608;;;;;;;:::o;8703:109::-;8784:21;8799:5;8784:21;:::i;:::-;8779:3;8772:34;8762:50;;:::o;8818:118::-;8905:24;8923:5;8905:24;:::i;:::-;8900:3;8893:37;8883:53;;:::o;8942:360::-;;9056:38;9088:5;9056:38;:::i;:::-;9110:70;9173:6;9168:3;9110:70;:::i;:::-;9103:77;;9189:52;9234:6;9229:3;9222:4;9215:5;9211:16;9189:52;:::i;:::-;9266:29;9288:6;9266:29;:::i;:::-;9261:3;9257:39;9250:46;;9032:270;;;;;:::o;9308:373::-;;9440:38;9472:5;9440:38;:::i;:::-;9494:88;9575:6;9570:3;9494:88;:::i;:::-;9487:95;;9591:52;9636:6;9631:3;9624:4;9617:5;9613:16;9591:52;:::i;:::-;9668:6;9663:3;9659:16;9652:23;;9416:265;;;;;:::o;9687:364::-;;9803:39;9836:5;9803:39;:::i;:::-;9858:71;9922:6;9917:3;9858:71;:::i;:::-;9851:78;;9938:52;9983:6;9978:3;9971:4;9964:5;9960:16;9938:52;:::i;:::-;10015:29;10037:6;10015:29;:::i;:::-;10010:3;10006:39;9999:46;;9779:272;;;;;:::o;10057:377::-;;10191:39;10224:5;10191:39;:::i;:::-;10246:89;10328:6;10323:3;10246:89;:::i;:::-;10239:96;;10344:52;10389:6;10384:3;10377:4;10370:5;10366:16;10344:52;:::i;:::-;10421:6;10416:3;10412:16;10405:23;;10167:267;;;;;:::o;10440:318::-;;10603:67;10667:2;10662:3;10603:67;:::i;:::-;10596:74;;10700:22;10696:1;10691:3;10687:11;10680:43;10749:2;10744:3;10740:12;10733:19;;10586:172;;;:::o;10764:313::-;;10927:67;10991:2;10986:3;10927:67;:::i;:::-;10920:74;;11024:17;11020:1;11015:3;11011:11;11004:38;11068:2;11063:3;11059:12;11052:19;;10910:167;;;:::o;11083:375::-;;11246:67;11310:2;11305:3;11246:67;:::i;:::-;11239:74;;11343:34;11339:1;11334:3;11330:11;11323:55;11409:13;11404:2;11399:3;11395:12;11388:35;11449:2;11444:3;11440:12;11433:19;;11229:229;;;:::o;11464:382::-;;11627:67;11691:2;11686:3;11627:67;:::i;:::-;11620:74;;11724:34;11720:1;11715:3;11711:11;11704:55;11790:20;11785:2;11780:3;11776:12;11769:42;11837:2;11832:3;11828:12;11821:19;;11610:236;;;:::o;11852:370::-;;12015:67;12079:2;12074:3;12015:67;:::i;:::-;12008:74;;12112:34;12108:1;12103:3;12099:11;12092:55;12178:8;12173:2;12168:3;12164:12;12157:30;12213:2;12208:3;12204:12;12197:19;;11998:224;;;:::o;12228:326::-;;12391:67;12455:2;12450:3;12391:67;:::i;:::-;12384:74;;12488:30;12484:1;12479:3;12475:11;12468:51;12545:2;12540:3;12536:12;12529:19;;12374:180;;;:::o;12560:328::-;;12723:67;12787:2;12782:3;12723:67;:::i;:::-;12716:74;;12820:32;12816:1;12811:3;12807:11;12800:53;12879:2;12874:3;12870:12;12863:19;;12706:182;;;:::o;12894:368::-;;13057:67;13121:2;13116:3;13057:67;:::i;:::-;13050:74;;13154:34;13150:1;13145:3;13141:11;13134:55;13220:6;13215:2;13210:3;13206:12;13199:28;13253:2;13248:3;13244:12;13237:19;;13040:222;;;:::o;13268:323::-;;13431:67;13495:2;13490:3;13431:67;:::i;:::-;13424:74;;13528:27;13524:1;13519:3;13515:11;13508:48;13582:2;13577:3;13573:12;13566:19;;13414:177;;;:::o;13597:376::-;;13760:67;13824:2;13819:3;13760:67;:::i;:::-;13753:74;;13857:34;13853:1;13848:3;13844:11;13837:55;13923:14;13918:2;13913:3;13909:12;13902:36;13964:2;13959:3;13955:12;13948:19;;13743:230;;;:::o;13979:314::-;;14142:67;14206:2;14201:3;14142:67;:::i;:::-;14135:74;;14239:18;14235:1;14230:3;14226:11;14219:39;14284:2;14279:3;14275:12;14268:19;;14125:168;;;:::o;14299:388::-;;14462:67;14526:2;14521:3;14462:67;:::i;:::-;14455:74;;14559:34;14555:1;14550:3;14546:11;14539:55;14625:26;14620:2;14615:3;14611:12;14604:48;14678:2;14673:3;14669:12;14662:19;;14445:242;;;:::o;14693:374::-;;14856:67;14920:2;14915:3;14856:67;:::i;:::-;14849:74;;14953:34;14949:1;14944:3;14940:11;14933:55;15019:12;15014:2;15009:3;15005:12;14998:34;15058:2;15053:3;15049:12;15042:19;;14839:228;;;:::o;15073:373::-;;15236:67;15300:2;15295:3;15236:67;:::i;:::-;15229:74;;15333:34;15329:1;15324:3;15320:11;15313:55;15399:11;15394:2;15389:3;15385:12;15378:33;15437:2;15432:3;15428:12;15421:19;;15219:227;;;:::o;15452:330::-;;15615:67;15679:2;15674:3;15615:67;:::i;:::-;15608:74;;15712:34;15708:1;15703:3;15699:11;15692:55;15773:2;15768:3;15764:12;15757:19;;15598:184;;;:::o;15788:381::-;;15951:67;16015:2;16010:3;15951:67;:::i;:::-;15944:74;;16048:34;16044:1;16039:3;16035:11;16028:55;16114:19;16109:2;16104:3;16100:12;16093:41;16160:2;16155:3;16151:12;16144:19;;15934:235;;;:::o;16175:376::-;;16338:67;16402:2;16397:3;16338:67;:::i;:::-;16331:74;;16435:34;16431:1;16426:3;16422:11;16415:55;16501:14;16496:2;16491:3;16487:12;16480:36;16542:2;16537:3;16533:12;16526:19;;16321:230;;;:::o;16557:337::-;;16738:84;16820:1;16815:3;16738:84;:::i;:::-;16731:91;;16852:7;16848:1;16843:3;16839:11;16832:28;16886:1;16881:3;16877:11;16870:18;;16721:173;;;:::o;16900:330::-;;17063:67;17127:2;17122:3;17063:67;:::i;:::-;17056:74;;17160:34;17156:1;17151:3;17147:11;17140:55;17221:2;17216:3;17212:12;17205:19;;17046:184;;;:::o;17236:321::-;;17399:67;17463:2;17458:3;17399:67;:::i;:::-;17392:74;;17496:25;17492:1;17487:3;17483:11;17476:46;17548:2;17543:3;17539:12;17532:19;;17382:175;;;:::o;17563:373::-;;17726:67;17790:2;17785:3;17726:67;:::i;:::-;17719:74;;17823:34;17819:1;17814:3;17810:11;17803:55;17889:11;17884:2;17879:3;17875:12;17868:33;17927:2;17922:3;17918:12;17911:19;;17709:227;;;:::o;17942:379::-;;18105:67;18169:2;18164:3;18105:67;:::i;:::-;18098:74;;18202:34;18198:1;18193:3;18189:11;18182:55;18268:17;18263:2;18258:3;18254:12;18247:39;18312:2;18307:3;18303:12;18296:19;;18088:233;;;:::o;18327:328::-;;18490:67;18554:2;18549:3;18490:67;:::i;:::-;18483:74;;18587:32;18583:1;18578:3;18574:11;18567:53;18646:2;18641:3;18637:12;18630:19;;18473:182;;;:::o;18661:365::-;;18824:67;18888:2;18883:3;18824:67;:::i;:::-;18817:74;;18921:34;18917:1;18912:3;18908:11;18901:55;18987:3;18982:2;18977:3;18973:12;18966:25;19017:2;19012:3;19008:12;19001:19;;18807:219;;;:::o;19032:317::-;;19195:67;19259:2;19254:3;19195:67;:::i;:::-;19188:74;;19292:21;19288:1;19283:3;19279:11;19272:42;19340:2;19335:3;19331:12;19324:19;;19178:171;;;:::o;19355:381::-;;19518:67;19582:2;19577:3;19518:67;:::i;:::-;19511:74;;19615:34;19611:1;19606:3;19602:11;19595:55;19681:19;19676:2;19671:3;19667:12;19660:41;19727:2;19722:3;19718:12;19711:19;;19501:235;;;:::o;19742:376::-;;19905:67;19969:2;19964:3;19905:67;:::i;:::-;19898:74;;20002:34;19998:1;19993:3;19989:11;19982:55;20068:14;20063:2;20058:3;20054:12;20047:36;20109:2;20104:3;20100:12;20093:19;;19888:230;;;:::o;20124:311::-;;20287:67;20351:2;20346:3;20287:67;:::i;:::-;20280:74;;20384:15;20380:1;20375:3;20371:11;20364:36;20426:2;20421:3;20417:12;20410:19;;20270:165;;;:::o;20441:380::-;;20604:67;20668:2;20663:3;20604:67;:::i;:::-;20597:74;;20701:34;20697:1;20692:3;20688:11;20681:55;20767:18;20762:2;20757:3;20753:12;20746:40;20812:2;20807:3;20803:12;20796:19;;20587:234;;;:::o;20827:108::-;20904:24;20922:5;20904:24;:::i;:::-;20899:3;20892:37;20882:53;;:::o;20941:118::-;21028:24;21046:5;21028:24;:::i;:::-;21023:3;21016:37;21006:53;;:::o;21065:157::-;21170:45;21190:24;21208:5;21190:24;:::i;:::-;21170:45;:::i;:::-;21165:3;21158:58;21148:74;;:::o;21228:256::-;;21355:75;21426:3;21417:6;21355:75;:::i;:::-;21455:2;21450:3;21446:12;21439:19;;21475:3;21468:10;;21344:140;;;;:::o;21490:431::-;;21690:95;21781:3;21772:6;21690:95;:::i;:::-;21683:102;;21802:93;21891:3;21882:6;21802:93;:::i;:::-;21795:100;;21912:3;21905:10;;21672:249;;;;;:::o;21927:435::-;;22129:95;22220:3;22211:6;22129:95;:::i;:::-;22122:102;;22241:95;22332:3;22323:6;22241:95;:::i;:::-;22234:102;;22353:3;22346:10;;22111:251;;;;;:::o;22368:541::-;;22623:95;22714:3;22705:6;22623:95;:::i;:::-;22616:102;;22735:148;22879:3;22735:148;:::i;:::-;22728:155;;22900:3;22893:10;;22605:304;;;;:::o;22915:397::-;;23070:75;23141:3;23132:6;23070:75;:::i;:::-;23170:2;23165:3;23161:12;23154:19;;23183:75;23254:3;23245:6;23183:75;:::i;:::-;23283:2;23278:3;23274:12;23267:19;;23303:3;23296:10;;23059:253;;;;;:::o;23318:222::-;;23449:2;23438:9;23434:18;23426:26;;23462:71;23530:1;23519:9;23515:17;23506:6;23462:71;:::i;:::-;23416:124;;;;:::o;23546:640::-;;23779:3;23768:9;23764:19;23756:27;;23793:71;23861:1;23850:9;23846:17;23837:6;23793:71;:::i;:::-;23874:72;23942:2;23931:9;23927:18;23918:6;23874:72;:::i;:::-;23956;24024:2;24013:9;24009:18;24000:6;23956:72;:::i;:::-;24075:9;24069:4;24065:20;24060:2;24049:9;24045:18;24038:48;24103:76;24174:4;24165:6;24103:76;:::i;:::-;24095:84;;23746:440;;;;;;;:::o;24192:373::-;;24373:2;24362:9;24358:18;24350:26;;24422:9;24416:4;24412:20;24408:1;24397:9;24393:17;24386:47;24450:108;24553:4;24544:6;24450:108;:::i;:::-;24442:116;;24340:225;;;;:::o;24571:210::-;;24696:2;24685:9;24681:18;24673:26;;24709:65;24771:1;24760:9;24756:17;24747:6;24709:65;:::i;:::-;24663:118;;;;:::o;24787:222::-;;24918:2;24907:9;24903:18;24895:26;;24931:71;24999:1;24988:9;24984:17;24975:6;24931:71;:::i;:::-;24885:124;;;;:::o;25015:313::-;;25166:2;25155:9;25151:18;25143:26;;25215:9;25209:4;25205:20;25201:1;25190:9;25186:17;25179:47;25243:78;25316:4;25307:6;25243:78;:::i;:::-;25235:86;;25133:195;;;;:::o;25334:419::-;;25538:2;25527:9;25523:18;25515:26;;25587:9;25581:4;25577:20;25573:1;25562:9;25558:17;25551:47;25615:131;25741:4;25615:131;:::i;:::-;25607:139;;25505:248;;;:::o;25759:419::-;;25963:2;25952:9;25948:18;25940:26;;26012:9;26006:4;26002:20;25998:1;25987:9;25983:17;25976:47;26040:131;26166:4;26040:131;:::i;:::-;26032:139;;25930:248;;;:::o;26184:419::-;;26388:2;26377:9;26373:18;26365:26;;26437:9;26431:4;26427:20;26423:1;26412:9;26408:17;26401:47;26465:131;26591:4;26465:131;:::i;:::-;26457:139;;26355:248;;;:::o;26609:419::-;;26813:2;26802:9;26798:18;26790:26;;26862:9;26856:4;26852:20;26848:1;26837:9;26833:17;26826:47;26890:131;27016:4;26890:131;:::i;:::-;26882:139;;26780:248;;;:::o;27034:419::-;;27238:2;27227:9;27223:18;27215:26;;27287:9;27281:4;27277:20;27273:1;27262:9;27258:17;27251:47;27315:131;27441:4;27315:131;:::i;:::-;27307:139;;27205:248;;;:::o;27459:419::-;;27663:2;27652:9;27648:18;27640:26;;27712:9;27706:4;27702:20;27698:1;27687:9;27683:17;27676:47;27740:131;27866:4;27740:131;:::i;:::-;27732:139;;27630:248;;;:::o;27884:419::-;;28088:2;28077:9;28073:18;28065:26;;28137:9;28131:4;28127:20;28123:1;28112:9;28108:17;28101:47;28165:131;28291:4;28165:131;:::i;:::-;28157:139;;28055:248;;;:::o;28309:419::-;;28513:2;28502:9;28498:18;28490:26;;28562:9;28556:4;28552:20;28548:1;28537:9;28533:17;28526:47;28590:131;28716:4;28590:131;:::i;:::-;28582:139;;28480:248;;;:::o;28734:419::-;;28938:2;28927:9;28923:18;28915:26;;28987:9;28981:4;28977:20;28973:1;28962:9;28958:17;28951:47;29015:131;29141:4;29015:131;:::i;:::-;29007:139;;28905:248;;;:::o;29159:419::-;;29363:2;29352:9;29348:18;29340:26;;29412:9;29406:4;29402:20;29398:1;29387:9;29383:17;29376:47;29440:131;29566:4;29440:131;:::i;:::-;29432:139;;29330:248;;;:::o;29584:419::-;;29788:2;29777:9;29773:18;29765:26;;29837:9;29831:4;29827:20;29823:1;29812:9;29808:17;29801:47;29865:131;29991:4;29865:131;:::i;:::-;29857:139;;29755:248;;;:::o;30009:419::-;;30213:2;30202:9;30198:18;30190:26;;30262:9;30256:4;30252:20;30248:1;30237:9;30233:17;30226:47;30290:131;30416:4;30290:131;:::i;:::-;30282:139;;30180:248;;;:::o;30434:419::-;;30638:2;30627:9;30623:18;30615:26;;30687:9;30681:4;30677:20;30673:1;30662:9;30658:17;30651:47;30715:131;30841:4;30715:131;:::i;:::-;30707:139;;30605:248;;;:::o;30859:419::-;;31063:2;31052:9;31048:18;31040:26;;31112:9;31106:4;31102:20;31098:1;31087:9;31083:17;31076:47;31140:131;31266:4;31140:131;:::i;:::-;31132:139;;31030:248;;;:::o;31284:419::-;;31488:2;31477:9;31473:18;31465:26;;31537:9;31531:4;31527:20;31523:1;31512:9;31508:17;31501:47;31565:131;31691:4;31565:131;:::i;:::-;31557:139;;31455:248;;;:::o;31709:419::-;;31913:2;31902:9;31898:18;31890:26;;31962:9;31956:4;31952:20;31948:1;31937:9;31933:17;31926:47;31990:131;32116:4;31990:131;:::i;:::-;31982:139;;31880:248;;;:::o;32134:419::-;;32338:2;32327:9;32323:18;32315:26;;32387:9;32381:4;32377:20;32373:1;32362:9;32358:17;32351:47;32415:131;32541:4;32415:131;:::i;:::-;32407:139;;32305:248;;;:::o;32559:419::-;;32763:2;32752:9;32748:18;32740:26;;32812:9;32806:4;32802:20;32798:1;32787:9;32783:17;32776:47;32840:131;32966:4;32840:131;:::i;:::-;32832:139;;32730:248;;;:::o;32984:419::-;;33188:2;33177:9;33173:18;33165:26;;33237:9;33231:4;33227:20;33223:1;33212:9;33208:17;33201:47;33265:131;33391:4;33265:131;:::i;:::-;33257:139;;33155:248;;;:::o;33409:419::-;;33613:2;33602:9;33598:18;33590:26;;33662:9;33656:4;33652:20;33648:1;33637:9;33633:17;33626:47;33690:131;33816:4;33690:131;:::i;:::-;33682:139;;33580:248;;;:::o;33834:419::-;;34038:2;34027:9;34023:18;34015:26;;34087:9;34081:4;34077:20;34073:1;34062:9;34058:17;34051:47;34115:131;34241:4;34115:131;:::i;:::-;34107:139;;34005:248;;;:::o;34259:419::-;;34463:2;34452:9;34448:18;34440:26;;34512:9;34506:4;34502:20;34498:1;34487:9;34483:17;34476:47;34540:131;34666:4;34540:131;:::i;:::-;34532:139;;34430:248;;;:::o;34684:419::-;;34888:2;34877:9;34873:18;34865:26;;34937:9;34931:4;34927:20;34923:1;34912:9;34908:17;34901:47;34965:131;35091:4;34965:131;:::i;:::-;34957:139;;34855:248;;;:::o;35109:419::-;;35313:2;35302:9;35298:18;35290:26;;35362:9;35356:4;35352:20;35348:1;35337:9;35333:17;35326:47;35390:131;35516:4;35390:131;:::i;:::-;35382:139;;35280:248;;;:::o;35534:419::-;;35738:2;35727:9;35723:18;35715:26;;35787:9;35781:4;35777:20;35773:1;35762:9;35758:17;35751:47;35815:131;35941:4;35815:131;:::i;:::-;35807:139;;35705:248;;;:::o;35959:419::-;;36163:2;36152:9;36148:18;36140:26;;36212:9;36206:4;36202:20;36198:1;36187:9;36183:17;36176:47;36240:131;36366:4;36240:131;:::i;:::-;36232:139;;36130:248;;;:::o;36384:419::-;;36588:2;36577:9;36573:18;36565:26;;36637:9;36631:4;36627:20;36623:1;36612:9;36608:17;36601:47;36665:131;36791:4;36665:131;:::i;:::-;36657:139;;36555:248;;;:::o;36809:419::-;;37013:2;37002:9;36998:18;36990:26;;37062:9;37056:4;37052:20;37048:1;37037:9;37033:17;37026:47;37090:131;37216:4;37090:131;:::i;:::-;37082:139;;36980:248;;;:::o;37234:222::-;;37365:2;37354:9;37350:18;37342:26;;37378:71;37446:1;37435:9;37431:17;37422:6;37378:71;:::i;:::-;37332:124;;;;:::o;37462:283::-;;37528:2;37522:9;37512:19;;37570:4;37562:6;37558:17;37677:6;37665:10;37662:22;37641:18;37629:10;37626:34;37623:62;37620:2;;;37688:18;;:::i;:::-;37620:2;37728:10;37724:2;37717:22;37502:243;;;;:::o;37751:331::-;;37902:18;37894:6;37891:30;37888:2;;;37924:18;;:::i;:::-;37888:2;38009:4;38005:9;37998:4;37990:6;37986:17;37982:33;37974:41;;38070:4;38064;38060:15;38052:23;;37817:265;;;:::o;38088:332::-;;38240:18;38232:6;38229:30;38226:2;;;38262:18;;:::i;:::-;38226:2;38347:4;38343:9;38336:4;38328:6;38324:17;38320:33;38312:41;;38408:4;38402;38398:15;38390:23;;38155:265;;;:::o;38426:132::-;;38516:3;38508:11;;38546:4;38541:3;38537:14;38529:22;;38498:60;;;:::o;38564:114::-;;38665:5;38659:12;38649:22;;38638:40;;;:::o;38684:98::-;;38769:5;38763:12;38753:22;;38742:40;;;:::o;38788:99::-;;38874:5;38868:12;38858:22;;38847:40;;;:::o;38893:113::-;;38995:4;38990:3;38986:14;38978:22;;38968:38;;;:::o;39012:184::-;;39145:6;39140:3;39133:19;39185:4;39180:3;39176:14;39161:29;;39123:73;;;;:::o;39202:168::-;;39319:6;39314:3;39307:19;39359:4;39354:3;39350:14;39335:29;;39297:73;;;;:::o;39376:147::-;;39514:3;39499:18;;39489:34;;;;:::o;39529:169::-;;39647:6;39642:3;39635:19;39687:4;39682:3;39678:14;39663:29;;39625:73;;;;:::o;39704:148::-;;39843:3;39828:18;;39818:34;;;;:::o;39858:305::-;;39917:20;39935:1;39917:20;:::i;:::-;39912:25;;39951:20;39969:1;39951:20;:::i;:::-;39946:25;;40105:1;40037:66;40033:74;40030:1;40027:81;40024:2;;;40111:18;;:::i;:::-;40024:2;40155:1;40152;40148:9;40141:16;;39902:261;;;;:::o;40169:185::-;;40226:20;40244:1;40226:20;:::i;:::-;40221:25;;40260:20;40278:1;40260:20;:::i;:::-;40255:25;;40299:1;40289:2;;40304:18;;:::i;:::-;40289:2;40346:1;40343;40339:9;40334:14;;40211:143;;;;:::o;40360:348::-;;40423:20;40441:1;40423:20;:::i;:::-;40418:25;;40457:20;40475:1;40457:20;:::i;:::-;40452:25;;40645:1;40577:66;40573:74;40570:1;40567:81;40562:1;40555:9;40548:17;40544:105;40541:2;;;40652:18;;:::i;:::-;40541:2;40700:1;40697;40693:9;40682:20;;40408:300;;;;:::o;40714:191::-;;40774:20;40792:1;40774:20;:::i;:::-;40769:25;;40808:20;40826:1;40808:20;:::i;:::-;40803:25;;40847:1;40844;40841:8;40838:2;;;40852:18;;:::i;:::-;40838:2;40897:1;40894;40890:9;40882:17;;40759:146;;;;:::o;40911:96::-;;40977:24;40995:5;40977:24;:::i;:::-;40966:35;;40956:51;;;:::o;41013:90::-;;41090:5;41083:13;41076:21;41065:32;;41055:48;;;:::o;41109:77::-;;41175:5;41164:16;;41154:32;;;:::o;41192:149::-;;41268:66;41261:5;41257:78;41246:89;;41236:105;;;:::o;41347:126::-;;41424:42;41417:5;41413:54;41402:65;;41392:81;;;:::o;41479:77::-;;41545:5;41534:16;;41524:32;;;:::o;41562:154::-;41646:6;41641:3;41636;41623:30;41708:1;41699:6;41694:3;41690:16;41683:27;41613:103;;;:::o;41722:307::-;41790:1;41800:113;41814:6;41811:1;41808:13;41800:113;;;41899:1;41894:3;41890:11;41884:18;41880:1;41875:3;41871:11;41864:39;41836:2;41833:1;41829:10;41824:15;;41800:113;;;41931:6;41928:1;41925:13;41922:2;;;42011:1;42002:6;41997:3;41993:16;41986:27;41922:2;41771:258;;;;:::o;42035:320::-;;42116:1;42110:4;42106:12;42096:22;;42163:1;42157:4;42153:12;42184:18;42174:2;;42240:4;42232:6;42228:17;42218:27;;42174:2;42302;42294:6;42291:14;42271:18;42268:38;42265:2;;;42321:18;;:::i;:::-;42265:2;42086:269;;;;:::o;42361:233::-;;42423:24;42441:5;42423:24;:::i;:::-;42414:33;;42469:66;42462:5;42459:77;42456:2;;;42539:18;;:::i;:::-;42456:2;42586:1;42579:5;42575:13;42568:20;;42404:190;;;:::o;42600:100::-;;42668:26;42688:5;42668:26;:::i;:::-;42657:37;;42647:53;;;:::o;42706:94::-;;42774:20;42788:5;42774:20;:::i;:::-;42763:31;;42753:47;;;:::o;42806:79::-;;42874:5;42863:16;;42853:32;;;:::o;42891:176::-;;42940:20;42958:1;42940:20;:::i;:::-;42935:25;;42974:20;42992:1;42974:20;:::i;:::-;42969:25;;43013:1;43003:2;;43018:18;;:::i;:::-;43003:2;43059:1;43056;43052:9;43047:14;;42925:142;;;;:::o;43073:180::-;43121:77;43118:1;43111:88;43218:4;43215:1;43208:15;43242:4;43239:1;43232:15;43259:180;43307:77;43304:1;43297:88;43404:4;43401:1;43394:15;43428:4;43425:1;43418:15;43445:180;43493:77;43490:1;43483:88;43590:4;43587:1;43580:15;43614:4;43611:1;43604:15;43631:180;43679:77;43676:1;43669:88;43776:4;43773:1;43766:15;43800:4;43797:1;43790:15;43817:102;;43909:2;43905:7;43900:2;43893:5;43889:14;43885:28;43875:38;;43865:54;;;:::o;43925:94::-;;44006:5;44002:2;43998:14;43977:35;;43967:52;;;:::o;44025:122::-;44098:24;44116:5;44098:24;:::i;:::-;44091:5;44088:35;44078:2;;44137:1;44134;44127:12;44078:2;44068:79;:::o;44153:116::-;44223:21;44238:5;44223:21;:::i;:::-;44216:5;44213:32;44203:2;;44259:1;44256;44249:12;44203:2;44193:76;:::o;44275:122::-;44348:24;44366:5;44348:24;:::i;:::-;44341:5;44338:35;44328:2;;44387:1;44384;44377:12;44328:2;44318:79;:::o;44403:120::-;44475:23;44492:5;44475:23;:::i;:::-;44468:5;44465:34;44455:2;;44513:1;44510;44503:12;44455:2;44445:78;:::o;44529:122::-;44602:24;44620:5;44602:24;:::i;:::-;44595:5;44592:35;44582:2;;44641:1;44638;44631:12;44582:2;44572:79;:::o

Swarm Source

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