ETH Price: $3,258.74 (-0.30%)
Gas: 1 Gwei

Token

KarmaBear (KBR)
 

Overview

Max Total Supply

101 KBR

Holders

71

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
demigodik.eth
Balance
1 KBR
0xac71bc782fff0034675e08130f3b9cc9e605d022
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:
KarmaBears

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _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}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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)
        }
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/KarmaBear/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    if(!_exists(updatedIndex) ){
                        emit Transfer(address(0), to, updatedIndex);
                    }
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    if(!_exists(updatedIndex)){
                        emit Transfer(address(0), to, updatedIndex++);
                    }
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    function _mintById(
        address to,
        uint256 quantity,
        bool safe,
        uint256 tokenId,
        bytes memory _data
    ) internal {
        uint256 startTokenId = tokenId;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;

            if (safe && to.isContract()) {
   
                emit Transfer(address(0), to, tokenId);
                if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } 
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: contracts/KarmaBear/KarmaBears.sol


pragma solidity >=0.4.22 <0.9.0;




contract KarmaBears is ERC721A, Ownable {
    using Strings for uint256;

    mapping(address => uint256) public mintCountByAddress;
    mapping(address => uint256) public mintCountByAddressFreeMint;

    bytes32 public merkleTreeRootPresale;
    bytes32 public merkleTreeRootFreeMint;

    uint256 public preSaleCost = 0.05 ether;
    uint256 public publicSaleCost = 0.08 ether;
    uint256 public maxMintPerWallet = 4;

    uint256 private publicSaleMinted = 0;
    uint256 private preSaleMinted = 0;
    uint256 private freeSaleMinted = 0;

    uint256 public TOTAL_SUPPLY = 4444;
    uint256 public FREE_SUPPLY = 444;
    uint256 public WL_SUPPLY = 2000;

    bool public isPaused = true;
    bool public isRevealed = false;
    bool public isPresaleActive = false;
    bool public isFreeMintActive = false;
    bool public isPublicMintActive = false;
    string public baseURI = "";
    string public notRevealedUri;

    constructor() ERC721A("KarmaBear", "KBR") {}

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

    function totalMinted() public view returns (uint256) {
        return _totalMinted();
    }

    function preSaleMint(uint256 quantity, bytes32[] memory proof)
        public
        payable
    {
        require(!isPaused, "Minting is Paused!");
        require(isPresaleActive, "Presale is not active");
        require(mintCountByAddress[msg.sender]+quantity<=maxMintPerWallet, "Max Mint Per Wallet Reached");
        require(isValidPresale(proof, msg.sender), "You Are Not Whitelisted");
        require(
            totalMinted() + quantity <= TOTAL_SUPPLY,
            "Exceeds TOTAL Mint supply"
        );
        require(
            preSaleMinted + quantity <= WL_SUPPLY,
            "Exceeds WL Mint supply"
        );
        require(msg.value == preSaleCost * quantity, "Value is Not Correct");
        _safeMint(msg.sender, quantity);
        preSaleMinted += quantity;
        mintCountByAddress[msg.sender] += quantity;
    }

    function freeSaleMint(bytes32[] memory proof) public {
        require(!isPaused, "Minting is Paused!");
        require(isFreeMintActive, "Freesale is not active");
        require(mintCountByAddressFreeMint[msg.sender] <1 ,"You Have Already Used Free Mint");
        require(isValidFreeMint(proof, msg.sender), "You Are Not Allowed For Free Sale Mint");
        require(
            freeSaleMinted + 1 <= FREE_SUPPLY,
            "Exceeds FREE Mint supply"
        );
        _safeMint(msg.sender, 1);
        freeSaleMinted += 1;
        mintCountByAddressFreeMint[msg.sender] += 1;
    }

    function publicSaleMint(uint256 quantity) public payable {
        require(!isPaused, "Minting is Paused!");
        require(isPublicMintActive, "Public sale is not active");
        require(mintCountByAddress[msg.sender]+quantity<=maxMintPerWallet, "Max Mint Per Wallet Reached");
        require(msg.value == publicSaleCost * quantity, "Value is Not Correct");
        require(
            totalMinted() + quantity <= TOTAL_SUPPLY,
            "Exceeds TOTAL Mint supply"
        );
        _safeMint(msg.sender, quantity);
        publicSaleMinted += quantity;
        mintCountByAddress[msg.sender] += quantity;
    }

    function adminMint(uint256 quantity) public onlyOwner {
        require(
            totalMinted() + quantity <= TOTAL_SUPPLY,
            "Exceeds TOTAL Mint supply"
        );
        _safeMint(msg.sender, quantity);
        publicSaleMinted += quantity;
    }

    function giveAway(address winnerAddress) public onlyOwner {
        require(
            totalMinted() + 1 <= TOTAL_SUPPLY,
            "Exceeds TOTAL Mint supply"
        );
        require(
            freeSaleMinted + 1 <= FREE_SUPPLY,
            "Exceeds FREE Mint supply"
        );
        _safeMint(winnerAddress, 1);
        freeSaleMinted += 1;
    }

    function isValidPresale(bytes32[] memory proof, address sender) internal view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(sender));
        return MerkleProof.verify(proof, merkleTreeRootPresale, leaf);
    }

    function isValidFreeMint(bytes32[] memory proof, address sender) internal view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(sender));
        return MerkleProof.verify(proof, merkleTreeRootFreeMint, leaf);
    }

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

    function withdraw() external onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os, "Withdraw failed!");
    }

    function setMerkleTreeRootPresale(bytes32 _merkleTreeRoot) public onlyOwner {
        merkleTreeRootPresale = _merkleTreeRoot;
    }

    function setMerkleTreeRootFreeMint(bytes32 _merkleTreeRoot) public onlyOwner {
        merkleTreeRootFreeMint = _merkleTreeRoot;
    }

    function setPaused(bool _state) public onlyOwner {
        isPaused = _state;
    }

    function setMaxMintPerWallet(uint256 _maxMintPerWallet) public onlyOwner {
        maxMintPerWallet = _maxMintPerWallet;
    }
    
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

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

    function setRevealed(bool _state) public onlyOwner {
        isRevealed = _state;
    }

    function setPresaleCost(uint256 _newCost) public onlyOwner {
        preSaleCost = _newCost;
    }

    function setPublicSaleCost(uint256 _newCost) public onlyOwner {
        publicSaleCost = _newCost;
    }

    function setFreeSaleMint(bool _status) public onlyOwner {
        isFreeMintActive = _status;
        isPresaleActive = false;
        isPublicMintActive = false;
    }

    function setPresaleMint(bool _status) public onlyOwner {
        isPresaleActive = _status;
        isFreeMintActive = false;
        isPublicMintActive = false;
    }

    function setPublicSaleMint(bool _status) public onlyOwner {
        isPublicMintActive = _status;
        isFreeMintActive = false;
        isPresaleActive = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeSaleMint","outputs":[],"stateMutability":"nonpayable","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":"winnerAddress","type":"address"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleTreeRootFreeMint","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleTreeRootPresale","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCountByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCountByAddressFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"preSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setFreeSaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerWallet","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleTreeRoot","type":"bytes32"}],"name":"setMerkleTreeRootFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleTreeRoot","type":"bytes32"}],"name":"setMerkleTreeRootPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPresaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPublicSaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec50000600d5567011c37937e080000600e556004600f5560006010556000601155600060125561115c6013556101bc6014556107d06015556001601660006101000a81548160ff0219169083151502179055506000601660016101000a81548160ff0219169083151502179055506000601660026101000a81548160ff0219169083151502179055506000601660036101000a81548160ff0219169083151502179055506000601660046101000a81548160ff0219169083151502179055506040518060200160405280600081525060179080519060200190620000ef929190620002b1565b50348015620000fd57600080fd5b506040518060400160405280600981526020017f4b61726d614265617200000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b42520000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000182929190620002b1565b5080600390805190602001906200019b929190620002b1565b50620001ac620001da60201b60201c565b6000819055505050620001d4620001c8620001e360201b60201c565b620001eb60201b60201c565b620003c6565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002bf9062000361565b90600052602060002090601f016020900481019282620002e357600085556200032f565b82601f10620002fe57805160ff19168380011785556200032f565b828001600101855582156200032f579182015b828111156200032e57825182559160200191906001019062000311565b5b5090506200033e919062000342565b5090565b5b808211156200035d57600081600090555060010162000343565b5090565b600060028204905060018216806200037a57607f821691505b6020821081141562000391576200039062000397565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614bf480620003d66000396000f3fe60806040526004361061031a5760003560e01c8063902d55a5116101ab578063bbe49bb0116100f7578063da0da33c11610095578063ec9191091161006f578063ec91910914610b6c578063f2c4ce1e14610b97578063f2fde38b14610bc0578063f8adb42914610be95761031a565b8063da0da33c14610add578063e0a8085314610b06578063e985e9c514610b2f5761031a565b8063c4fe8f49116100d1578063c4fe8f4914610a23578063c754164214610a4c578063c87b56dd14610a75578063cc9ff9c614610ab25761031a565b8063bbe49bb0146109a8578063bc16a0ae146109d1578063c1f26123146109fa5761031a565b8063a2309ff811610164578063b187bd261161013e578063b187bd261461090d578063b228d92514610938578063b3ab66b014610963578063b88d4fde1461097f5761031a565b8063a2309ff81461088e578063afdf6134146108b9578063afe2e1fa146108e25761031a565b8063902d55a51461079057806395d89b41146107bb57806397a900f6146107e65780639858cf19146108115780639e2407851461083c578063a22cb465146108655761031a565b80634b0049671161026a5780636c0360eb116102235780637a5b85c1116101fd5780637a5b85c1146106e85780638da5cb5b146107135780638dbb7c061461073e5780638fdcf942146107675761031a565b80636c0360eb1461066957806370a0823114610694578063715018a6146106d15761031a565b80634b004967146105685780634c220f6e1461059157806354214f69146105ad57806355f804b3146105d857806360d938dc146106015780636352211e1461062c5761031a565b806317885b3b116102d75780632d6b6224116102b15780632d6b6224146104d25780633ccfd60b146104fd57806342842e0e14610514578063453afb0f1461053d5761031a565b806317885b3b1461044157806318160ddd1461047e57806323b872dd146104a95761031a565b806301ffc9a71461031f57806306fdde031461035c578063081812fc14610387578063081c8c44146103c4578063095ea7b3146103ef57806316c38b3c14610418575b600080fd5b34801561032b57600080fd5b5061034660048036038101906103419190613be9565b610c26565b6040516103539190614147565b60405180910390f35b34801561036857600080fd5b50610371610d08565b60405161037e919061417d565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190613c8c565b610d9a565b6040516103bb91906140e0565b60405180910390f35b3480156103d057600080fd5b506103d9610e16565b6040516103e6919061417d565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190613b06565b610ea4565b005b34801561042457600080fd5b5061043f600480360381019061043a9190613b8f565b610faf565b005b34801561044d57600080fd5b5061046860048036038101906104639190613983565b610fd4565b604051610475919061439f565b60405180910390f35b34801561048a57600080fd5b50610493610fec565b6040516104a0919061439f565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906139f0565b611003565b005b3480156104de57600080fd5b506104e7611013565b6040516104f49190614147565b60405180910390f35b34801561050957600080fd5b50610512611026565b005b34801561052057600080fd5b5061053b600480360381019061053691906139f0565b6110e4565b005b34801561054957600080fd5b50610552611104565b60405161055f919061439f565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190613b8f565b61110a565b005b6105ab60048036038101906105a69190613cb9565b611165565b005b3480156105b957600080fd5b506105c2611451565b6040516105cf9190614147565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613c43565b611464565b005b34801561060d57600080fd5b50610616611486565b6040516106239190614147565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190613c8c565b611499565b60405161066091906140e0565b60405180910390f35b34801561067557600080fd5b5061067e6114af565b60405161068b919061417d565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190613983565b61153d565b6040516106c8919061439f565b60405180910390f35b3480156106dd57600080fd5b506106e661160d565b005b3480156106f457600080fd5b506106fd611621565b60405161070a9190614147565b60405180910390f35b34801561071f57600080fd5b50610728611634565b60405161073591906140e0565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190613c8c565b61165e565b005b34801561077357600080fd5b5061078e60048036038101906107899190613c8c565b611670565b005b34801561079c57600080fd5b506107a5611682565b6040516107b2919061439f565b60405180910390f35b3480156107c757600080fd5b506107d0611688565b6040516107dd919061417d565b60405180910390f35b3480156107f257600080fd5b506107fb61171a565b6040516108089190614162565b60405180910390f35b34801561081d57600080fd5b50610826611720565b604051610833919061439f565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e9190613983565b611726565b005b34801561087157600080fd5b5061088c60048036038101906108879190613ac6565b611801565b005b34801561089a57600080fd5b506108a3611979565b6040516108b0919061439f565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190613c8c565b611988565b005b3480156108ee57600080fd5b506108f761199a565b604051610904919061439f565b60405180910390f35b34801561091957600080fd5b506109226119a0565b60405161092f9190614147565b60405180910390f35b34801561094457600080fd5b5061094d6119b3565b60405161095a919061439f565b60405180910390f35b61097d60048036038101906109789190613c8c565b6119b9565b005b34801561098b57600080fd5b506109a660048036038101906109a19190613a43565b611c09565b005b3480156109b457600080fd5b506109cf60048036038101906109ca9190613b8f565b611c85565b005b3480156109dd57600080fd5b506109f860048036038101906109f39190613bbc565b611ce0565b005b348015610a0657600080fd5b50610a216004803603810190610a1c9190613c8c565b611cf2565b005b348015610a2f57600080fd5b50610a4a6004803603810190610a459190613b46565b611d77565b005b348015610a5857600080fd5b50610a736004803603810190610a6e9190613bbc565b611fb3565b005b348015610a8157600080fd5b50610a9c6004803603810190610a979190613c8c565b611fc5565b604051610aa9919061417d565b60405180910390f35b348015610abe57600080fd5b50610ac7612113565b604051610ad4919061439f565b60405180910390f35b348015610ae957600080fd5b50610b046004803603810190610aff9190613b8f565b612119565b005b348015610b1257600080fd5b50610b2d6004803603810190610b289190613b8f565b612174565b005b348015610b3b57600080fd5b50610b566004803603810190610b5191906139b0565b612199565b604051610b639190614147565b60405180910390f35b348015610b7857600080fd5b50610b8161222d565b604051610b8e9190614162565b60405180910390f35b348015610ba357600080fd5b50610bbe6004803603810190610bb99190613c43565b612233565b005b348015610bcc57600080fd5b50610be76004803603810190610be29190613983565b612255565b005b348015610bf557600080fd5b50610c106004803603810190610c0b9190613983565b6122d9565b604051610c1d919061439f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cf157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d015750610d00826122f1565b5b9050919050565b606060028054610d179061462b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d439061462b565b8015610d905780601f10610d6557610100808354040283529160200191610d90565b820191906000526020600020905b815481529060010190602001808311610d7357829003601f168201915b5050505050905090565b6000610da58261235b565b610ddb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60188054610e239061462b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4f9061462b565b8015610e9c5780601f10610e7157610100808354040283529160200191610e9c565b820191906000526020600020905b815481529060010190602001808311610e7f57829003601f168201915b505050505081565b6000610eaf82611499565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f17576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f366123a9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f685750610f6681610f616123a9565b612199565b155b15610f9f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610faa8383836123b1565b505050565b610fb7612463565b80601660006101000a81548160ff02191690831515021790555050565b60096020528060005260406000206000915090505481565b6000610ff66124e1565b6001546000540303905090565b61100e8383836124ea565b505050565b601660049054906101000a900460ff1681565b61102e612463565b6000611038611634565b73ffffffffffffffffffffffffffffffffffffffff164760405161105b906140cb565b60006040518083038185875af1925050503d8060008114611098576040519150601f19603f3d011682016040523d82523d6000602084013e61109d565b606091505b50509050806110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d89061425f565b60405180910390fd5b50565b6110ff83838360405180602001604052806000815250611c09565b505050565b600e5481565b611112612463565b80601660046101000a81548160ff0219169083151502179055506000601660036101000a81548160ff0219169083151502179055506000601660026101000a81548160ff02191690831515021790555050565b601660009054906101000a900460ff16156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac9061435f565b60405180910390fd5b601660029054906101000a900460ff16611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb9061431f565b60405180910390fd5b600f5482600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461125291906144bb565b1115611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a906142bf565b60405180910390fd5b61129d81336129a0565b6112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d39061421f565b60405180910390fd5b601354826112e8611979565b6112f291906144bb565b1115611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a9061437f565b60405180910390fd5b6015548260115461134491906144bb565b1115611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c9061427f565b60405180910390fd5b81600d546113939190614511565b34146113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb906141ff565b60405180910390fd5b6113de33836129e2565b81601160008282546113f091906144bb565b9250508190555081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144691906144bb565b925050819055505050565b601660019054906101000a900460ff1681565b61146c612463565b80601790805190602001906114829291906136a1565b5050565b601660029054906101000a900460ff1681565b60006114a482612a00565b600001519050919050565b601780546114bc9061462b565b80601f01602080910402602001604051908101604052809291908181526020018280546114e89061462b565b80156115355780601f1061150a57610100808354040283529160200191611535565b820191906000526020600020905b81548152906001019060200180831161151857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611615612463565b61161f6000612c8f565b565b601660039054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611666612463565b80600e8190555050565b611678612463565b80600d8190555050565b60135481565b6060600380546116979061462b565b80601f01602080910402602001604051908101604052809291908181526020018280546116c39061462b565b80156117105780601f106116e557610100808354040283529160200191611710565b820191906000526020600020905b8154815290600101906020018083116116f357829003601f168201915b5050505050905090565b600b5481565b60145481565b61172e612463565b601354600161173b611979565b61174591906144bb565b1115611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d9061437f565b60405180910390fd5b601454600160125461179891906144bb565b11156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061433f565b60405180910390fd5b6117e48160016129e2565b6001601260008282546117f791906144bb565b9250508190555050565b6118096123a9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561186e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061187b6123a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119286123a9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161196d9190614147565b60405180910390a35050565b6000611983612d55565b905090565b611990612463565b80600f8190555050565b60155481565b601660009054906101000a900460ff1681565b600f5481565b601660009054906101000a900460ff1615611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a009061435f565b60405180910390fd5b601660049054906101000a900460ff16611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f9061423f565b60405180910390fd5b600f5481600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa691906144bb565b1115611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade906142bf565b60405180910390fd5b80600e54611af59190614511565b3414611b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2d906141ff565b60405180910390fd5b60135481611b42611979565b611b4c91906144bb565b1115611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b849061437f565b60405180910390fd5b611b9733826129e2565b8060106000828254611ba991906144bb565b9250508190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bff91906144bb565b9250508190555050565b611c148484846124ea565b611c338373ffffffffffffffffffffffffffffffffffffffff16612d68565b8015611c485750611c4684848484612d8b565b155b15611c7f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611c8d612463565b80601660026101000a81548160ff0219169083151502179055506000601660036101000a81548160ff0219169083151502179055506000601660046101000a81548160ff02191690831515021790555050565b611ce8612463565b80600c8190555050565b611cfa612463565b60135481611d06611979565b611d1091906144bb565b1115611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d489061437f565b60405180910390fd5b611d5b33826129e2565b8060106000828254611d6d91906144bb565b9250508190555050565b601660009054906101000a900460ff1615611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe9061435f565b60405180910390fd5b601660039054906101000a900460ff16611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d906141df565b60405180910390fd5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f906142ff565b60405180910390fd5b611ea28133612eeb565b611ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed8906141bf565b60405180910390fd5b6014546001601254611ef391906144bb565b1115611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b9061433f565b60405180910390fd5b611f3f3360016129e2565b600160126000828254611f5291906144bb565b925050819055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa991906144bb565b9250508190555050565b611fbb612463565b80600b8190555050565b6060611fd08261235b565b61200f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612006906142df565b60405180910390fd5b601660019054906101000a900460ff166120b557601880546120309061462b565b80601f016020809104026020016040519081016040528092919081815260200182805461205c9061462b565b80156120a95780601f1061207e576101008083540402835291602001916120a9565b820191906000526020600020905b81548152906001019060200180831161208c57829003601f168201915b5050505050905061210e565b60006120bf612f2d565b905060008151116120df576040518060200160405280600081525061210a565b806120e984612fbf565b6040516020016120fa92919061409c565b6040516020818303038152906040525b9150505b919050565b600d5481565b612121612463565b80601660036101000a81548160ff0219169083151502179055506000601660026101000a81548160ff0219169083151502179055506000601660046101000a81548160ff02191690831515021790555050565b61217c612463565b80601660016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b61223b612463565b80601890805190602001906122519291906136a1565b5050565b61225d612463565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c49061419f565b60405180910390fd5b6122d681612c8f565b50565b600a6020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816123666124e1565b11158015612375575060005482105b80156123a2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61246b6123a9565b73ffffffffffffffffffffffffffffffffffffffff16612489611634565b73ffffffffffffffffffffffffffffffffffffffff16146124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d69061429f565b60405180910390fd5b565b60006001905090565b60006124f582612a00565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612560576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166125816123a9565b73ffffffffffffffffffffffffffffffffffffffff1614806125b057506125af856125aa6123a9565b612199565b5b806125f557506125be6123a9565b73ffffffffffffffffffffffffffffffffffffffff166125dd84610d9a565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061262e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612695576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126a28585856001613097565b6126ae600084876123b1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561292e57600054821461292d57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612999858585600161309d565b5050505050565b600080826040516020016129b49190614081565b6040516020818303038152906040528051906020012090506129d984600b54836130a3565b91505092915050565b6129fc8282604051806020016040528060008152506130ba565b5050565b612a08613727565b600082905080612a166124e1565b11158015612a25575060005481105b15612c58576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c5657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b3a578092505050612c8a565b5b600115612c5557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c50578092505050612c8a565b612b3b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612d5f6124e1565b60005403905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612db16123a9565b8786866040518563ffffffff1660e01b8152600401612dd394939291906140fb565b602060405180830381600087803b158015612ded57600080fd5b505af1925050508015612e1e57506040513d601f19601f82011682018060405250810190612e1b9190613c16565b60015b612e98573d8060008114612e4e576040519150601f19603f3d011682016040523d82523d6000602084013e612e53565b606091505b50600081511415612e90576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008082604051602001612eff9190614081565b604051602081830303815290604052805190602001209050612f2484600c54836130a3565b91505092915050565b606060178054612f3c9061462b565b80601f0160208091040260200160405190810160405280929190818152602001828054612f689061462b565b8015612fb55780601f10612f8a57610100808354040283529160200191612fb5565b820191906000526020600020905b815481529060010190602001808311612f9857829003601f168201915b5050505050905090565b606060006001612fce846130cc565b01905060008167ffffffffffffffff811115612fed57612fec6147b7565b5b6040519080825280601f01601f19166020018201604052801561301f5781602001600182028036833780820191505090505b509050600082602001820190505b60011561308c578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816130765761307561472a565b5b04945060008514156130875761308c565b61302d565b819350505050919050565b50505050565b50505050565b6000826130b0858461321f565b1490509392505050565b6130c78383836001613275565b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061312a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816131205761311f61472a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613167576d04ee2d6d415b85acef8100000000838161315d5761315c61472a565b5b0492506020810190505b662386f26fc10000831061319657662386f26fc10000838161318c5761318b61472a565b5b0492506010810190505b6305f5e10083106131bf576305f5e10083816131b5576131b461472a565b5b0492506008810190505b61271083106131e45761271083816131da576131d961472a565b5b0492506004810190505b6064831061320757606483816131fd576131fc61472a565b5b0492506002810190505b600a8310613216576001810190505b80915050919050565b60008082905060005b845181101561326a576132558286838151811061324857613247614788565b5b602002602001015161365f565b915080806132629061468e565b915050613228565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156132e2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561331d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61332a6000868387613097565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156134f457506134f38773ffffffffffffffffffffffffffffffffffffffff16612d68565b5b156135c8575b6135038261235b565b61356457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b6135776000888480600101955088612d8b565b6135ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156134fa5782600054146135c357600080fd5b613642565b5b6135d28261235b565b61363957818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b808214156135c9575b816000819055505050613658600086838761309d565b5050505050565b600081831061367757613672828461368a565b613682565b613681838361368a565b5b905092915050565b600082600052816020526040600020905092915050565b8280546136ad9061462b565b90600052602060002090601f0160209004810192826136cf5760008555613716565b82601f106136e857805160ff1916838001178555613716565b82800160010185558215613716579182015b828111156137155782518255916020019190600101906136fa565b5b509050613723919061376a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561378357600081600090555060010161376b565b5090565b600061379a613795846143df565b6143ba565b905080838252602082019050828560208602820111156137bd576137bc6147eb565b5b60005b858110156137ed57816137d388826138d3565b8452602084019350602083019250506001810190506137c0565b5050509392505050565b600061380a6138058461440b565b6143ba565b905082815260208101848484011115613826576138256147f0565b5b6138318482856145e9565b509392505050565b600061384c6138478461443c565b6143ba565b905082815260208101848484011115613868576138676147f0565b5b6138738482856145e9565b509392505050565b60008135905061388a81614b4b565b92915050565b600082601f8301126138a5576138a46147e6565b5b81356138b5848260208601613787565b91505092915050565b6000813590506138cd81614b62565b92915050565b6000813590506138e281614b79565b92915050565b6000813590506138f781614b90565b92915050565b60008151905061390c81614b90565b92915050565b600082601f830112613927576139266147e6565b5b81356139378482602086016137f7565b91505092915050565b600082601f830112613955576139546147e6565b5b8135613965848260208601613839565b91505092915050565b60008135905061397d81614ba7565b92915050565b600060208284031215613999576139986147fa565b5b60006139a78482850161387b565b91505092915050565b600080604083850312156139c7576139c66147fa565b5b60006139d58582860161387b565b92505060206139e68582860161387b565b9150509250929050565b600080600060608486031215613a0957613a086147fa565b5b6000613a178682870161387b565b9350506020613a288682870161387b565b9250506040613a398682870161396e565b9150509250925092565b60008060008060808587031215613a5d57613a5c6147fa565b5b6000613a6b8782880161387b565b9450506020613a7c8782880161387b565b9350506040613a8d8782880161396e565b925050606085013567ffffffffffffffff811115613aae57613aad6147f5565b5b613aba87828801613912565b91505092959194509250565b60008060408385031215613add57613adc6147fa565b5b6000613aeb8582860161387b565b9250506020613afc858286016138be565b9150509250929050565b60008060408385031215613b1d57613b1c6147fa565b5b6000613b2b8582860161387b565b9250506020613b3c8582860161396e565b9150509250929050565b600060208284031215613b5c57613b5b6147fa565b5b600082013567ffffffffffffffff811115613b7a57613b796147f5565b5b613b8684828501613890565b91505092915050565b600060208284031215613ba557613ba46147fa565b5b6000613bb3848285016138be565b91505092915050565b600060208284031215613bd257613bd16147fa565b5b6000613be0848285016138d3565b91505092915050565b600060208284031215613bff57613bfe6147fa565b5b6000613c0d848285016138e8565b91505092915050565b600060208284031215613c2c57613c2b6147fa565b5b6000613c3a848285016138fd565b91505092915050565b600060208284031215613c5957613c586147fa565b5b600082013567ffffffffffffffff811115613c7757613c766147f5565b5b613c8384828501613940565b91505092915050565b600060208284031215613ca257613ca16147fa565b5b6000613cb08482850161396e565b91505092915050565b60008060408385031215613cd057613ccf6147fa565b5b6000613cde8582860161396e565b925050602083013567ffffffffffffffff811115613cff57613cfe6147f5565b5b613d0b85828601613890565b9150509250929050565b613d1e8161456b565b82525050565b613d35613d308261456b565b6146d7565b82525050565b613d448161457d565b82525050565b613d5381614589565b82525050565b6000613d648261446d565b613d6e8185614483565b9350613d7e8185602086016145f8565b613d87816147ff565b840191505092915050565b6000613d9d82614478565b613da7818561449f565b9350613db78185602086016145f8565b613dc0816147ff565b840191505092915050565b6000613dd682614478565b613de081856144b0565b9350613df08185602086016145f8565b80840191505092915050565b6000613e0960268361449f565b9150613e148261481d565b604082019050919050565b6000613e2c60268361449f565b9150613e378261486c565b604082019050919050565b6000613e4f60168361449f565b9150613e5a826148bb565b602082019050919050565b6000613e7260148361449f565b9150613e7d826148e4565b602082019050919050565b6000613e9560178361449f565b9150613ea08261490d565b602082019050919050565b6000613eb860198361449f565b9150613ec382614936565b602082019050919050565b6000613edb60108361449f565b9150613ee68261495f565b602082019050919050565b6000613efe60168361449f565b9150613f0982614988565b602082019050919050565b6000613f216005836144b0565b9150613f2c826149b1565b600582019050919050565b6000613f4460208361449f565b9150613f4f826149da565b602082019050919050565b6000613f67601b8361449f565b9150613f7282614a03565b602082019050919050565b6000613f8a602f8361449f565b9150613f9582614a2c565b604082019050919050565b6000613fad601f8361449f565b9150613fb882614a7b565b602082019050919050565b6000613fd0600083614494565b9150613fdb82614aa4565b600082019050919050565b6000613ff360158361449f565b9150613ffe82614aa7565b602082019050919050565b600061401660188361449f565b915061402182614ad0565b602082019050919050565b600061403960128361449f565b915061404482614af9565b602082019050919050565b600061405c60198361449f565b915061406782614b22565b602082019050919050565b61407b816145df565b82525050565b600061408d8284613d24565b60148201915081905092915050565b60006140a88285613dcb565b91506140b48284613dcb565b91506140bf82613f14565b91508190509392505050565b60006140d682613fc3565b9150819050919050565b60006020820190506140f56000830184613d15565b92915050565b60006080820190506141106000830187613d15565b61411d6020830186613d15565b61412a6040830185614072565b818103606083015261413c8184613d59565b905095945050505050565b600060208201905061415c6000830184613d3b565b92915050565b60006020820190506141776000830184613d4a565b92915050565b600060208201905081810360008301526141978184613d92565b905092915050565b600060208201905081810360008301526141b881613dfc565b9050919050565b600060208201905081810360008301526141d881613e1f565b9050919050565b600060208201905081810360008301526141f881613e42565b9050919050565b6000602082019050818103600083015261421881613e65565b9050919050565b6000602082019050818103600083015261423881613e88565b9050919050565b6000602082019050818103600083015261425881613eab565b9050919050565b6000602082019050818103600083015261427881613ece565b9050919050565b6000602082019050818103600083015261429881613ef1565b9050919050565b600060208201905081810360008301526142b881613f37565b9050919050565b600060208201905081810360008301526142d881613f5a565b9050919050565b600060208201905081810360008301526142f881613f7d565b9050919050565b6000602082019050818103600083015261431881613fa0565b9050919050565b6000602082019050818103600083015261433881613fe6565b9050919050565b6000602082019050818103600083015261435881614009565b9050919050565b600060208201905081810360008301526143788161402c565b9050919050565b600060208201905081810360008301526143988161404f565b9050919050565b60006020820190506143b46000830184614072565b92915050565b60006143c46143d5565b90506143d0828261465d565b919050565b6000604051905090565b600067ffffffffffffffff8211156143fa576143f96147b7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614426576144256147b7565b5b61442f826147ff565b9050602081019050919050565b600067ffffffffffffffff821115614457576144566147b7565b5b614460826147ff565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144c6826145df565b91506144d1836145df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614506576145056146fb565b5b828201905092915050565b600061451c826145df565b9150614527836145df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145605761455f6146fb565b5b828202905092915050565b6000614576826145bf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156146165780820151818401526020810190506145fb565b83811115614625576000848401525b50505050565b6000600282049050600182168061464357607f821691505b6020821081141561465757614656614759565b5b50919050565b614666826147ff565b810181811067ffffffffffffffff82111715614685576146846147b7565b5b80604052505050565b6000614699826145df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146cc576146cb6146fb565b5b600182019050919050565b60006146e2826146e9565b9050919050565b60006146f482614810565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f7520417265204e6f7420416c6c6f77656420466f7220467265652053616c60008201527f65204d696e740000000000000000000000000000000000000000000000000000602082015250565b7f4672656573616c65206973206e6f742061637469766500000000000000000000600082015250565b7f56616c7565206973204e6f7420436f7272656374000000000000000000000000600082015250565b7f596f7520417265204e6f742057686974656c6973746564000000000000000000600082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f5769746864726177206661696c65642100000000000000000000000000000000600082015250565b7f4578636565647320574c204d696e7420737570706c7900000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178204d696e74205065722057616c6c657420526561636865640000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f75204861766520416c726561647920557365642046726565204d696e7400600082015250565b50565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f457863656564732046524545204d696e7420737570706c790000000000000000600082015250565b7f4d696e74696e6720697320506175736564210000000000000000000000000000600082015250565b7f4578636565647320544f54414c204d696e7420737570706c7900000000000000600082015250565b614b548161456b565b8114614b5f57600080fd5b50565b614b6b8161457d565b8114614b7657600080fd5b50565b614b8281614589565b8114614b8d57600080fd5b50565b614b9981614593565b8114614ba457600080fd5b50565b614bb0816145df565b8114614bbb57600080fd5b5056fea264697066735822122096c8204b98d3cf8d8c27b4fdb795f23108f275ecaa44335498c50db1d27e44de64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061031a5760003560e01c8063902d55a5116101ab578063bbe49bb0116100f7578063da0da33c11610095578063ec9191091161006f578063ec91910914610b6c578063f2c4ce1e14610b97578063f2fde38b14610bc0578063f8adb42914610be95761031a565b8063da0da33c14610add578063e0a8085314610b06578063e985e9c514610b2f5761031a565b8063c4fe8f49116100d1578063c4fe8f4914610a23578063c754164214610a4c578063c87b56dd14610a75578063cc9ff9c614610ab25761031a565b8063bbe49bb0146109a8578063bc16a0ae146109d1578063c1f26123146109fa5761031a565b8063a2309ff811610164578063b187bd261161013e578063b187bd261461090d578063b228d92514610938578063b3ab66b014610963578063b88d4fde1461097f5761031a565b8063a2309ff81461088e578063afdf6134146108b9578063afe2e1fa146108e25761031a565b8063902d55a51461079057806395d89b41146107bb57806397a900f6146107e65780639858cf19146108115780639e2407851461083c578063a22cb465146108655761031a565b80634b0049671161026a5780636c0360eb116102235780637a5b85c1116101fd5780637a5b85c1146106e85780638da5cb5b146107135780638dbb7c061461073e5780638fdcf942146107675761031a565b80636c0360eb1461066957806370a0823114610694578063715018a6146106d15761031a565b80634b004967146105685780634c220f6e1461059157806354214f69146105ad57806355f804b3146105d857806360d938dc146106015780636352211e1461062c5761031a565b806317885b3b116102d75780632d6b6224116102b15780632d6b6224146104d25780633ccfd60b146104fd57806342842e0e14610514578063453afb0f1461053d5761031a565b806317885b3b1461044157806318160ddd1461047e57806323b872dd146104a95761031a565b806301ffc9a71461031f57806306fdde031461035c578063081812fc14610387578063081c8c44146103c4578063095ea7b3146103ef57806316c38b3c14610418575b600080fd5b34801561032b57600080fd5b5061034660048036038101906103419190613be9565b610c26565b6040516103539190614147565b60405180910390f35b34801561036857600080fd5b50610371610d08565b60405161037e919061417d565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190613c8c565b610d9a565b6040516103bb91906140e0565b60405180910390f35b3480156103d057600080fd5b506103d9610e16565b6040516103e6919061417d565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190613b06565b610ea4565b005b34801561042457600080fd5b5061043f600480360381019061043a9190613b8f565b610faf565b005b34801561044d57600080fd5b5061046860048036038101906104639190613983565b610fd4565b604051610475919061439f565b60405180910390f35b34801561048a57600080fd5b50610493610fec565b6040516104a0919061439f565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906139f0565b611003565b005b3480156104de57600080fd5b506104e7611013565b6040516104f49190614147565b60405180910390f35b34801561050957600080fd5b50610512611026565b005b34801561052057600080fd5b5061053b600480360381019061053691906139f0565b6110e4565b005b34801561054957600080fd5b50610552611104565b60405161055f919061439f565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190613b8f565b61110a565b005b6105ab60048036038101906105a69190613cb9565b611165565b005b3480156105b957600080fd5b506105c2611451565b6040516105cf9190614147565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613c43565b611464565b005b34801561060d57600080fd5b50610616611486565b6040516106239190614147565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190613c8c565b611499565b60405161066091906140e0565b60405180910390f35b34801561067557600080fd5b5061067e6114af565b60405161068b919061417d565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190613983565b61153d565b6040516106c8919061439f565b60405180910390f35b3480156106dd57600080fd5b506106e661160d565b005b3480156106f457600080fd5b506106fd611621565b60405161070a9190614147565b60405180910390f35b34801561071f57600080fd5b50610728611634565b60405161073591906140e0565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190613c8c565b61165e565b005b34801561077357600080fd5b5061078e60048036038101906107899190613c8c565b611670565b005b34801561079c57600080fd5b506107a5611682565b6040516107b2919061439f565b60405180910390f35b3480156107c757600080fd5b506107d0611688565b6040516107dd919061417d565b60405180910390f35b3480156107f257600080fd5b506107fb61171a565b6040516108089190614162565b60405180910390f35b34801561081d57600080fd5b50610826611720565b604051610833919061439f565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e9190613983565b611726565b005b34801561087157600080fd5b5061088c60048036038101906108879190613ac6565b611801565b005b34801561089a57600080fd5b506108a3611979565b6040516108b0919061439f565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190613c8c565b611988565b005b3480156108ee57600080fd5b506108f761199a565b604051610904919061439f565b60405180910390f35b34801561091957600080fd5b506109226119a0565b60405161092f9190614147565b60405180910390f35b34801561094457600080fd5b5061094d6119b3565b60405161095a919061439f565b60405180910390f35b61097d60048036038101906109789190613c8c565b6119b9565b005b34801561098b57600080fd5b506109a660048036038101906109a19190613a43565b611c09565b005b3480156109b457600080fd5b506109cf60048036038101906109ca9190613b8f565b611c85565b005b3480156109dd57600080fd5b506109f860048036038101906109f39190613bbc565b611ce0565b005b348015610a0657600080fd5b50610a216004803603810190610a1c9190613c8c565b611cf2565b005b348015610a2f57600080fd5b50610a4a6004803603810190610a459190613b46565b611d77565b005b348015610a5857600080fd5b50610a736004803603810190610a6e9190613bbc565b611fb3565b005b348015610a8157600080fd5b50610a9c6004803603810190610a979190613c8c565b611fc5565b604051610aa9919061417d565b60405180910390f35b348015610abe57600080fd5b50610ac7612113565b604051610ad4919061439f565b60405180910390f35b348015610ae957600080fd5b50610b046004803603810190610aff9190613b8f565b612119565b005b348015610b1257600080fd5b50610b2d6004803603810190610b289190613b8f565b612174565b005b348015610b3b57600080fd5b50610b566004803603810190610b5191906139b0565b612199565b604051610b639190614147565b60405180910390f35b348015610b7857600080fd5b50610b8161222d565b604051610b8e9190614162565b60405180910390f35b348015610ba357600080fd5b50610bbe6004803603810190610bb99190613c43565b612233565b005b348015610bcc57600080fd5b50610be76004803603810190610be29190613983565b612255565b005b348015610bf557600080fd5b50610c106004803603810190610c0b9190613983565b6122d9565b604051610c1d919061439f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cf157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d015750610d00826122f1565b5b9050919050565b606060028054610d179061462b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d439061462b565b8015610d905780601f10610d6557610100808354040283529160200191610d90565b820191906000526020600020905b815481529060010190602001808311610d7357829003601f168201915b5050505050905090565b6000610da58261235b565b610ddb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60188054610e239061462b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4f9061462b565b8015610e9c5780601f10610e7157610100808354040283529160200191610e9c565b820191906000526020600020905b815481529060010190602001808311610e7f57829003601f168201915b505050505081565b6000610eaf82611499565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f17576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f366123a9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f685750610f6681610f616123a9565b612199565b155b15610f9f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610faa8383836123b1565b505050565b610fb7612463565b80601660006101000a81548160ff02191690831515021790555050565b60096020528060005260406000206000915090505481565b6000610ff66124e1565b6001546000540303905090565b61100e8383836124ea565b505050565b601660049054906101000a900460ff1681565b61102e612463565b6000611038611634565b73ffffffffffffffffffffffffffffffffffffffff164760405161105b906140cb565b60006040518083038185875af1925050503d8060008114611098576040519150601f19603f3d011682016040523d82523d6000602084013e61109d565b606091505b50509050806110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d89061425f565b60405180910390fd5b50565b6110ff83838360405180602001604052806000815250611c09565b505050565b600e5481565b611112612463565b80601660046101000a81548160ff0219169083151502179055506000601660036101000a81548160ff0219169083151502179055506000601660026101000a81548160ff02191690831515021790555050565b601660009054906101000a900460ff16156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac9061435f565b60405180910390fd5b601660029054906101000a900460ff16611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb9061431f565b60405180910390fd5b600f5482600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461125291906144bb565b1115611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a906142bf565b60405180910390fd5b61129d81336129a0565b6112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d39061421f565b60405180910390fd5b601354826112e8611979565b6112f291906144bb565b1115611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a9061437f565b60405180910390fd5b6015548260115461134491906144bb565b1115611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c9061427f565b60405180910390fd5b81600d546113939190614511565b34146113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb906141ff565b60405180910390fd5b6113de33836129e2565b81601160008282546113f091906144bb565b9250508190555081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144691906144bb565b925050819055505050565b601660019054906101000a900460ff1681565b61146c612463565b80601790805190602001906114829291906136a1565b5050565b601660029054906101000a900460ff1681565b60006114a482612a00565b600001519050919050565b601780546114bc9061462b565b80601f01602080910402602001604051908101604052809291908181526020018280546114e89061462b565b80156115355780601f1061150a57610100808354040283529160200191611535565b820191906000526020600020905b81548152906001019060200180831161151857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611615612463565b61161f6000612c8f565b565b601660039054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611666612463565b80600e8190555050565b611678612463565b80600d8190555050565b60135481565b6060600380546116979061462b565b80601f01602080910402602001604051908101604052809291908181526020018280546116c39061462b565b80156117105780601f106116e557610100808354040283529160200191611710565b820191906000526020600020905b8154815290600101906020018083116116f357829003601f168201915b5050505050905090565b600b5481565b60145481565b61172e612463565b601354600161173b611979565b61174591906144bb565b1115611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d9061437f565b60405180910390fd5b601454600160125461179891906144bb565b11156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061433f565b60405180910390fd5b6117e48160016129e2565b6001601260008282546117f791906144bb565b9250508190555050565b6118096123a9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561186e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061187b6123a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119286123a9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161196d9190614147565b60405180910390a35050565b6000611983612d55565b905090565b611990612463565b80600f8190555050565b60155481565b601660009054906101000a900460ff1681565b600f5481565b601660009054906101000a900460ff1615611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a009061435f565b60405180910390fd5b601660049054906101000a900460ff16611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f9061423f565b60405180910390fd5b600f5481600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa691906144bb565b1115611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade906142bf565b60405180910390fd5b80600e54611af59190614511565b3414611b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2d906141ff565b60405180910390fd5b60135481611b42611979565b611b4c91906144bb565b1115611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b849061437f565b60405180910390fd5b611b9733826129e2565b8060106000828254611ba991906144bb565b9250508190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bff91906144bb565b9250508190555050565b611c148484846124ea565b611c338373ffffffffffffffffffffffffffffffffffffffff16612d68565b8015611c485750611c4684848484612d8b565b155b15611c7f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611c8d612463565b80601660026101000a81548160ff0219169083151502179055506000601660036101000a81548160ff0219169083151502179055506000601660046101000a81548160ff02191690831515021790555050565b611ce8612463565b80600c8190555050565b611cfa612463565b60135481611d06611979565b611d1091906144bb565b1115611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d489061437f565b60405180910390fd5b611d5b33826129e2565b8060106000828254611d6d91906144bb565b9250508190555050565b601660009054906101000a900460ff1615611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe9061435f565b60405180910390fd5b601660039054906101000a900460ff16611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d906141df565b60405180910390fd5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f906142ff565b60405180910390fd5b611ea28133612eeb565b611ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed8906141bf565b60405180910390fd5b6014546001601254611ef391906144bb565b1115611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b9061433f565b60405180910390fd5b611f3f3360016129e2565b600160126000828254611f5291906144bb565b925050819055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa991906144bb565b9250508190555050565b611fbb612463565b80600b8190555050565b6060611fd08261235b565b61200f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612006906142df565b60405180910390fd5b601660019054906101000a900460ff166120b557601880546120309061462b565b80601f016020809104026020016040519081016040528092919081815260200182805461205c9061462b565b80156120a95780601f1061207e576101008083540402835291602001916120a9565b820191906000526020600020905b81548152906001019060200180831161208c57829003601f168201915b5050505050905061210e565b60006120bf612f2d565b905060008151116120df576040518060200160405280600081525061210a565b806120e984612fbf565b6040516020016120fa92919061409c565b6040516020818303038152906040525b9150505b919050565b600d5481565b612121612463565b80601660036101000a81548160ff0219169083151502179055506000601660026101000a81548160ff0219169083151502179055506000601660046101000a81548160ff02191690831515021790555050565b61217c612463565b80601660016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b61223b612463565b80601890805190602001906122519291906136a1565b5050565b61225d612463565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c49061419f565b60405180910390fd5b6122d681612c8f565b50565b600a6020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816123666124e1565b11158015612375575060005482105b80156123a2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61246b6123a9565b73ffffffffffffffffffffffffffffffffffffffff16612489611634565b73ffffffffffffffffffffffffffffffffffffffff16146124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d69061429f565b60405180910390fd5b565b60006001905090565b60006124f582612a00565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612560576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166125816123a9565b73ffffffffffffffffffffffffffffffffffffffff1614806125b057506125af856125aa6123a9565b612199565b5b806125f557506125be6123a9565b73ffffffffffffffffffffffffffffffffffffffff166125dd84610d9a565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061262e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612695576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126a28585856001613097565b6126ae600084876123b1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561292e57600054821461292d57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612999858585600161309d565b5050505050565b600080826040516020016129b49190614081565b6040516020818303038152906040528051906020012090506129d984600b54836130a3565b91505092915050565b6129fc8282604051806020016040528060008152506130ba565b5050565b612a08613727565b600082905080612a166124e1565b11158015612a25575060005481105b15612c58576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c5657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b3a578092505050612c8a565b5b600115612c5557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c50578092505050612c8a565b612b3b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612d5f6124e1565b60005403905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612db16123a9565b8786866040518563ffffffff1660e01b8152600401612dd394939291906140fb565b602060405180830381600087803b158015612ded57600080fd5b505af1925050508015612e1e57506040513d601f19601f82011682018060405250810190612e1b9190613c16565b60015b612e98573d8060008114612e4e576040519150601f19603f3d011682016040523d82523d6000602084013e612e53565b606091505b50600081511415612e90576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008082604051602001612eff9190614081565b604051602081830303815290604052805190602001209050612f2484600c54836130a3565b91505092915050565b606060178054612f3c9061462b565b80601f0160208091040260200160405190810160405280929190818152602001828054612f689061462b565b8015612fb55780601f10612f8a57610100808354040283529160200191612fb5565b820191906000526020600020905b815481529060010190602001808311612f9857829003601f168201915b5050505050905090565b606060006001612fce846130cc565b01905060008167ffffffffffffffff811115612fed57612fec6147b7565b5b6040519080825280601f01601f19166020018201604052801561301f5781602001600182028036833780820191505090505b509050600082602001820190505b60011561308c578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816130765761307561472a565b5b04945060008514156130875761308c565b61302d565b819350505050919050565b50505050565b50505050565b6000826130b0858461321f565b1490509392505050565b6130c78383836001613275565b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061312a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816131205761311f61472a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613167576d04ee2d6d415b85acef8100000000838161315d5761315c61472a565b5b0492506020810190505b662386f26fc10000831061319657662386f26fc10000838161318c5761318b61472a565b5b0492506010810190505b6305f5e10083106131bf576305f5e10083816131b5576131b461472a565b5b0492506008810190505b61271083106131e45761271083816131da576131d961472a565b5b0492506004810190505b6064831061320757606483816131fd576131fc61472a565b5b0492506002810190505b600a8310613216576001810190505b80915050919050565b60008082905060005b845181101561326a576132558286838151811061324857613247614788565b5b602002602001015161365f565b915080806132629061468e565b915050613228565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156132e2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561331d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61332a6000868387613097565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156134f457506134f38773ffffffffffffffffffffffffffffffffffffffff16612d68565b5b156135c8575b6135038261235b565b61356457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b6135776000888480600101955088612d8b565b6135ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156134fa5782600054146135c357600080fd5b613642565b5b6135d28261235b565b61363957818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b808214156135c9575b816000819055505050613658600086838761309d565b5050505050565b600081831061367757613672828461368a565b613682565b613681838361368a565b5b905092915050565b600082600052816020526040600020905092915050565b8280546136ad9061462b565b90600052602060002090601f0160209004810192826136cf5760008555613716565b82601f106136e857805160ff1916838001178555613716565b82800160010185558215613716579182015b828111156137155782518255916020019190600101906136fa565b5b509050613723919061376a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561378357600081600090555060010161376b565b5090565b600061379a613795846143df565b6143ba565b905080838252602082019050828560208602820111156137bd576137bc6147eb565b5b60005b858110156137ed57816137d388826138d3565b8452602084019350602083019250506001810190506137c0565b5050509392505050565b600061380a6138058461440b565b6143ba565b905082815260208101848484011115613826576138256147f0565b5b6138318482856145e9565b509392505050565b600061384c6138478461443c565b6143ba565b905082815260208101848484011115613868576138676147f0565b5b6138738482856145e9565b509392505050565b60008135905061388a81614b4b565b92915050565b600082601f8301126138a5576138a46147e6565b5b81356138b5848260208601613787565b91505092915050565b6000813590506138cd81614b62565b92915050565b6000813590506138e281614b79565b92915050565b6000813590506138f781614b90565b92915050565b60008151905061390c81614b90565b92915050565b600082601f830112613927576139266147e6565b5b81356139378482602086016137f7565b91505092915050565b600082601f830112613955576139546147e6565b5b8135613965848260208601613839565b91505092915050565b60008135905061397d81614ba7565b92915050565b600060208284031215613999576139986147fa565b5b60006139a78482850161387b565b91505092915050565b600080604083850312156139c7576139c66147fa565b5b60006139d58582860161387b565b92505060206139e68582860161387b565b9150509250929050565b600080600060608486031215613a0957613a086147fa565b5b6000613a178682870161387b565b9350506020613a288682870161387b565b9250506040613a398682870161396e565b9150509250925092565b60008060008060808587031215613a5d57613a5c6147fa565b5b6000613a6b8782880161387b565b9450506020613a7c8782880161387b565b9350506040613a8d8782880161396e565b925050606085013567ffffffffffffffff811115613aae57613aad6147f5565b5b613aba87828801613912565b91505092959194509250565b60008060408385031215613add57613adc6147fa565b5b6000613aeb8582860161387b565b9250506020613afc858286016138be565b9150509250929050565b60008060408385031215613b1d57613b1c6147fa565b5b6000613b2b8582860161387b565b9250506020613b3c8582860161396e565b9150509250929050565b600060208284031215613b5c57613b5b6147fa565b5b600082013567ffffffffffffffff811115613b7a57613b796147f5565b5b613b8684828501613890565b91505092915050565b600060208284031215613ba557613ba46147fa565b5b6000613bb3848285016138be565b91505092915050565b600060208284031215613bd257613bd16147fa565b5b6000613be0848285016138d3565b91505092915050565b600060208284031215613bff57613bfe6147fa565b5b6000613c0d848285016138e8565b91505092915050565b600060208284031215613c2c57613c2b6147fa565b5b6000613c3a848285016138fd565b91505092915050565b600060208284031215613c5957613c586147fa565b5b600082013567ffffffffffffffff811115613c7757613c766147f5565b5b613c8384828501613940565b91505092915050565b600060208284031215613ca257613ca16147fa565b5b6000613cb08482850161396e565b91505092915050565b60008060408385031215613cd057613ccf6147fa565b5b6000613cde8582860161396e565b925050602083013567ffffffffffffffff811115613cff57613cfe6147f5565b5b613d0b85828601613890565b9150509250929050565b613d1e8161456b565b82525050565b613d35613d308261456b565b6146d7565b82525050565b613d448161457d565b82525050565b613d5381614589565b82525050565b6000613d648261446d565b613d6e8185614483565b9350613d7e8185602086016145f8565b613d87816147ff565b840191505092915050565b6000613d9d82614478565b613da7818561449f565b9350613db78185602086016145f8565b613dc0816147ff565b840191505092915050565b6000613dd682614478565b613de081856144b0565b9350613df08185602086016145f8565b80840191505092915050565b6000613e0960268361449f565b9150613e148261481d565b604082019050919050565b6000613e2c60268361449f565b9150613e378261486c565b604082019050919050565b6000613e4f60168361449f565b9150613e5a826148bb565b602082019050919050565b6000613e7260148361449f565b9150613e7d826148e4565b602082019050919050565b6000613e9560178361449f565b9150613ea08261490d565b602082019050919050565b6000613eb860198361449f565b9150613ec382614936565b602082019050919050565b6000613edb60108361449f565b9150613ee68261495f565b602082019050919050565b6000613efe60168361449f565b9150613f0982614988565b602082019050919050565b6000613f216005836144b0565b9150613f2c826149b1565b600582019050919050565b6000613f4460208361449f565b9150613f4f826149da565b602082019050919050565b6000613f67601b8361449f565b9150613f7282614a03565b602082019050919050565b6000613f8a602f8361449f565b9150613f9582614a2c565b604082019050919050565b6000613fad601f8361449f565b9150613fb882614a7b565b602082019050919050565b6000613fd0600083614494565b9150613fdb82614aa4565b600082019050919050565b6000613ff360158361449f565b9150613ffe82614aa7565b602082019050919050565b600061401660188361449f565b915061402182614ad0565b602082019050919050565b600061403960128361449f565b915061404482614af9565b602082019050919050565b600061405c60198361449f565b915061406782614b22565b602082019050919050565b61407b816145df565b82525050565b600061408d8284613d24565b60148201915081905092915050565b60006140a88285613dcb565b91506140b48284613dcb565b91506140bf82613f14565b91508190509392505050565b60006140d682613fc3565b9150819050919050565b60006020820190506140f56000830184613d15565b92915050565b60006080820190506141106000830187613d15565b61411d6020830186613d15565b61412a6040830185614072565b818103606083015261413c8184613d59565b905095945050505050565b600060208201905061415c6000830184613d3b565b92915050565b60006020820190506141776000830184613d4a565b92915050565b600060208201905081810360008301526141978184613d92565b905092915050565b600060208201905081810360008301526141b881613dfc565b9050919050565b600060208201905081810360008301526141d881613e1f565b9050919050565b600060208201905081810360008301526141f881613e42565b9050919050565b6000602082019050818103600083015261421881613e65565b9050919050565b6000602082019050818103600083015261423881613e88565b9050919050565b6000602082019050818103600083015261425881613eab565b9050919050565b6000602082019050818103600083015261427881613ece565b9050919050565b6000602082019050818103600083015261429881613ef1565b9050919050565b600060208201905081810360008301526142b881613f37565b9050919050565b600060208201905081810360008301526142d881613f5a565b9050919050565b600060208201905081810360008301526142f881613f7d565b9050919050565b6000602082019050818103600083015261431881613fa0565b9050919050565b6000602082019050818103600083015261433881613fe6565b9050919050565b6000602082019050818103600083015261435881614009565b9050919050565b600060208201905081810360008301526143788161402c565b9050919050565b600060208201905081810360008301526143988161404f565b9050919050565b60006020820190506143b46000830184614072565b92915050565b60006143c46143d5565b90506143d0828261465d565b919050565b6000604051905090565b600067ffffffffffffffff8211156143fa576143f96147b7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614426576144256147b7565b5b61442f826147ff565b9050602081019050919050565b600067ffffffffffffffff821115614457576144566147b7565b5b614460826147ff565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144c6826145df565b91506144d1836145df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614506576145056146fb565b5b828201905092915050565b600061451c826145df565b9150614527836145df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145605761455f6146fb565b5b828202905092915050565b6000614576826145bf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156146165780820151818401526020810190506145fb565b83811115614625576000848401525b50505050565b6000600282049050600182168061464357607f821691505b6020821081141561465757614656614759565b5b50919050565b614666826147ff565b810181811067ffffffffffffffff82111715614685576146846147b7565b5b80604052505050565b6000614699826145df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146cc576146cb6146fb565b5b600182019050919050565b60006146e2826146e9565b9050919050565b60006146f482614810565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f7520417265204e6f7420416c6c6f77656420466f7220467265652053616c60008201527f65204d696e740000000000000000000000000000000000000000000000000000602082015250565b7f4672656573616c65206973206e6f742061637469766500000000000000000000600082015250565b7f56616c7565206973204e6f7420436f7272656374000000000000000000000000600082015250565b7f596f7520417265204e6f742057686974656c6973746564000000000000000000600082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f5769746864726177206661696c65642100000000000000000000000000000000600082015250565b7f4578636565647320574c204d696e7420737570706c7900000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178204d696e74205065722057616c6c657420526561636865640000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f75204861766520416c726561647920557365642046726565204d696e7400600082015250565b50565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f457863656564732046524545204d696e7420737570706c790000000000000000600082015250565b7f4d696e74696e6720697320506175736564210000000000000000000000000000600082015250565b7f4578636565647320544f54414c204d696e7420737570706c7900000000000000600082015250565b614b548161456b565b8114614b5f57600080fd5b50565b614b6b8161457d565b8114614b7657600080fd5b50565b614b8281614589565b8114614b8d57600080fd5b50565b614b9981614593565b8114614ba457600080fd5b50565b614bb0816145df565b8114614bbb57600080fd5b5056fea264697066735822122096c8204b98d3cf8d8c27b4fdb795f23108f275ecaa44335498c50db1d27e44de64736f6c63430008070033

Deployed Bytecode Sourcemap

70467:7005:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48270:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51383:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52886:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71386:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52449:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76138:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70548:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47519:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53751:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71308:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75675:169;;;;;;;;;;;;;:::i;:::-;;53992:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70813:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77295:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71692:864;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71186:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76505:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71223:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51191:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71353:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48639:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69559:103;;;;;;;;;;;;;:::i;:::-;;71265:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68911:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76822:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76714:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71032:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51552:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70678:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71073:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74093:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53162:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71591:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76231:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71112:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71152:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70862:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73175:633;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54248:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77116:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75994:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73816:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72564:603;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75852:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74958:709;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70767:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76936:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76617:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53520:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70721:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76371:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69817:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70608:61;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48270:305;48372:4;48424:25;48409:40;;;:11;:40;;;;:105;;;;48481:33;48466:48;;;:11;:48;;;;48409:105;:158;;;;48531:36;48555:11;48531:23;:36::i;:::-;48409:158;48389:178;;48270:305;;;:::o;51383:100::-;51437:13;51470:5;51463:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51383:100;:::o;52886:204::-;52954:7;52979:16;52987:7;52979;:16::i;:::-;52974:64;;53004:34;;;;;;;;;;;;;;52974:64;53058:15;:24;53074:7;53058:24;;;;;;;;;;;;;;;;;;;;;53051:31;;52886:204;;;:::o;71386:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52449:371::-;52522:13;52538:24;52554:7;52538:15;:24::i;:::-;52522:40;;52583:5;52577:11;;:2;:11;;;52573:48;;;52597:24;;;;;;;;;;;;;;52573:48;52654:5;52638:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;52664:37;52681:5;52688:12;:10;:12::i;:::-;52664:16;:37::i;:::-;52663:38;52638:63;52634:138;;;52725:35;;;;;;;;;;;;;;52634:138;52784:28;52793:2;52797:7;52806:5;52784:8;:28::i;:::-;52511:309;52449:371;;:::o;76138:85::-;68797:13;:11;:13::i;:::-;76209:6:::1;76198:8;;:17;;;;;;;;;;;;;;;;;;76138:85:::0;:::o;70548:53::-;;;;;;;;;;;;;;;;;:::o;47519:303::-;47563:7;47788:15;:13;:15::i;:::-;47773:12;;47757:13;;:28;:46;47750:53;;47519:303;:::o;53751:170::-;53885:28;53895:4;53901:2;53905:7;53885:9;:28::i;:::-;53751:170;;;:::o;71308:38::-;;;;;;;;;;;;;:::o;75675:169::-;68797:13;:11;:13::i;:::-;75726:7:::1;75747;:5;:7::i;:::-;75739:21;;75768;75739:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75725:69;;;75813:2;75805:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;75714:130;75675:169::o:0;53992:185::-;54130:39;54147:4;54153:2;54157:7;54130:39;;;;;;;;;;;;:16;:39::i;:::-;53992:185;;;:::o;70813:42::-;;;;:::o;77295:174::-;68797:13;:11;:13::i;:::-;77385:7:::1;77364:18;;:28;;;;;;;;;;;;;;;;;;77422:5;77403:16;;:24;;;;;;;;;;;;;;;;;;77456:5;77438:15;;:23;;;;;;;;;;;;;;;;;;77295:174:::0;:::o;71692:864::-;71813:8;;;;;;;;;;;71812:9;71804:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;71863:15;;;;;;;;;;;71855:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;71964:16;;71954:8;71923:18;:30;71942:10;71923:30;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:57;;71915:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;72031:33;72046:5;72053:10;72031:14;:33::i;:::-;72023:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;72153:12;;72141:8;72125:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;72103:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;72279:9;;72267:8;72251:13;;:24;;;;:::i;:::-;:37;;72229:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;72384:8;72370:11;;:22;;;;:::i;:::-;72357:9;:35;72349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72428:31;72438:10;72450:8;72428:9;:31::i;:::-;72487:8;72470:13;;:25;;;;;;;:::i;:::-;;;;;;;;72540:8;72506:18;:30;72525:10;72506:30;;;;;;;;;;;;;;;;:42;;;;;;;:::i;:::-;;;;;;;;71692:864;;:::o;71186:30::-;;;;;;;;;;;;;:::o;76505:104::-;68797:13;:11;:13::i;:::-;76590:11:::1;76580:7;:21;;;;;;;;;;;;:::i;:::-;;76505:104:::0;:::o;71223:35::-;;;;;;;;;;;;;:::o;51191:125::-;51255:7;51282:21;51295:7;51282:12;:21::i;:::-;:26;;;51275:33;;51191:125;;;:::o;71353:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48639:206::-;48703:7;48744:1;48727:19;;:5;:19;;;48723:60;;;48755:28;;;;;;;;;;;;;;48723:60;48809:12;:19;48822:5;48809:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;48801:36;;48794:43;;48639:206;;;:::o;69559:103::-;68797:13;:11;:13::i;:::-;69624:30:::1;69651:1;69624:18;:30::i;:::-;69559:103::o:0;71265:36::-;;;;;;;;;;;;;:::o;68911:87::-;68957:7;68984:6;;;;;;;;;;;68977:13;;68911:87;:::o;76822:106::-;68797:13;:11;:13::i;:::-;76912:8:::1;76895:14;:25;;;;76822:106:::0;:::o;76714:100::-;68797:13;:11;:13::i;:::-;76798:8:::1;76784:11;:22;;;;76714:100:::0;:::o;71032:34::-;;;;:::o;51552:104::-;51608:13;51641:7;51634:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51552:104;:::o;70678:36::-;;;;:::o;71073:32::-;;;;:::o;74093:371::-;68797:13;:11;:13::i;:::-;74205:12:::1;;74200:1;74184:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:33;;74162:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;74325:11;;74320:1;74303:14;;:18;;;;:::i;:::-;:33;;74281:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;74399:27;74409:13;74424:1;74399:9;:27::i;:::-;74455:1;74437:14;;:19;;;;;;;:::i;:::-;;;;;;;;74093:371:::0;:::o;53162:287::-;53273:12;:10;:12::i;:::-;53261:24;;:8;:24;;;53257:54;;;53294:17;;;;;;;;;;;;;;53257:54;53369:8;53324:18;:32;53343:12;:10;:12::i;:::-;53324:32;;;;;;;;;;;;;;;:42;53357:8;53324:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;53422:8;53393:48;;53408:12;:10;:12::i;:::-;53393:48;;;53432:8;53393:48;;;;;;:::i;:::-;;;;;;;;53162:287;;:::o;71591:93::-;71635:7;71662:14;:12;:14::i;:::-;71655:21;;71591:93;:::o;76231:128::-;68797:13;:11;:13::i;:::-;76334:17:::1;76315:16;:36;;;;76231:128:::0;:::o;71112:31::-;;;;:::o;71152:27::-;;;;;;;;;;;;;:::o;70862:35::-;;;;:::o;73175:633::-;73252:8;;;;;;;;;;;73251:9;73243:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;73302:18;;;;;;;;;;;73294:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;73410:16;;73400:8;73369:18;:30;73388:10;73369:30;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:57;;73361:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;73507:8;73490:14;;:25;;;;:::i;:::-;73477:9;:38;73469:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;73601:12;;73589:8;73573:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;73551:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;73677:31;73687:10;73699:8;73677:9;:31::i;:::-;73739:8;73719:16;;:28;;;;;;;:::i;:::-;;;;;;;;73792:8;73758:18;:30;73777:10;73758:30;;;;;;;;;;;;;;;;:42;;;;;;;:::i;:::-;;;;;;;;73175:633;:::o;54248:369::-;54415:28;54425:4;54431:2;54435:7;54415:9;:28::i;:::-;54458:15;:2;:13;;;:15::i;:::-;:76;;;;;54478:56;54509:4;54515:2;54519:7;54528:5;54478:30;:56::i;:::-;54477:57;54458:76;54454:156;;;54558:40;;;;;;;;;;;;;;54454:156;54248:369;;;;:::o;77116:171::-;68797:13;:11;:13::i;:::-;77200:7:::1;77182:15;;:25;;;;;;;;;;;;;;;;;;77237:5;77218:16;;:24;;;;;;;;;;;;;;;;;;77274:5;77253:18;;:26;;;;;;;;;;;;;;;;;;77116:171:::0;:::o;75994:136::-;68797:13;:11;:13::i;:::-;76107:15:::1;76082:22;:40;;;;75994:136:::0;:::o;73816:269::-;68797:13;:11;:13::i;:::-;73931:12:::1;;73919:8;73903:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;73881:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;74007:31;74017:10;74029:8;74007:9;:31::i;:::-;74069:8;74049:16;;:28;;;;;;;:::i;:::-;;;;;;;;73816:269:::0;:::o;72564:603::-;72637:8;;;;;;;;;;;72636:9;72628:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;72687:16;;;;;;;;;;;72679:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;72789:1;72749:26;:38;72776:10;72749:38;;;;;;;;;;;;;;;;:41;72741:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;72845:34;72861:5;72868:10;72845:15;:34::i;:::-;72837:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;72977:11;;72972:1;72955:14;;:18;;;;:::i;:::-;:33;;72933:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;73051:24;73061:10;73073:1;73051:9;:24::i;:::-;73104:1;73086:14;;:19;;;;;;;:::i;:::-;;;;;;;;73158:1;73116:26;:38;73143:10;73116:38;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;72564:603;:::o;75852:134::-;68797:13;:11;:13::i;:::-;75963:15:::1;75939:21;:39;;;;75852:134:::0;:::o;74958:709::-;75076:13;75129:16;75137:7;75129;:16::i;:::-;75107:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;75236:10;;;;;;;;;;;75231:65;;75270:14;75263:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75231:65;75306:28;75337:10;:8;:10::i;:::-;75306:41;;75409:1;75384:14;75378:28;:32;:281;;;;;;;;;;;;;;;;;75502:14;75543:18;:7;:16;:18::i;:::-;75459:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75378:281;75358:301;;;74958:709;;;;:::o;70767:39::-;;;;:::o;76936:172::-;68797:13;:11;:13::i;:::-;77022:7:::1;77003:16;;:26;;;;;;;;;;;;;;;;;;77058:5;77040:15;;:23;;;;;;;;;;;;;;;;;;77095:5;77074:18;;:26;;;;;;;;;;;;;;;;;;76936:172:::0;:::o;76617:89::-;68797:13;:11;:13::i;:::-;76692:6:::1;76679:10;;:19;;;;;;;;;;;;;;;;;;76617:89:::0;:::o;53520:164::-;53617:4;53641:18;:25;53660:5;53641:25;;;;;;;;;;;;;;;:35;53667:8;53641:35;;;;;;;;;;;;;;;;;;;;;;;;;53634:42;;53520:164;;;;:::o;70721:37::-;;;;:::o;76371:126::-;68797:13;:11;:13::i;:::-;76474:15:::1;76457:14;:32;;;;;;;;;;;;:::i;:::-;;76371:126:::0;:::o;69817:201::-;68797:13;:11;:13::i;:::-;69926:1:::1;69906:22;;:8;:22;;;;69898:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;69982:28;70001:8;69982:18;:28::i;:::-;69817:201:::0;:::o;70608:61::-;;;;;;;;;;;;;;;;;:::o;12264:157::-;12349:4;12388:25;12373:40;;;:11;:40;;;;12366:47;;12264:157;;;:::o;54872:174::-;54929:4;54972:7;54953:15;:13;:15::i;:::-;:26;;:53;;;;;54993:13;;54983:7;:23;54953:53;:85;;;;;55011:11;:20;55023:7;55011:20;;;;;;;;;;;:27;;;;;;;;;;;;55010:28;54953:85;54946:92;;54872:174;;;:::o;43784:98::-;43837:7;43864:10;43857:17;;43784:98;:::o;64692:196::-;64834:2;64807:15;:24;64823:7;64807:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;64872:7;64868:2;64852:28;;64861:5;64852:28;;;;;;;;;;;;64692:196;;;:::o;69076:132::-;69151:12;:10;:12::i;:::-;69140:23;;:7;:5;:7::i;:::-;:23;;;69132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69076:132::o;47293:92::-;47349:7;47376:1;47369:8;;47293:92;:::o;59635:2130::-;59750:35;59788:21;59801:7;59788:12;:21::i;:::-;59750:59;;59848:4;59826:26;;:13;:18;;;:26;;;59822:67;;59861:28;;;;;;;;;;;;;;59822:67;59902:22;59944:4;59928:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;59965:36;59982:4;59988:12;:10;:12::i;:::-;59965:16;:36::i;:::-;59928:73;:126;;;;60042:12;:10;:12::i;:::-;60018:36;;:20;60030:7;60018:11;:20::i;:::-;:36;;;59928:126;59902:153;;60073:17;60068:66;;60099:35;;;;;;;;;;;;;;60068:66;60163:1;60149:16;;:2;:16;;;60145:52;;;60174:23;;;;;;;;;;;;;;60145:52;60210:43;60232:4;60238:2;60242:7;60251:1;60210:21;:43::i;:::-;60318:35;60335:1;60339:7;60348:4;60318:8;:35::i;:::-;60679:1;60649:12;:18;60662:4;60649:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60723:1;60695:12;:16;60708:2;60695:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60741:31;60775:11;:20;60787:7;60775:20;;;;;;;;;;;60741:54;;60826:2;60810:8;:13;;;:18;;;;;;;;;;;;;;;;;;60876:15;60843:8;:23;;;:49;;;;;;;;;;;;;;;;;;61144:19;61176:1;61166:7;:11;61144:33;;61192:31;61226:11;:24;61238:11;61226:24;;;;;;;;;;;61192:58;;61294:1;61269:27;;:8;:13;;;;;;;;;;;;:27;;;61265:384;;;61479:13;;61464:11;:28;61460:174;;61533:4;61517:8;:13;;;:20;;;;;;;;;;;;;;;;;;61586:13;:28;;;61560:8;:23;;;:54;;;;;;;;;;;;;;;;;;61460:174;61265:384;60624:1036;;;61696:7;61692:2;61677:27;;61686:4;61677:27;;;;;;;;;;;;61715:42;61736:4;61742:2;61746:7;61755:1;61715:20;:42::i;:::-;59739:2026;;59635:2130;;;:::o;74472:234::-;74559:4;74576:12;74618:6;74601:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;74591:35;;;;;;74576:50;;74644:54;74663:5;74670:21;;74693:4;74644:18;:54::i;:::-;74637:61;;;74472:234;;;;:::o;55054:104::-;55123:27;55133:2;55137:8;55123:27;;;;;;;;;;;;:9;:27::i;:::-;55054:104;;:::o;50020:1109::-;50082:21;;:::i;:::-;50116:12;50131:7;50116:22;;50199:4;50180:15;:13;:15::i;:::-;:23;;:47;;;;;50214:13;;50207:4;:20;50180:47;50176:886;;;50248:31;50282:11;:17;50294:4;50282:17;;;;;;;;;;;50248:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50323:9;:16;;;50318:729;;50394:1;50368:28;;:9;:14;;;:28;;;50364:101;;50432:9;50425:16;;;;;;50364:101;50767:261;50774:4;50767:261;;;50807:6;;;;;;;;50852:11;:17;50864:4;50852:17;;;;;;;;;;;50840:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50926:1;50900:28;;:9;:14;;;:28;;;50896:109;;50968:9;50961:16;;;;;;50896:109;50767:261;;;50318:729;50229:833;50176:886;51090:31;;;;;;;;;;;;;;50020:1109;;;;:::o;70178:191::-;70252:16;70271:6;;;;;;;;;;;70252:25;;70297:8;70288:6;;:17;;;;;;;;;;;;;;;;;;70352:8;70321:40;;70342:8;70321:40;;;;;;;;;;;;70241:128;70178:191;:::o;47915:283::-;47962:7;48164:15;:13;:15::i;:::-;48148:13;;:31;48141:38;;47915:283;:::o;1233:326::-;1293:4;1550:1;1528:7;:19;;;:23;1521:30;;1233:326;;;:::o;65380:667::-;65543:4;65580:2;65564:36;;;65601:12;:10;:12::i;:::-;65615:4;65621:7;65630:5;65564:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;65560:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65815:1;65798:6;:13;:18;65794:235;;;65844:40;;;;;;;;;;;;;;65794:235;65987:6;65981:13;65972:6;65968:2;65964:15;65957:38;65560:480;65693:45;;;65683:55;;;:6;:55;;;;65676:62;;;65380:667;;;;;;:::o;74714:236::-;74802:4;74819:12;74861:6;74844:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;74834:35;;;;;;74819:50;;74887:55;74906:5;74913:22;;74937:4;74887:18;:55::i;:::-;74880:62;;;74714:236;;;;:::o;71475:108::-;71535:13;71568:7;71561:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71475:108;:::o;41211:716::-;41267:13;41318:14;41355:1;41335:17;41346:5;41335:10;:17::i;:::-;:21;41318:38;;41371:20;41405:6;41394:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41371:41;;41427:11;41556:6;41552:2;41548:15;41540:6;41536:28;41529:35;;41593:288;41600:4;41593:288;;;41625:5;;;;;;;;41767:8;41762:2;41755:5;41751:14;41746:30;41741:3;41733:44;41823:2;41814:11;;;;;;:::i;:::-;;;;;41857:1;41848:5;:10;41844:21;;;41860:5;;41844:21;41593:288;;;41902:6;41895:13;;;;;41211:716;;;:::o;66695:159::-;;;;;:::o;67513:158::-;;;;;:::o;19567:190::-;19692:4;19745;19716:25;19729:5;19736:4;19716:12;:25::i;:::-;:33;19709:40;;19567:190;;;;;:::o;55521:163::-;55644:32;55650:2;55654:8;55664:5;55671:4;55644:5;:32::i;:::-;55521:163;;;:::o;38077:922::-;38130:7;38150:14;38167:1;38150:18;;38217:6;38208:5;:15;38204:102;;38253:6;38244:15;;;;;;:::i;:::-;;;;;38288:2;38278:12;;;;38204:102;38333:6;38324:5;:15;38320:102;;38369:6;38360:15;;;;;;:::i;:::-;;;;;38404:2;38394:12;;;;38320:102;38449:6;38440:5;:15;38436:102;;38485:6;38476:15;;;;;;:::i;:::-;;;;;38520:2;38510:12;;;;38436:102;38565:5;38556;:14;38552:99;;38600:5;38591:14;;;;;;:::i;:::-;;;;;38634:1;38624:11;;;;38552:99;38678:5;38669;:14;38665:99;;38713:5;38704:14;;;;;;:::i;:::-;;;;;38747:1;38737:11;;;;38665:99;38791:5;38782;:14;38778:99;;38826:5;38817:14;;;;;;:::i;:::-;;;;;38860:1;38850:11;;;;38778:99;38904:5;38895;:14;38891:66;;38940:1;38930:11;;;;38891:66;38985:6;38978:13;;;38077:922;;;:::o;20434:296::-;20517:7;20537:20;20560:4;20537:27;;20580:9;20575:118;20599:5;:12;20595:1;:16;20575:118;;;20648:33;20658:12;20672:5;20678:1;20672:8;;;;;;;;:::i;:::-;;;;;;;;20648:9;:33::i;:::-;20633:48;;20613:3;;;;;:::i;:::-;;;;20575:118;;;;20710:12;20703:19;;;20434:296;;;;:::o;55943:1928::-;56082:20;56105:13;;56082:36;;56147:1;56133:16;;:2;:16;;;56129:48;;;56158:19;;;;;;;;;;;;;;56129:48;56204:1;56192:8;:13;56188:44;;;56214:18;;;;;;;;;;;;;;56188:44;56245:61;56275:1;56279:2;56283:12;56297:8;56245:21;:61::i;:::-;56618:8;56583:12;:16;56596:2;56583:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56682:8;56642:12;:16;56655:2;56642:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56741:2;56708:11;:25;56720:12;56708:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;56808:15;56758:11;:25;56770:12;56758:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;56841:20;56864:12;56841:35;;56891:11;56920:8;56905:12;:23;56891:37;;56949:4;:23;;;;;56957:15;:2;:13;;;:15::i;:::-;56949:23;56945:794;;;56993:391;57023:21;57031:12;57023:7;:21::i;:::-;57019:121;;57103:12;57099:2;57078:38;;57095:1;57078:38;;;;;;;;;;;;57019:121;57167:69;57206:1;57210:2;57214:14;;;;;;57230:5;57167:30;:69::i;:::-;57162:174;;57272:40;;;;;;;;;;;;;;57162:174;57379:3;57363:12;:19;;56993:391;;57465:12;57448:13;;:29;57444:43;;57479:8;;;57444:43;56945:794;;;57528:196;57558:21;57566:12;57558:7;:21::i;:::-;57554:122;;57637:14;;;;;;57633:2;57612:40;;57629:1;57612:40;;;;;;;;;;;;57554:122;57719:3;57703:12;:19;;57528:196;;56945:794;57769:12;57753:13;:28;;;;56558:1235;;57803:60;57832:1;57836:2;57840:12;57854:8;57803:20;:60::i;:::-;56071:1800;55943:1928;;;;:::o;27474:149::-;27537:7;27568:1;27564;:5;:51;;27595:20;27610:1;27613;27595:14;:20::i;:::-;27564:51;;;27572:20;27587:1;27590;27572:14;:20::i;:::-;27564:51;27557:58;;27474:149;;;;:::o;27631:268::-;27699:13;27806:1;27800:4;27793:15;27835:1;27829:4;27822:15;27876:4;27870;27860:21;27851:30;;27631:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:329::-;3619:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:119;;;3674:79;;:::i;:::-;3636:119;3794:1;3819:53;3864:7;3855:6;3844:9;3840:22;3819:53;:::i;:::-;3809:63;;3765:117;3560:329;;;;:::o;3895:474::-;3963:6;3971;4020:2;4008:9;3999:7;3995:23;3991:32;3988:119;;;4026:79;;:::i;:::-;3988:119;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;3895:474;;;;;:::o;4375:619::-;4452:6;4460;4468;4517:2;4505:9;4496:7;4492:23;4488:32;4485:119;;;4523:79;;:::i;:::-;4485:119;4643:1;4668:53;4713:7;4704:6;4693:9;4689:22;4668:53;:::i;:::-;4658:63;;4614:117;4770:2;4796:53;4841:7;4832:6;4821:9;4817:22;4796:53;:::i;:::-;4786:63;;4741:118;4898:2;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4869:118;4375:619;;;;;:::o;5000:943::-;5095:6;5103;5111;5119;5168:3;5156:9;5147:7;5143:23;5139:33;5136:120;;;5175:79;;:::i;:::-;5136:120;5295:1;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5266:117;5422:2;5448:53;5493:7;5484:6;5473:9;5469:22;5448:53;:::i;:::-;5438:63;;5393:118;5550:2;5576:53;5621:7;5612:6;5601:9;5597:22;5576:53;:::i;:::-;5566:63;;5521:118;5706:2;5695:9;5691:18;5678:32;5737:18;5729:6;5726:30;5723:117;;;5759:79;;:::i;:::-;5723:117;5864:62;5918:7;5909:6;5898:9;5894:22;5864:62;:::i;:::-;5854:72;;5649:287;5000:943;;;;;;;:::o;5949:468::-;6014:6;6022;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:53;6267:7;6258:6;6247:9;6243:22;6222:53;:::i;:::-;6212:63;;6168:117;6324:2;6350:50;6392:7;6383:6;6372:9;6368:22;6350:50;:::i;:::-;6340:60;;6295:115;5949:468;;;;;:::o;6423:474::-;6491:6;6499;6548:2;6536:9;6527:7;6523:23;6519:32;6516:119;;;6554:79;;:::i;:::-;6516:119;6674:1;6699:53;6744:7;6735:6;6724:9;6720:22;6699:53;:::i;:::-;6689:63;;6645:117;6801:2;6827:53;6872:7;6863:6;6852:9;6848:22;6827:53;:::i;:::-;6817:63;;6772:118;6423:474;;;;;:::o;6903:539::-;6987:6;7036:2;7024:9;7015:7;7011:23;7007:32;7004:119;;;7042:79;;:::i;:::-;7004:119;7190:1;7179:9;7175:17;7162:31;7220:18;7212:6;7209:30;7206:117;;;7242:79;;:::i;:::-;7206:117;7347:78;7417:7;7408:6;7397:9;7393:22;7347:78;:::i;:::-;7337:88;;7133:302;6903:539;;;;:::o;7448:323::-;7504:6;7553:2;7541:9;7532:7;7528:23;7524:32;7521:119;;;7559:79;;:::i;:::-;7521:119;7679:1;7704:50;7746:7;7737:6;7726:9;7722:22;7704:50;:::i;:::-;7694:60;;7650:114;7448:323;;;;:::o;7777:329::-;7836:6;7885:2;7873:9;7864:7;7860:23;7856:32;7853:119;;;7891:79;;:::i;:::-;7853:119;8011:1;8036:53;8081:7;8072:6;8061:9;8057:22;8036:53;:::i;:::-;8026:63;;7982:117;7777:329;;;;:::o;8112:327::-;8170:6;8219:2;8207:9;8198:7;8194:23;8190:32;8187:119;;;8225:79;;:::i;:::-;8187:119;8345:1;8370:52;8414:7;8405:6;8394:9;8390:22;8370:52;:::i;:::-;8360:62;;8316:116;8112:327;;;;:::o;8445:349::-;8514:6;8563:2;8551:9;8542:7;8538:23;8534:32;8531:119;;;8569:79;;:::i;:::-;8531:119;8689:1;8714:63;8769:7;8760:6;8749:9;8745:22;8714:63;:::i;:::-;8704:73;;8660:127;8445:349;;;;:::o;8800:509::-;8869:6;8918:2;8906:9;8897:7;8893:23;8889:32;8886:119;;;8924:79;;:::i;:::-;8886:119;9072:1;9061:9;9057:17;9044:31;9102:18;9094:6;9091:30;9088:117;;;9124:79;;:::i;:::-;9088:117;9229:63;9284:7;9275:6;9264:9;9260:22;9229:63;:::i;:::-;9219:73;;9015:287;8800:509;;;;:::o;9315:329::-;9374:6;9423:2;9411:9;9402:7;9398:23;9394:32;9391:119;;;9429:79;;:::i;:::-;9391:119;9549:1;9574:53;9619:7;9610:6;9599:9;9595:22;9574:53;:::i;:::-;9564:63;;9520:117;9315:329;;;;:::o;9650:684::-;9743:6;9751;9800:2;9788:9;9779:7;9775:23;9771:32;9768:119;;;9806:79;;:::i;:::-;9768:119;9926:1;9951:53;9996:7;9987:6;9976:9;9972:22;9951:53;:::i;:::-;9941:63;;9897:117;10081:2;10070:9;10066:18;10053:32;10112:18;10104:6;10101:30;10098:117;;;10134:79;;:::i;:::-;10098:117;10239:78;10309:7;10300:6;10289:9;10285:22;10239:78;:::i;:::-;10229:88;;10024:303;9650:684;;;;;:::o;10340:118::-;10427:24;10445:5;10427:24;:::i;:::-;10422:3;10415:37;10340:118;;:::o;10464:157::-;10569:45;10589:24;10607:5;10589:24;:::i;:::-;10569:45;:::i;:::-;10564:3;10557:58;10464:157;;:::o;10627:109::-;10708:21;10723:5;10708:21;:::i;:::-;10703:3;10696:34;10627:109;;:::o;10742:118::-;10829:24;10847:5;10829:24;:::i;:::-;10824:3;10817:37;10742:118;;:::o;10866:360::-;10952:3;10980:38;11012:5;10980:38;:::i;:::-;11034:70;11097:6;11092:3;11034:70;:::i;:::-;11027:77;;11113:52;11158:6;11153:3;11146:4;11139:5;11135:16;11113:52;:::i;:::-;11190:29;11212:6;11190:29;:::i;:::-;11185:3;11181:39;11174:46;;10956:270;10866:360;;;;:::o;11232:364::-;11320:3;11348:39;11381:5;11348:39;:::i;:::-;11403:71;11467:6;11462:3;11403:71;:::i;:::-;11396:78;;11483:52;11528:6;11523:3;11516:4;11509:5;11505:16;11483:52;:::i;:::-;11560:29;11582:6;11560:29;:::i;:::-;11555:3;11551:39;11544:46;;11324:272;11232:364;;;;:::o;11602:377::-;11708:3;11736:39;11769:5;11736:39;:::i;:::-;11791:89;11873:6;11868:3;11791:89;:::i;:::-;11784:96;;11889:52;11934:6;11929:3;11922:4;11915:5;11911:16;11889:52;:::i;:::-;11966:6;11961:3;11957:16;11950:23;;11712:267;11602:377;;;;:::o;11985:366::-;12127:3;12148:67;12212:2;12207:3;12148:67;:::i;:::-;12141:74;;12224:93;12313:3;12224:93;:::i;:::-;12342:2;12337:3;12333:12;12326:19;;11985:366;;;:::o;12357:::-;12499:3;12520:67;12584:2;12579:3;12520:67;:::i;:::-;12513:74;;12596:93;12685:3;12596:93;:::i;:::-;12714:2;12709:3;12705:12;12698:19;;12357:366;;;:::o;12729:::-;12871:3;12892:67;12956:2;12951:3;12892:67;:::i;:::-;12885:74;;12968:93;13057:3;12968:93;:::i;:::-;13086:2;13081:3;13077:12;13070:19;;12729:366;;;:::o;13101:::-;13243:3;13264:67;13328:2;13323:3;13264:67;:::i;:::-;13257:74;;13340:93;13429:3;13340:93;:::i;:::-;13458:2;13453:3;13449:12;13442:19;;13101:366;;;:::o;13473:::-;13615:3;13636:67;13700:2;13695:3;13636:67;:::i;:::-;13629:74;;13712:93;13801:3;13712:93;:::i;:::-;13830:2;13825:3;13821:12;13814:19;;13473:366;;;:::o;13845:::-;13987:3;14008:67;14072:2;14067:3;14008:67;:::i;:::-;14001:74;;14084:93;14173:3;14084:93;:::i;:::-;14202:2;14197:3;14193:12;14186:19;;13845:366;;;:::o;14217:::-;14359:3;14380:67;14444:2;14439:3;14380:67;:::i;:::-;14373:74;;14456:93;14545:3;14456:93;:::i;:::-;14574:2;14569:3;14565:12;14558:19;;14217:366;;;:::o;14589:::-;14731:3;14752:67;14816:2;14811:3;14752:67;:::i;:::-;14745:74;;14828:93;14917:3;14828:93;:::i;:::-;14946:2;14941:3;14937:12;14930:19;;14589:366;;;:::o;14961:400::-;15121:3;15142:84;15224:1;15219:3;15142:84;:::i;:::-;15135:91;;15235:93;15324:3;15235:93;:::i;:::-;15353:1;15348:3;15344:11;15337:18;;14961:400;;;:::o;15367:366::-;15509:3;15530:67;15594:2;15589:3;15530:67;:::i;:::-;15523:74;;15606:93;15695:3;15606:93;:::i;:::-;15724:2;15719:3;15715:12;15708:19;;15367:366;;;:::o;15739:::-;15881:3;15902:67;15966:2;15961:3;15902:67;:::i;:::-;15895:74;;15978:93;16067:3;15978:93;:::i;:::-;16096:2;16091:3;16087:12;16080:19;;15739:366;;;:::o;16111:::-;16253:3;16274:67;16338:2;16333:3;16274:67;:::i;:::-;16267:74;;16350:93;16439:3;16350:93;:::i;:::-;16468:2;16463:3;16459:12;16452:19;;16111:366;;;:::o;16483:::-;16625:3;16646:67;16710:2;16705:3;16646:67;:::i;:::-;16639:74;;16722:93;16811:3;16722:93;:::i;:::-;16840:2;16835:3;16831:12;16824:19;;16483:366;;;:::o;16855:398::-;17014:3;17035:83;17116:1;17111:3;17035:83;:::i;:::-;17028:90;;17127:93;17216:3;17127:93;:::i;:::-;17245:1;17240:3;17236:11;17229:18;;16855:398;;;:::o;17259:366::-;17401:3;17422:67;17486:2;17481:3;17422:67;:::i;:::-;17415:74;;17498:93;17587:3;17498:93;:::i;:::-;17616:2;17611:3;17607:12;17600:19;;17259:366;;;:::o;17631:::-;17773:3;17794:67;17858:2;17853:3;17794:67;:::i;:::-;17787:74;;17870:93;17959:3;17870:93;:::i;:::-;17988:2;17983:3;17979:12;17972:19;;17631:366;;;:::o;18003:::-;18145:3;18166:67;18230:2;18225:3;18166:67;:::i;:::-;18159:74;;18242:93;18331:3;18242:93;:::i;:::-;18360:2;18355:3;18351:12;18344:19;;18003:366;;;:::o;18375:::-;18517:3;18538:67;18602:2;18597:3;18538:67;:::i;:::-;18531:74;;18614:93;18703:3;18614:93;:::i;:::-;18732:2;18727:3;18723:12;18716:19;;18375:366;;;:::o;18747:118::-;18834:24;18852:5;18834:24;:::i;:::-;18829:3;18822:37;18747:118;;:::o;18871:256::-;18983:3;18998:75;19069:3;19060:6;18998:75;:::i;:::-;19098:2;19093:3;19089:12;19082:19;;19118:3;19111:10;;18871:256;;;;:::o;19133:701::-;19414:3;19436:95;19527:3;19518:6;19436:95;:::i;:::-;19429:102;;19548:95;19639:3;19630:6;19548:95;:::i;:::-;19541:102;;19660:148;19804:3;19660:148;:::i;:::-;19653:155;;19825:3;19818:10;;19133:701;;;;;:::o;19840:379::-;20024:3;20046:147;20189:3;20046:147;:::i;:::-;20039:154;;20210:3;20203:10;;19840:379;;;:::o;20225:222::-;20318:4;20356:2;20345:9;20341:18;20333:26;;20369:71;20437:1;20426:9;20422:17;20413:6;20369:71;:::i;:::-;20225:222;;;;:::o;20453:640::-;20648:4;20686:3;20675:9;20671:19;20663:27;;20700:71;20768:1;20757:9;20753:17;20744:6;20700:71;:::i;:::-;20781:72;20849:2;20838:9;20834:18;20825:6;20781:72;:::i;:::-;20863;20931:2;20920:9;20916:18;20907:6;20863:72;:::i;:::-;20982:9;20976:4;20972:20;20967:2;20956:9;20952:18;20945:48;21010:76;21081:4;21072:6;21010:76;:::i;:::-;21002:84;;20453:640;;;;;;;:::o;21099:210::-;21186:4;21224:2;21213:9;21209:18;21201:26;;21237:65;21299:1;21288:9;21284:17;21275:6;21237:65;:::i;:::-;21099:210;;;;:::o;21315:222::-;21408:4;21446:2;21435:9;21431:18;21423:26;;21459:71;21527:1;21516:9;21512:17;21503:6;21459:71;:::i;:::-;21315:222;;;;:::o;21543:313::-;21656:4;21694:2;21683:9;21679:18;21671:26;;21743:9;21737:4;21733:20;21729:1;21718:9;21714:17;21707:47;21771:78;21844:4;21835:6;21771:78;:::i;:::-;21763:86;;21543:313;;;;:::o;21862:419::-;22028:4;22066:2;22055:9;22051:18;22043:26;;22115:9;22109:4;22105:20;22101:1;22090:9;22086:17;22079:47;22143:131;22269:4;22143:131;:::i;:::-;22135:139;;21862:419;;;:::o;22287:::-;22453:4;22491:2;22480:9;22476:18;22468:26;;22540:9;22534:4;22530:20;22526:1;22515:9;22511:17;22504:47;22568:131;22694:4;22568:131;:::i;:::-;22560:139;;22287:419;;;:::o;22712:::-;22878:4;22916:2;22905:9;22901:18;22893:26;;22965:9;22959:4;22955:20;22951:1;22940:9;22936:17;22929:47;22993:131;23119:4;22993:131;:::i;:::-;22985:139;;22712:419;;;:::o;23137:::-;23303:4;23341:2;23330:9;23326:18;23318:26;;23390:9;23384:4;23380:20;23376:1;23365:9;23361:17;23354:47;23418:131;23544:4;23418:131;:::i;:::-;23410:139;;23137:419;;;:::o;23562:::-;23728:4;23766:2;23755:9;23751:18;23743:26;;23815:9;23809:4;23805:20;23801:1;23790:9;23786:17;23779:47;23843:131;23969:4;23843:131;:::i;:::-;23835:139;;23562:419;;;:::o;23987:::-;24153:4;24191:2;24180:9;24176:18;24168:26;;24240:9;24234:4;24230:20;24226:1;24215:9;24211:17;24204:47;24268:131;24394:4;24268:131;:::i;:::-;24260:139;;23987:419;;;:::o;24412:::-;24578:4;24616:2;24605:9;24601:18;24593:26;;24665:9;24659:4;24655:20;24651:1;24640:9;24636:17;24629:47;24693:131;24819:4;24693:131;:::i;:::-;24685:139;;24412:419;;;:::o;24837:::-;25003:4;25041:2;25030:9;25026:18;25018:26;;25090:9;25084:4;25080:20;25076:1;25065:9;25061:17;25054:47;25118:131;25244:4;25118:131;:::i;:::-;25110:139;;24837:419;;;:::o;25262:::-;25428:4;25466:2;25455:9;25451:18;25443:26;;25515:9;25509:4;25505:20;25501:1;25490:9;25486:17;25479:47;25543:131;25669:4;25543:131;:::i;:::-;25535:139;;25262:419;;;:::o;25687:::-;25853:4;25891:2;25880:9;25876:18;25868:26;;25940:9;25934:4;25930:20;25926:1;25915:9;25911:17;25904:47;25968:131;26094:4;25968:131;:::i;:::-;25960:139;;25687:419;;;:::o;26112:::-;26278:4;26316:2;26305:9;26301:18;26293:26;;26365:9;26359:4;26355:20;26351:1;26340:9;26336:17;26329:47;26393:131;26519:4;26393:131;:::i;:::-;26385:139;;26112:419;;;:::o;26537:::-;26703:4;26741:2;26730:9;26726:18;26718:26;;26790:9;26784:4;26780:20;26776:1;26765:9;26761:17;26754:47;26818:131;26944:4;26818:131;:::i;:::-;26810:139;;26537:419;;;:::o;26962:::-;27128:4;27166:2;27155:9;27151:18;27143:26;;27215:9;27209:4;27205:20;27201:1;27190:9;27186:17;27179:47;27243:131;27369:4;27243:131;:::i;:::-;27235:139;;26962:419;;;:::o;27387:::-;27553:4;27591:2;27580:9;27576:18;27568:26;;27640:9;27634:4;27630:20;27626:1;27615:9;27611:17;27604:47;27668:131;27794:4;27668:131;:::i;:::-;27660:139;;27387:419;;;:::o;27812:::-;27978:4;28016:2;28005:9;28001:18;27993:26;;28065:9;28059:4;28055:20;28051:1;28040:9;28036:17;28029:47;28093:131;28219:4;28093:131;:::i;:::-;28085:139;;27812:419;;;:::o;28237:::-;28403:4;28441:2;28430:9;28426:18;28418:26;;28490:9;28484:4;28480:20;28476:1;28465:9;28461:17;28454:47;28518:131;28644:4;28518:131;:::i;:::-;28510:139;;28237:419;;;:::o;28662:222::-;28755:4;28793:2;28782:9;28778:18;28770:26;;28806:71;28874:1;28863:9;28859:17;28850:6;28806:71;:::i;:::-;28662:222;;;;:::o;28890:129::-;28924:6;28951:20;;:::i;:::-;28941:30;;28980:33;29008:4;29000:6;28980:33;:::i;:::-;28890:129;;;:::o;29025:75::-;29058:6;29091:2;29085:9;29075:19;;29025:75;:::o;29106:311::-;29183:4;29273:18;29265:6;29262:30;29259:56;;;29295:18;;:::i;:::-;29259:56;29345:4;29337:6;29333:17;29325:25;;29405:4;29399;29395:15;29387:23;;29106:311;;;:::o;29423:307::-;29484:4;29574:18;29566:6;29563:30;29560:56;;;29596:18;;:::i;:::-;29560:56;29634:29;29656:6;29634:29;:::i;:::-;29626:37;;29718:4;29712;29708:15;29700:23;;29423:307;;;:::o;29736:308::-;29798:4;29888:18;29880:6;29877:30;29874:56;;;29910:18;;:::i;:::-;29874:56;29948:29;29970:6;29948:29;:::i;:::-;29940:37;;30032:4;30026;30022:15;30014:23;;29736:308;;;:::o;30050:98::-;30101:6;30135:5;30129:12;30119:22;;30050:98;;;:::o;30154:99::-;30206:6;30240:5;30234:12;30224:22;;30154:99;;;:::o;30259:168::-;30342:11;30376:6;30371:3;30364:19;30416:4;30411:3;30407:14;30392:29;;30259:168;;;;:::o;30433:147::-;30534:11;30571:3;30556:18;;30433:147;;;;:::o;30586:169::-;30670:11;30704:6;30699:3;30692:19;30744:4;30739:3;30735:14;30720:29;;30586:169;;;;:::o;30761:148::-;30863:11;30900:3;30885:18;;30761:148;;;;:::o;30915:305::-;30955:3;30974:20;30992:1;30974:20;:::i;:::-;30969:25;;31008:20;31026:1;31008:20;:::i;:::-;31003:25;;31162:1;31094:66;31090:74;31087:1;31084:81;31081:107;;;31168:18;;:::i;:::-;31081:107;31212:1;31209;31205:9;31198:16;;30915:305;;;;:::o;31226:348::-;31266:7;31289:20;31307:1;31289:20;:::i;:::-;31284:25;;31323:20;31341:1;31323:20;:::i;:::-;31318:25;;31511:1;31443:66;31439:74;31436:1;31433:81;31428:1;31421:9;31414:17;31410:105;31407:131;;;31518:18;;:::i;:::-;31407:131;31566:1;31563;31559:9;31548:20;;31226:348;;;;:::o;31580:96::-;31617:7;31646:24;31664:5;31646:24;:::i;:::-;31635:35;;31580:96;;;:::o;31682:90::-;31716:7;31759:5;31752:13;31745:21;31734:32;;31682:90;;;:::o;31778:77::-;31815:7;31844:5;31833:16;;31778:77;;;:::o;31861:149::-;31897:7;31937:66;31930:5;31926:78;31915:89;;31861:149;;;:::o;32016:126::-;32053:7;32093:42;32086:5;32082:54;32071:65;;32016:126;;;:::o;32148:77::-;32185:7;32214:5;32203:16;;32148:77;;;:::o;32231:154::-;32315:6;32310:3;32305;32292:30;32377:1;32368:6;32363:3;32359:16;32352:27;32231:154;;;:::o;32391:307::-;32459:1;32469:113;32483:6;32480:1;32477:13;32469:113;;;32568:1;32563:3;32559:11;32553:18;32549:1;32544:3;32540:11;32533:39;32505:2;32502:1;32498:10;32493:15;;32469:113;;;32600:6;32597:1;32594:13;32591:101;;;32680:1;32671:6;32666:3;32662:16;32655:27;32591:101;32440:258;32391:307;;;:::o;32704:320::-;32748:6;32785:1;32779:4;32775:12;32765:22;;32832:1;32826:4;32822:12;32853:18;32843:81;;32909:4;32901:6;32897:17;32887:27;;32843:81;32971:2;32963:6;32960:14;32940:18;32937:38;32934:84;;;32990:18;;:::i;:::-;32934:84;32755:269;32704:320;;;:::o;33030:281::-;33113:27;33135:4;33113:27;:::i;:::-;33105:6;33101:40;33243:6;33231:10;33228:22;33207:18;33195:10;33192:34;33189:62;33186:88;;;33254:18;;:::i;:::-;33186:88;33294:10;33290:2;33283:22;33073:238;33030:281;;:::o;33317:233::-;33356:3;33379:24;33397:5;33379:24;:::i;:::-;33370:33;;33425:66;33418:5;33415:77;33412:103;;;33495:18;;:::i;:::-;33412:103;33542:1;33535:5;33531:13;33524:20;;33317:233;;;:::o;33556:100::-;33595:7;33624:26;33644:5;33624:26;:::i;:::-;33613:37;;33556:100;;;:::o;33662:94::-;33701:7;33730:20;33744:5;33730:20;:::i;:::-;33719:31;;33662:94;;;:::o;33762:180::-;33810:77;33807:1;33800:88;33907:4;33904:1;33897:15;33931:4;33928:1;33921:15;33948:180;33996:77;33993:1;33986:88;34093:4;34090:1;34083:15;34117:4;34114:1;34107:15;34134:180;34182:77;34179:1;34172:88;34279:4;34276:1;34269:15;34303:4;34300:1;34293:15;34320:180;34368:77;34365:1;34358:88;34465:4;34462:1;34455:15;34489:4;34486:1;34479:15;34506:180;34554:77;34551:1;34544:88;34651:4;34648:1;34641:15;34675:4;34672:1;34665:15;34692:117;34801:1;34798;34791:12;34815:117;34924:1;34921;34914:12;34938:117;35047:1;35044;35037:12;35061:117;35170:1;35167;35160:12;35184:117;35293:1;35290;35283:12;35307:102;35348:6;35399:2;35395:7;35390:2;35383:5;35379:14;35375:28;35365:38;;35307:102;;;:::o;35415:94::-;35448:8;35496:5;35492:2;35488:14;35467:35;;35415:94;;;:::o;35515:225::-;35655:34;35651:1;35643:6;35639:14;35632:58;35724:8;35719:2;35711:6;35707:15;35700:33;35515:225;:::o;35746:::-;35886:34;35882:1;35874:6;35870:14;35863:58;35955:8;35950:2;35942:6;35938:15;35931:33;35746:225;:::o;35977:172::-;36117:24;36113:1;36105:6;36101:14;36094:48;35977:172;:::o;36155:170::-;36295:22;36291:1;36283:6;36279:14;36272:46;36155:170;:::o;36331:173::-;36471:25;36467:1;36459:6;36455:14;36448:49;36331:173;:::o;36510:175::-;36650:27;36646:1;36638:6;36634:14;36627:51;36510:175;:::o;36691:166::-;36831:18;36827:1;36819:6;36815:14;36808:42;36691:166;:::o;36863:172::-;37003:24;36999:1;36991:6;36987:14;36980:48;36863:172;:::o;37041:155::-;37181:7;37177:1;37169:6;37165:14;37158:31;37041:155;:::o;37202:182::-;37342:34;37338:1;37330:6;37326:14;37319:58;37202:182;:::o;37390:177::-;37530:29;37526:1;37518:6;37514:14;37507:53;37390:177;:::o;37573:234::-;37713:34;37709:1;37701:6;37697:14;37690:58;37782:17;37777:2;37769:6;37765:15;37758:42;37573:234;:::o;37813:181::-;37953:33;37949:1;37941:6;37937:14;37930:57;37813:181;:::o;38000:114::-;;:::o;38120:171::-;38260:23;38256:1;38248:6;38244:14;38237:47;38120:171;:::o;38297:174::-;38437:26;38433:1;38425:6;38421:14;38414:50;38297:174;:::o;38477:168::-;38617:20;38613:1;38605:6;38601:14;38594:44;38477:168;:::o;38651:175::-;38791:27;38787:1;38779:6;38775:14;38768:51;38651:175;:::o;38832:122::-;38905:24;38923:5;38905:24;:::i;:::-;38898:5;38895:35;38885:63;;38944:1;38941;38934:12;38885:63;38832:122;:::o;38960:116::-;39030:21;39045:5;39030:21;:::i;:::-;39023:5;39020:32;39010:60;;39066:1;39063;39056:12;39010:60;38960:116;:::o;39082:122::-;39155:24;39173:5;39155:24;:::i;:::-;39148:5;39145:35;39135:63;;39194:1;39191;39184:12;39135:63;39082:122;:::o;39210:120::-;39282:23;39299:5;39282:23;:::i;:::-;39275:5;39272:34;39262:62;;39320:1;39317;39310:12;39262:62;39210:120;:::o;39336:122::-;39409:24;39427:5;39409:24;:::i;:::-;39402:5;39399:35;39389:63;;39448:1;39445;39438:12;39389:63;39336:122;:::o

Swarm Source

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