ETH Price: $3,377.64 (-1.93%)
Gas: 2 Gwei

Token

DasPepe (DPP)
 

Overview

Max Total Supply

3,333 DPP

Holders

1,573

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
inthearenatryingthings.eth
Balance
3 DPP
0xb6d19afe6de6c1ab49b964e202ebbf6b8e590a33
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:
DasPepe

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-09-11
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_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) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

    /**
     * @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: @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: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @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.7.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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

    /**
     * @dev Returns the account 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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/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: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

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

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

        // Execution should never reach this point.
        assert(false);
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

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

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

        revert UnableDetermineTokenOwner();
    }

    /**
     * @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 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 override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(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 tokenId < _currentIndex;
    }

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

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

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

//SPDX-License-Identifier: MIT
//IN BILLIONAIRE WE TRUST

/*
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#(((((##%&@@@@@@@@@&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#(((((%@@@@@@@@@@%(@@@/,,,,,,,,,,,,,,,,,,,,./%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&#(((%@@@@%*,,**(%@@@@@@&#((#((((((((((((((((###%%&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#(&@@@(,/&@@@@&%#(((((((((#@%(((((((((((((((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@@/(@@@&((((((((((((((((((((@@#(((((((((((((((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#(((((((((((((((((((((((((((((%@%(((((((((((((((((((((((((((((&@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#((((((((((((((((((((((((((((((@%(((((((((((((((((((((((((((((&@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#(((((((((((((((((((((((((((((((&&#(((((((((((((####(((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&#(((((((((((((((((####%%&&%%##(((@#((((%&&%#########%&@@@@@@(((@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%((((((((((#%@@@@@&#((((((((((((((&(((((((((((((((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#(((((((%#(((((((((((((((((((((((((#((((((((((((((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@&#((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((%@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@%#(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((%@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@#(((((((%&((((@@&((((((((((((((((((((((((((((((((((((((((((((((((((((((((((%@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@%(((((((@&((((@(///@@@&#(((((((((((((((##%%&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@%(////@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@#(((((((&((((@@&@@#/////////(((/////////////////////////////////////////////#@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@&#((((((((((((#@@&/(%@@@@%(/////////////////////////////////////////(#%@@@@@%#(#@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@&#(((((((((((((((((@@@@#/(##%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&%%######((//////&@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@#(((((((((((((((((((((((%@@@@@@@@@@&&%#((/////////////((((#%&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@#(((((((((((((((((((((((((((((((((((((((((((###(((((((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@%((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((&@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#((((((((((((((((((((((((((((((((((#&(((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((((((((((((((((((((((((((((#%##((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&(((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&((((((((((((((((((((((((((((((&@@@@@%((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((((((((((((((((((((((@&(%@#@@(((((((%@@@@@@@%&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#((((((((((((((((((((((((&@#(%@%#@#((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&#(@@#((((((@@@@@@@@@@@&&((&@((#@%(@@((%@@@@&%((((((&&#%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&#(((((((((((((((((((((((((((((%@#(#@&(#@(((((((((((((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@#(((((((((((((((((((((((((((#@@#@#((@&#(@@(((((((((((((((((((((((((((((@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@#(((((((((((((((((((((((((((#@%(((((@@#(##@@((((((((((((((((((((&(((((((%@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@#(((((((((((((((((((((((((((#@@(((((%@%(((%@&(((((((((((((((((((#@(((((((#@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@#(((((((((((((((@#((((((((((#@@@@%%##&&%%@@@@@#((((((((((((((((((#@@(((((((@@@@@@@@@@@@@@@@@@@@
*/


pragma solidity ^0.8.7;




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

    uint256 public constant MAX_SUPPLY = 3333;
    uint256 public constant WHITELIST_PRICE = 0.0069 ether;
    uint256 public constant PUBLIC_PRICE = 0.01 ether;

    uint256 public constant MAX_QUANTITY = 1;

    address public constant THE_BLUFF_WALLET = 0xCF5BC8b7eA1856373d969169060e2E5fFA78825A;
    address public constant DEV_WALLET = 0xAf28876b65f86C0dfAa0Eb5cBe0C5Cb7abf7CC3e;

    mapping(address => bool) public whitelistedMint;
    mapping(address => bool) public publicMint;
    mapping(address => uint256) public holdersMintAmt;

    bool public mintTime = false;
    bool public publicMintTime = false;

    string private baseTokenUri = "https://stfupals.mypinata.cloud/ipfs/QmW9VzAZ8EBV4CrESYqvZkd8jCuv61gttD334WCirrp9Fj/";

    bytes32 public holdersMerkleRoot = 0x07e1a5b2aa5adeac0870d2eb53677fb8369dc6dd6ab197a681c912e470a63aa2;
    bytes32 public whitelistMerkleRoot = 0xc6447635f3e99855115175950944a899c30ce4dfd3ef7ed4361c62de21d43d7c;

    constructor() ERC721A("DasPepe", "DPP") {

        _safeMint(THE_BLUFF_WALLET, 45);
        _safeMint(DEV_WALLET, 10);

    }

    function holdersMint(uint256 _quantity, bytes32[] calldata _merkleProof) external payable {

        require(_quantity > 0, "Quantity Cant be 0");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Out Of Stock!");
        require(mintTime, "It is not time to mint");
        require(holdersMintAmt[msg.sender] + _quantity <= 2, "Already Minted!");
        require(msg.value >= _quantity * WHITELIST_PRICE, "Not enough Ether");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, holdersMerkleRoot, leaf), "Invalid Merkle Proof");

            holdersMintAmt[msg.sender] += _quantity;
            _safeMint(msg.sender, _quantity);


    }

    function whitelistMint(bytes32[] calldata _merkleProof) external payable {

        require((totalSupply() + 1) <= MAX_SUPPLY, "Out Of Stock!");
        require(mintTime, "It is not time to mint");
        require(whitelistedMint[msg.sender] == false, "Already Minted!");
        require(msg.value >= WHITELIST_PRICE, "Not enough Ether");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf), "Invalid Merkle Proof");

            whitelistedMint[msg.sender] = true;
            _safeMint(msg.sender, MAX_QUANTITY);

    }

    function mint() external payable {

        require((totalSupply() + 1) <= MAX_SUPPLY, "Out Of Stock!");
        require(publicMintTime, "It is not time to mint");
        require(publicMint[msg.sender] == false, "Already Minted!");
        require(msg.value >= PUBLIC_PRICE, "Not enough Ether");

            publicMint[msg.sender] = true;
            _safeMint(msg.sender, MAX_QUANTITY);

    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        uint256 trueId = tokenId;

        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
    }

    function setTokenURI(string memory _baseTokenUri) external onlyOwner {
        baseTokenUri = _baseTokenUri;
    }

    function flipState() public onlyOwner {

        mintTime = !mintTime;
    }

    function flipStatePublic() public onlyOwner {

        publicMintTime = !publicMintTime;
    }

    function setHoldersMerkleRoot(bytes32 _merkleRoot) public onlyOwner {

        holdersMerkleRoot = _merkleRoot;

    }

    function setWhitelistMerkleRoot(bytes32 _merkleRoot) public onlyOwner {

        whitelistMerkleRoot = _merkleRoot;

    }

    function withdraw() external onlyOwner {

        uint256 balance = address(this).balance;

        Address.sendValue(payable(owner()), balance);
    }

}

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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","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":"DEV_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"THE_BLUFF_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipStatePublic","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":[],"name":"holdersMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"holdersMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holdersMintAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setHoldersMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff02191690831515021790555060405180608001604052806054815260200162004e3d60549139600c90805190602001906200006b9291906200084d565b507f07e1a5b2aa5adeac0870d2eb53677fb8369dc6dd6ab197a681c912e470a63aa260001b600d557fc6447635f3e99855115175950944a899c30ce4dfd3ef7ed4361c62de21d43d7c60001b600e55348015620000c757600080fd5b506040518060400160405280600781526020017f44617350657065000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f445050000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200014c9291906200084d565b508060029080519060200190620001659291906200084d565b505050620001886200017c620001dc60201b60201c565b620001e460201b60201c565b620001af73cf5bc8b7ea1856373d969169060e2e5ffa78825a602d620002aa60201b60201c565b620001d673af28876b65f86c0dfaa0eb5cbe0c5cb7abf7cc3e600a620002aa60201b60201c565b62000b4e565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002cc828260405180602001604052806000815250620002d060201b60201c565b5050565b620002e58383836001620002ea60201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000358576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000394576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003a960008683876200066f60201b60201c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156200064a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015620005fc5750620005fa60008884886200067560201b60201c565b155b1562000634576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505062000577565b5080600081905550506200066860008683876200082460201b60201c565b5050505050565b50505050565b6000620006a38473ffffffffffffffffffffffffffffffffffffffff166200082a60201b62001d721760201c565b1562000817578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006d5620001dc60201b60201c565b8786866040518563ffffffff1660e01b8152600401620006f99493929190620009a9565b602060405180830381600087803b1580156200071457600080fd5b505af19250505080156200074857506040513d601f19601f8201168201806040525081019062000745919062000914565b60015b620007c6573d80600081146200077b576040519150601f19603f3d011682016040523d82523d6000602084013e62000780565b606091505b50600081511415620007be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200081c565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546200085b9062000ab9565b90600052602060002090601f0160209004810192826200087f5760008555620008cb565b82601f106200089a57805160ff1916838001178555620008cb565b82800160010185558215620008cb579182015b82811115620008ca578251825591602001919060010190620008ad565b5b509050620008da9190620008de565b5090565b5b80821115620008f9576000816000905550600101620008df565b5090565b6000815190506200090e8162000b34565b92915050565b6000602082840312156200092d576200092c62000b1e565b5b60006200093d84828501620008fd565b91505092915050565b620009518162000a19565b82525050565b60006200096482620009fd565b62000970818562000a08565b93506200098281856020860162000a83565b6200098d8162000b23565b840191505092915050565b620009a38162000a79565b82525050565b6000608082019050620009c0600083018762000946565b620009cf602083018662000946565b620009de604083018562000998565b8181036060830152620009f2818462000957565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b600062000a268262000a59565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000aa357808201518184015260208101905062000a86565b8381111562000ab3576000848401525b50505050565b6000600282049050600182168062000ad257607f821691505b6020821081141562000ae95762000ae862000aef565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b62000b3f8162000a2d565b811462000b4b57600080fd5b50565b6142df8062000b5e6000396000f3fe6080604052600436106102465760003560e01c8063611f3f1011610139578063a2e8bed9116100b6578063c87b56dd1161007a578063c87b56dd1461081f578063e0df5b6f1461085c578063e41ee46a14610885578063e5f96dcf146108b0578063e985e9c5146108ed578063f2fde38b1461092a57610246565b8063a2e8bed91461073a578063aa98e0c614610765578063b88d4fde14610790578063bd32fb66146107b9578063c204bbea146107e257610246565b80638da5cb5b116100fd5780638da5cb5b146106885780638e920351146106b357806393214df6146106ca57806395d89b41146106e6578063a22cb4651461071157610246565b8063611f3f10146105a15780636352211e146105cc57806370a0823114610609578063715018a614610646578063864781221461065d57610246565b80632f745c59116101c757806342842e0e1161018b57806342842e0e146104bc5780634f6ccce7146104e557806355523b14146105225780635d4d8db31461054d5780635e4034721461057657610246565b80632f745c59146103e457806332a93a3a1461042157806332cb6b0c1461045e578063372f657c146104895780633ccfd60b146104a557610246565b80631670ea861161020e5780631670ea861461032357806317e7f2951461033a57806318160ddd1461036557806323b872dd146103905780632d04f820146103b957610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780631249c58b14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906133ba565b610953565b60405161027f91906138ec565b60405180910390f35b34801561029457600080fd5b5061029d610a9d565b6040516102aa9190613922565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d5919061345d565b610b2f565b6040516102e79190613885565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613300565b610bab565b005b610321610cb6565b005b34801561032f57600080fd5b50610338610e9f565b005b34801561034657600080fd5b5061034f610ed3565b60405161035c9190613aa4565b60405180910390f35b34801561037157600080fd5b5061037a610ede565b6040516103879190613aa4565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b291906131ea565b610ee7565b005b3480156103c557600080fd5b506103ce610ef7565b6040516103db9190613885565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190613300565b610f0f565b6040516104189190613aa4565b60405180910390f35b34801561042d57600080fd5b506104486004803603810190610443919061317d565b6110d0565b60405161045591906138ec565b60405180910390f35b34801561046a57600080fd5b506104736110f0565b6040516104809190613aa4565b60405180910390f35b6104a3600480360381019061049e9190613340565b6110f6565b005b3480156104b157600080fd5b506104ba61139a565b005b3480156104c857600080fd5b506104e360048036038101906104de91906131ea565b6113bb565b005b3480156104f157600080fd5b5061050c6004803603810190610507919061345d565b6113db565b6040516105199190613aa4565b60405180910390f35b34801561052e57600080fd5b50610537611425565b6040516105449190613885565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f919061338d565b61143d565b005b34801561058257600080fd5b5061058b61144f565b60405161059891906138ec565b60405180910390f35b3480156105ad57600080fd5b506105b6611462565b6040516105c39190613aa4565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee919061345d565b61146d565b6040516106009190613885565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b919061317d565b611483565b60405161063d9190613aa4565b60405180910390f35b34801561065257600080fd5b5061065b611563565b005b34801561066957600080fd5b50610672611577565b60405161067f91906138ec565b60405180910390f35b34801561069457600080fd5b5061069d61158a565b6040516106aa9190613885565b60405180910390f35b3480156106bf57600080fd5b506106c86115b4565b005b6106e460048036038101906106df919061348a565b6115e8565b005b3480156106f257600080fd5b506106fb6118d2565b6040516107089190613922565b60405180910390f35b34801561071d57600080fd5b50610738600480360381019061073391906132c0565b611964565b005b34801561074657600080fd5b5061074f611adc565b60405161075c9190613907565b60405180910390f35b34801561077157600080fd5b5061077a611ae2565b6040516107879190613907565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b2919061323d565b611ae8565b005b3480156107c557600080fd5b506107e060048036038101906107db919061338d565b611b3b565b005b3480156107ee57600080fd5b506108096004803603810190610804919061317d565b611b4d565b6040516108169190613aa4565b60405180910390f35b34801561082b57600080fd5b506108466004803603810190610841919061345d565b611b65565b6040516108539190613922565b60405180910390f35b34801561086857600080fd5b50610883600480360381019061087e9190613414565b611c13565b005b34801561089157600080fd5b5061089a611c35565b6040516108a79190613aa4565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d2919061317d565b611c3a565b6040516108e491906138ec565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f91906131aa565b611c5a565b60405161092191906138ec565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c919061317d565b611cee565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a8657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a965750610a9582611d95565b5b9050919050565b606060018054610aac90613d7e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad890613d7e565b8015610b255780601f10610afa57610100808354040283529160200191610b25565b820191906000526020600020905b815481529060010190602001808311610b0857829003601f168201915b5050505050905090565b6000610b3a82611dff565b610b70576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb68261146d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c1e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c3d611e0c565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c6f5750610c6d81610c68611e0c565b611c5a565b155b15610ca6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb1838383611e14565b505050565b610d056001610cc3610ede565b610ccd9190613ba9565b1115610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590613944565b60405180910390fd5b600b60019054906101000a900460ff16610d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5490613a24565b60405180910390fd5b60001515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613984565b60405180910390fd5b662386f26fc10000341015610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190613a44565b60405180910390fd5b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e9d336001611ec6565b565b610ea7611ee4565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b6618838370f3400081565b60008054905090565b610ef2838383611f62565b505050565b73af28876b65f86c0dfaa0eb5cbe0c5cb7abf7cc3e81565b6000610f1a83611483565b8210610f52576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f5c610ede565b905060008060005b838110156110b6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461105657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110a8578684141561109f5781955050505050506110ca565b83806001019450505b508080600101915050610f64565b5060006110c6576110c5613e7f565b5b5050505b92915050565b60096020528060005260406000206000915054906101000a900460ff1681565b610d0581565b610d056001611103610ede565b61110d9190613ba9565b111561114e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114590613944565b60405180910390fd5b600b60009054906101000a900460ff1661119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490613a24565b60405180910390fd5b60001515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122790613984565b60405180910390fd5b6618838370f3400034101561127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190613a44565b60405180910390fd5b60003360405160200161128d9190613826565b6040516020818303038152906040528051906020012090506112f3838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483612487565b611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990613a84565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611395336001611ec6565b505050565b6113a2611ee4565b60004790506113b86113b261158a565b8261249e565b50565b6113d683838360405180602001604052806000815250611ae8565b505050565b60006113e5610ede565b821061141d576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b73cf5bc8b7ea1856373d969169060e2e5ffa78825a81565b611445611ee4565b80600d8190555050565b600b60019054906101000a900460ff1681565b662386f26fc1000081565b600061147882612592565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114eb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61156b611ee4565b611575600061271a565b565b600b60009054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115bc611ee4565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000831161162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290613a64565b60405180910390fd5b610d0583611637610ede565b6116419190613ba9565b1115611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990613944565b60405180910390fd5b600b60009054906101000a900460ff166116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c890613a24565b60405180910390fd5b600283600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461171e9190613ba9565b111561175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175690613984565b60405180910390fd5b6618838370f34000836117729190613c30565b3410156117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab90613a44565b60405180910390fd5b6000336040516020016117c79190613826565b60405160208183030381529060405280519060200120905061182d838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483612487565b61186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390613a84565b60405180910390fd5b83600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118bb9190613ba9565b925050819055506118cc3385611ec6565b50505050565b6060600280546118e190613d7e565b80601f016020809104026020016040519081016040528092919081815260200182805461190d90613d7e565b801561195a5780601f1061192f5761010080835404028352916020019161195a565b820191906000526020600020905b81548152906001019060200180831161193d57829003601f168201915b5050505050905090565b61196c611e0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006119de611e0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a8b611e0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad091906138ec565b60405180910390a35050565b600d5481565b600e5481565b611af3848484611f62565b611aff848484846127e0565b611b35576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611b43611ee4565b80600e8190555050565b600a6020528060005260406000206000915090505481565b6060611b7082611dff565b611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba690613a04565b60405180910390fd5b60008290506000600c8054611bc390613d7e565b905011611bdf5760405180602001604052806000815250611c0b565b600c611bea8261296e565b604051602001611bfb929190613841565b6040516020818303038152906040525b915050919050565b611c1b611ee4565b80600c9080519060200190611c31929190612eec565b5050565b600181565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cf6611ee4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d90613964565b60405180910390fd5b611d6f8161271a565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611ee0828260405180602001604052806000815250612acf565b5050565b611eec611e0c565b73ffffffffffffffffffffffffffffffffffffffff16611f0a61158a565b73ffffffffffffffffffffffffffffffffffffffff1614611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f57906139e4565b60405180910390fd5b565b6000611f6d82612592565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f94611e0c565b73ffffffffffffffffffffffffffffffffffffffff161480611ff05750611fb9611e0c565b73ffffffffffffffffffffffffffffffffffffffff16611fd884610b2f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061200c575061200b8260000151612006611e0c565b611c5a565b5b905080612045576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120ae576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612115576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121228585856001612ae1565b6121326000848460000151611e14565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124175761237681611dff565b156124165782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124808585856001612ae7565b5050505050565b6000826124948584612aed565b1490509392505050565b804710156124e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d8906139c4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161250790613870565b60006040518083038185875af1925050503d8060008114612544576040519150601f19603f3d011682016040523d82523d6000602084013e612549565b606091505b505090508061258d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612584906139a4565b60405180910390fd5b505050565b61259a612f72565b6125a382611dff565b6125d9576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b600081106126e2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126d3578092505050612715565b508080600190039150506125df565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006128018473ffffffffffffffffffffffffffffffffffffffff16611d72565b15612961578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261282a611e0c565b8786866040518563ffffffff1660e01b815260040161284c94939291906138a0565b602060405180830381600087803b15801561286657600080fd5b505af192505050801561289757506040513d601f19601f8201168201806040525081019061289491906133e7565b60015b612911573d80600081146128c7576040519150601f19603f3d011682016040523d82523d6000602084013e6128cc565b606091505b50600081511415612909576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612966565b600190505b949350505050565b606060008214156129b6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aca565b600082905060005b600082146129e85780806129d190613de1565b915050600a826129e19190613bff565b91506129be565b60008167ffffffffffffffff811115612a0457612a03613f6a565b5b6040519080825280601f01601f191660200182016040528015612a365781602001600182028036833780820191505090505b5090505b60008514612ac357600182612a4f9190613c8a565b9150600a85612a5e9190613e4e565b6030612a6a9190613ba9565b60f81b818381518110612a8057612a7f613f3b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612abc9190613bff565b9450612a3a565b8093505050505b919050565b612adc8383836001612b43565b505050565b50505050565b50505050565b60008082905060005b8451811015612b3857612b2382868381518110612b1657612b15613f3b565b5b6020026020010151612eaa565b91508080612b3090613de1565b915050612af6565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612bb0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612beb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bf86000868387612ae1565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e8d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612e415750612e3f60008884886127e0565b155b15612e78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612dc6565b508060008190555050612ea36000868387612ae7565b5050505050565b6000818310612ec257612ebd8284612ed5565b612ecd565b612ecc8383612ed5565b5b905092915050565b600082600052816020526040600020905092915050565b828054612ef890613d7e565b90600052602060002090601f016020900481019282612f1a5760008555612f61565b82601f10612f3357805160ff1916838001178555612f61565b82800160010185558215612f61579182015b82811115612f60578251825591602001919060010190612f45565b5b509050612f6e9190612fac565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612fc5576000816000905550600101612fad565b5090565b6000612fdc612fd784613ae4565b613abf565b905082815260208101848484011115612ff857612ff7613fa8565b5b613003848285613d3c565b509392505050565b600061301e61301984613b15565b613abf565b90508281526020810184848401111561303a57613039613fa8565b5b613045848285613d3c565b509392505050565b60008135905061305c81614236565b92915050565b60008083601f84011261307857613077613f9e565b5b8235905067ffffffffffffffff81111561309557613094613f99565b5b6020830191508360208202830111156130b1576130b0613fa3565b5b9250929050565b6000813590506130c78161424d565b92915050565b6000813590506130dc81614264565b92915050565b6000813590506130f18161427b565b92915050565b6000815190506131068161427b565b92915050565b600082601f83011261312157613120613f9e565b5b8135613131848260208601612fc9565b91505092915050565b600082601f83011261314f5761314e613f9e565b5b813561315f84826020860161300b565b91505092915050565b60008135905061317781614292565b92915050565b60006020828403121561319357613192613fb2565b5b60006131a18482850161304d565b91505092915050565b600080604083850312156131c1576131c0613fb2565b5b60006131cf8582860161304d565b92505060206131e08582860161304d565b9150509250929050565b60008060006060848603121561320357613202613fb2565b5b60006132118682870161304d565b93505060206132228682870161304d565b925050604061323386828701613168565b9150509250925092565b6000806000806080858703121561325757613256613fb2565b5b60006132658782880161304d565b94505060206132768782880161304d565b935050604061328787828801613168565b925050606085013567ffffffffffffffff8111156132a8576132a7613fad565b5b6132b48782880161310c565b91505092959194509250565b600080604083850312156132d7576132d6613fb2565b5b60006132e58582860161304d565b92505060206132f6858286016130b8565b9150509250929050565b6000806040838503121561331757613316613fb2565b5b60006133258582860161304d565b925050602061333685828601613168565b9150509250929050565b6000806020838503121561335757613356613fb2565b5b600083013567ffffffffffffffff81111561337557613374613fad565b5b61338185828601613062565b92509250509250929050565b6000602082840312156133a3576133a2613fb2565b5b60006133b1848285016130cd565b91505092915050565b6000602082840312156133d0576133cf613fb2565b5b60006133de848285016130e2565b91505092915050565b6000602082840312156133fd576133fc613fb2565b5b600061340b848285016130f7565b91505092915050565b60006020828403121561342a57613429613fb2565b5b600082013567ffffffffffffffff81111561344857613447613fad565b5b6134548482850161313a565b91505092915050565b60006020828403121561347357613472613fb2565b5b600061348184828501613168565b91505092915050565b6000806000604084860312156134a3576134a2613fb2565b5b60006134b186828701613168565b935050602084013567ffffffffffffffff8111156134d2576134d1613fad565b5b6134de86828701613062565b92509250509250925092565b6134f381613cbe565b82525050565b61350a61350582613cbe565b613e2a565b82525050565b61351981613cd0565b82525050565b61352881613cdc565b82525050565b600061353982613b5b565b6135438185613b71565b9350613553818560208601613d4b565b61355c81613fb7565b840191505092915050565b600061357282613b66565b61357c8185613b8d565b935061358c818560208601613d4b565b61359581613fb7565b840191505092915050565b60006135ab82613b66565b6135b58185613b9e565b93506135c5818560208601613d4b565b80840191505092915050565b600081546135de81613d7e565b6135e88186613b9e565b94506001821660008114613603576001811461361457613647565b60ff19831686528186019350613647565b61361d85613b46565b60005b8381101561363f57815481890152600182019150602081019050613620565b838801955050505b50505092915050565b600061365d600d83613b8d565b915061366882613fd5565b602082019050919050565b6000613680602683613b8d565b915061368b82613ffe565b604082019050919050565b60006136a3600f83613b8d565b91506136ae8261404d565b602082019050919050565b60006136c6603a83613b8d565b91506136d182614076565b604082019050919050565b60006136e9601d83613b8d565b91506136f4826140c5565b602082019050919050565b600061370c600583613b9e565b9150613717826140ee565b600582019050919050565b600061372f602083613b8d565b915061373a82614117565b602082019050919050565b6000613752602f83613b8d565b915061375d82614140565b604082019050919050565b6000613775601683613b8d565b91506137808261418f565b602082019050919050565b6000613798600083613b82565b91506137a3826141b8565b600082019050919050565b60006137bb601083613b8d565b91506137c6826141bb565b602082019050919050565b60006137de601283613b8d565b91506137e9826141e4565b602082019050919050565b6000613801601483613b8d565b915061380c8261420d565b602082019050919050565b61382081613d32565b82525050565b600061383282846134f9565b60148201915081905092915050565b600061384d82856135d1565b915061385982846135a0565b9150613864826136ff565b91508190509392505050565b600061387b8261378b565b9150819050919050565b600060208201905061389a60008301846134ea565b92915050565b60006080820190506138b560008301876134ea565b6138c260208301866134ea565b6138cf6040830185613817565b81810360608301526138e1818461352e565b905095945050505050565b60006020820190506139016000830184613510565b92915050565b600060208201905061391c600083018461351f565b92915050565b6000602082019050818103600083015261393c8184613567565b905092915050565b6000602082019050818103600083015261395d81613650565b9050919050565b6000602082019050818103600083015261397d81613673565b9050919050565b6000602082019050818103600083015261399d81613696565b9050919050565b600060208201905081810360008301526139bd816136b9565b9050919050565b600060208201905081810360008301526139dd816136dc565b9050919050565b600060208201905081810360008301526139fd81613722565b9050919050565b60006020820190508181036000830152613a1d81613745565b9050919050565b60006020820190508181036000830152613a3d81613768565b9050919050565b60006020820190508181036000830152613a5d816137ae565b9050919050565b60006020820190508181036000830152613a7d816137d1565b9050919050565b60006020820190508181036000830152613a9d816137f4565b9050919050565b6000602082019050613ab96000830184613817565b92915050565b6000613ac9613ada565b9050613ad58282613db0565b919050565b6000604051905090565b600067ffffffffffffffff821115613aff57613afe613f6a565b5b613b0882613fb7565b9050602081019050919050565b600067ffffffffffffffff821115613b3057613b2f613f6a565b5b613b3982613fb7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bb482613d32565b9150613bbf83613d32565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bf457613bf3613eae565b5b828201905092915050565b6000613c0a82613d32565b9150613c1583613d32565b925082613c2557613c24613edd565b5b828204905092915050565b6000613c3b82613d32565b9150613c4683613d32565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c7f57613c7e613eae565b5b828202905092915050565b6000613c9582613d32565b9150613ca083613d32565b925082821015613cb357613cb2613eae565b5b828203905092915050565b6000613cc982613d12565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d69578082015181840152602081019050613d4e565b83811115613d78576000848401525b50505050565b60006002820490506001821680613d9657607f821691505b60208210811415613daa57613da9613f0c565b5b50919050565b613db982613fb7565b810181811067ffffffffffffffff82111715613dd857613dd7613f6a565b5b80604052505050565b6000613dec82613d32565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e1f57613e1e613eae565b5b600182019050919050565b6000613e3582613e3c565b9050919050565b6000613e4782613fc8565b9050919050565b6000613e5982613d32565b9150613e6483613d32565b925082613e7457613e73613edd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f7574204f662053746f636b2100000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c7265616479204d696e746564210000000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4974206973206e6f742074696d6520746f206d696e7400000000000000000000600082015250565b50565b7f4e6f7420656e6f75676820457468657200000000000000000000000000000000600082015250565b7f5175616e746974792043616e7420626520300000000000000000000000000000600082015250565b7f496e76616c6964204d65726b6c652050726f6f66000000000000000000000000600082015250565b61423f81613cbe565b811461424a57600080fd5b50565b61425681613cd0565b811461426157600080fd5b50565b61426d81613cdc565b811461427857600080fd5b50565b61428481613ce6565b811461428f57600080fd5b50565b61429b81613d32565b81146142a657600080fd5b5056fea26469706673582212208dee40ca52d2910f41e578b90327616bf317f4b94e25374fa34a8cf8a9f9148164736f6c6343000807003368747470733a2f2f7374667570616c732e6d7970696e6174612e636c6f75642f697066732f516d5739567a415a3845425634437245535971765a6b64386a43757636316774744433333457436972727039466a2f

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063611f3f1011610139578063a2e8bed9116100b6578063c87b56dd1161007a578063c87b56dd1461081f578063e0df5b6f1461085c578063e41ee46a14610885578063e5f96dcf146108b0578063e985e9c5146108ed578063f2fde38b1461092a57610246565b8063a2e8bed91461073a578063aa98e0c614610765578063b88d4fde14610790578063bd32fb66146107b9578063c204bbea146107e257610246565b80638da5cb5b116100fd5780638da5cb5b146106885780638e920351146106b357806393214df6146106ca57806395d89b41146106e6578063a22cb4651461071157610246565b8063611f3f10146105a15780636352211e146105cc57806370a0823114610609578063715018a614610646578063864781221461065d57610246565b80632f745c59116101c757806342842e0e1161018b57806342842e0e146104bc5780634f6ccce7146104e557806355523b14146105225780635d4d8db31461054d5780635e4034721461057657610246565b80632f745c59146103e457806332a93a3a1461042157806332cb6b0c1461045e578063372f657c146104895780633ccfd60b146104a557610246565b80631670ea861161020e5780631670ea861461032357806317e7f2951461033a57806318160ddd1461036557806323b872dd146103905780632d04f820146103b957610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780631249c58b14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906133ba565b610953565b60405161027f91906138ec565b60405180910390f35b34801561029457600080fd5b5061029d610a9d565b6040516102aa9190613922565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d5919061345d565b610b2f565b6040516102e79190613885565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613300565b610bab565b005b610321610cb6565b005b34801561032f57600080fd5b50610338610e9f565b005b34801561034657600080fd5b5061034f610ed3565b60405161035c9190613aa4565b60405180910390f35b34801561037157600080fd5b5061037a610ede565b6040516103879190613aa4565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b291906131ea565b610ee7565b005b3480156103c557600080fd5b506103ce610ef7565b6040516103db9190613885565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190613300565b610f0f565b6040516104189190613aa4565b60405180910390f35b34801561042d57600080fd5b506104486004803603810190610443919061317d565b6110d0565b60405161045591906138ec565b60405180910390f35b34801561046a57600080fd5b506104736110f0565b6040516104809190613aa4565b60405180910390f35b6104a3600480360381019061049e9190613340565b6110f6565b005b3480156104b157600080fd5b506104ba61139a565b005b3480156104c857600080fd5b506104e360048036038101906104de91906131ea565b6113bb565b005b3480156104f157600080fd5b5061050c6004803603810190610507919061345d565b6113db565b6040516105199190613aa4565b60405180910390f35b34801561052e57600080fd5b50610537611425565b6040516105449190613885565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f919061338d565b61143d565b005b34801561058257600080fd5b5061058b61144f565b60405161059891906138ec565b60405180910390f35b3480156105ad57600080fd5b506105b6611462565b6040516105c39190613aa4565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee919061345d565b61146d565b6040516106009190613885565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b919061317d565b611483565b60405161063d9190613aa4565b60405180910390f35b34801561065257600080fd5b5061065b611563565b005b34801561066957600080fd5b50610672611577565b60405161067f91906138ec565b60405180910390f35b34801561069457600080fd5b5061069d61158a565b6040516106aa9190613885565b60405180910390f35b3480156106bf57600080fd5b506106c86115b4565b005b6106e460048036038101906106df919061348a565b6115e8565b005b3480156106f257600080fd5b506106fb6118d2565b6040516107089190613922565b60405180910390f35b34801561071d57600080fd5b50610738600480360381019061073391906132c0565b611964565b005b34801561074657600080fd5b5061074f611adc565b60405161075c9190613907565b60405180910390f35b34801561077157600080fd5b5061077a611ae2565b6040516107879190613907565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b2919061323d565b611ae8565b005b3480156107c557600080fd5b506107e060048036038101906107db919061338d565b611b3b565b005b3480156107ee57600080fd5b506108096004803603810190610804919061317d565b611b4d565b6040516108169190613aa4565b60405180910390f35b34801561082b57600080fd5b506108466004803603810190610841919061345d565b611b65565b6040516108539190613922565b60405180910390f35b34801561086857600080fd5b50610883600480360381019061087e9190613414565b611c13565b005b34801561089157600080fd5b5061089a611c35565b6040516108a79190613aa4565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d2919061317d565b611c3a565b6040516108e491906138ec565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f91906131aa565b611c5a565b60405161092191906138ec565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c919061317d565b611cee565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a8657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a965750610a9582611d95565b5b9050919050565b606060018054610aac90613d7e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad890613d7e565b8015610b255780601f10610afa57610100808354040283529160200191610b25565b820191906000526020600020905b815481529060010190602001808311610b0857829003601f168201915b5050505050905090565b6000610b3a82611dff565b610b70576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb68261146d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c1e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c3d611e0c565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c6f5750610c6d81610c68611e0c565b611c5a565b155b15610ca6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb1838383611e14565b505050565b610d056001610cc3610ede565b610ccd9190613ba9565b1115610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590613944565b60405180910390fd5b600b60019054906101000a900460ff16610d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5490613a24565b60405180910390fd5b60001515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613984565b60405180910390fd5b662386f26fc10000341015610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190613a44565b60405180910390fd5b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e9d336001611ec6565b565b610ea7611ee4565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b6618838370f3400081565b60008054905090565b610ef2838383611f62565b505050565b73af28876b65f86c0dfaa0eb5cbe0c5cb7abf7cc3e81565b6000610f1a83611483565b8210610f52576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f5c610ede565b905060008060005b838110156110b6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461105657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110a8578684141561109f5781955050505050506110ca565b83806001019450505b508080600101915050610f64565b5060006110c6576110c5613e7f565b5b5050505b92915050565b60096020528060005260406000206000915054906101000a900460ff1681565b610d0581565b610d056001611103610ede565b61110d9190613ba9565b111561114e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114590613944565b60405180910390fd5b600b60009054906101000a900460ff1661119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490613a24565b60405180910390fd5b60001515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122790613984565b60405180910390fd5b6618838370f3400034101561127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190613a44565b60405180910390fd5b60003360405160200161128d9190613826565b6040516020818303038152906040528051906020012090506112f3838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483612487565b611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990613a84565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611395336001611ec6565b505050565b6113a2611ee4565b60004790506113b86113b261158a565b8261249e565b50565b6113d683838360405180602001604052806000815250611ae8565b505050565b60006113e5610ede565b821061141d576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b73cf5bc8b7ea1856373d969169060e2e5ffa78825a81565b611445611ee4565b80600d8190555050565b600b60019054906101000a900460ff1681565b662386f26fc1000081565b600061147882612592565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114eb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61156b611ee4565b611575600061271a565b565b600b60009054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115bc611ee4565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000831161162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290613a64565b60405180910390fd5b610d0583611637610ede565b6116419190613ba9565b1115611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990613944565b60405180910390fd5b600b60009054906101000a900460ff166116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c890613a24565b60405180910390fd5b600283600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461171e9190613ba9565b111561175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175690613984565b60405180910390fd5b6618838370f34000836117729190613c30565b3410156117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab90613a44565b60405180910390fd5b6000336040516020016117c79190613826565b60405160208183030381529060405280519060200120905061182d838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483612487565b61186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390613a84565b60405180910390fd5b83600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118bb9190613ba9565b925050819055506118cc3385611ec6565b50505050565b6060600280546118e190613d7e565b80601f016020809104026020016040519081016040528092919081815260200182805461190d90613d7e565b801561195a5780601f1061192f5761010080835404028352916020019161195a565b820191906000526020600020905b81548152906001019060200180831161193d57829003601f168201915b5050505050905090565b61196c611e0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006119de611e0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a8b611e0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad091906138ec565b60405180910390a35050565b600d5481565b600e5481565b611af3848484611f62565b611aff848484846127e0565b611b35576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611b43611ee4565b80600e8190555050565b600a6020528060005260406000206000915090505481565b6060611b7082611dff565b611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba690613a04565b60405180910390fd5b60008290506000600c8054611bc390613d7e565b905011611bdf5760405180602001604052806000815250611c0b565b600c611bea8261296e565b604051602001611bfb929190613841565b6040516020818303038152906040525b915050919050565b611c1b611ee4565b80600c9080519060200190611c31929190612eec565b5050565b600181565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cf6611ee4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d90613964565b60405180910390fd5b611d6f8161271a565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611ee0828260405180602001604052806000815250612acf565b5050565b611eec611e0c565b73ffffffffffffffffffffffffffffffffffffffff16611f0a61158a565b73ffffffffffffffffffffffffffffffffffffffff1614611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f57906139e4565b60405180910390fd5b565b6000611f6d82612592565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f94611e0c565b73ffffffffffffffffffffffffffffffffffffffff161480611ff05750611fb9611e0c565b73ffffffffffffffffffffffffffffffffffffffff16611fd884610b2f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061200c575061200b8260000151612006611e0c565b611c5a565b5b905080612045576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120ae576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612115576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121228585856001612ae1565b6121326000848460000151611e14565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124175761237681611dff565b156124165782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124808585856001612ae7565b5050505050565b6000826124948584612aed565b1490509392505050565b804710156124e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d8906139c4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161250790613870565b60006040518083038185875af1925050503d8060008114612544576040519150601f19603f3d011682016040523d82523d6000602084013e612549565b606091505b505090508061258d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612584906139a4565b60405180910390fd5b505050565b61259a612f72565b6125a382611dff565b6125d9576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b600081106126e2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126d3578092505050612715565b508080600190039150506125df565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006128018473ffffffffffffffffffffffffffffffffffffffff16611d72565b15612961578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261282a611e0c565b8786866040518563ffffffff1660e01b815260040161284c94939291906138a0565b602060405180830381600087803b15801561286657600080fd5b505af192505050801561289757506040513d601f19601f8201168201806040525081019061289491906133e7565b60015b612911573d80600081146128c7576040519150601f19603f3d011682016040523d82523d6000602084013e6128cc565b606091505b50600081511415612909576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612966565b600190505b949350505050565b606060008214156129b6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aca565b600082905060005b600082146129e85780806129d190613de1565b915050600a826129e19190613bff565b91506129be565b60008167ffffffffffffffff811115612a0457612a03613f6a565b5b6040519080825280601f01601f191660200182016040528015612a365781602001600182028036833780820191505090505b5090505b60008514612ac357600182612a4f9190613c8a565b9150600a85612a5e9190613e4e565b6030612a6a9190613ba9565b60f81b818381518110612a8057612a7f613f3b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612abc9190613bff565b9450612a3a565b8093505050505b919050565b612adc8383836001612b43565b505050565b50505050565b50505050565b60008082905060005b8451811015612b3857612b2382868381518110612b1657612b15613f3b565b5b6020026020010151612eaa565b91508080612b3090613de1565b915050612af6565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612bb0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612beb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bf86000868387612ae1565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e8d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612e415750612e3f60008884886127e0565b155b15612e78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612dc6565b508060008190555050612ea36000868387612ae7565b5050505050565b6000818310612ec257612ebd8284612ed5565b612ecd565b612ecc8383612ed5565b5b905092915050565b600082600052816020526040600020905092915050565b828054612ef890613d7e565b90600052602060002090601f016020900481019282612f1a5760008555612f61565b82601f10612f3357805160ff1916838001178555612f61565b82800160010185558215612f61579182015b82811115612f60578251825591602001919060010190612f45565b5b509050612f6e9190612fac565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612fc5576000816000905550600101612fad565b5090565b6000612fdc612fd784613ae4565b613abf565b905082815260208101848484011115612ff857612ff7613fa8565b5b613003848285613d3c565b509392505050565b600061301e61301984613b15565b613abf565b90508281526020810184848401111561303a57613039613fa8565b5b613045848285613d3c565b509392505050565b60008135905061305c81614236565b92915050565b60008083601f84011261307857613077613f9e565b5b8235905067ffffffffffffffff81111561309557613094613f99565b5b6020830191508360208202830111156130b1576130b0613fa3565b5b9250929050565b6000813590506130c78161424d565b92915050565b6000813590506130dc81614264565b92915050565b6000813590506130f18161427b565b92915050565b6000815190506131068161427b565b92915050565b600082601f83011261312157613120613f9e565b5b8135613131848260208601612fc9565b91505092915050565b600082601f83011261314f5761314e613f9e565b5b813561315f84826020860161300b565b91505092915050565b60008135905061317781614292565b92915050565b60006020828403121561319357613192613fb2565b5b60006131a18482850161304d565b91505092915050565b600080604083850312156131c1576131c0613fb2565b5b60006131cf8582860161304d565b92505060206131e08582860161304d565b9150509250929050565b60008060006060848603121561320357613202613fb2565b5b60006132118682870161304d565b93505060206132228682870161304d565b925050604061323386828701613168565b9150509250925092565b6000806000806080858703121561325757613256613fb2565b5b60006132658782880161304d565b94505060206132768782880161304d565b935050604061328787828801613168565b925050606085013567ffffffffffffffff8111156132a8576132a7613fad565b5b6132b48782880161310c565b91505092959194509250565b600080604083850312156132d7576132d6613fb2565b5b60006132e58582860161304d565b92505060206132f6858286016130b8565b9150509250929050565b6000806040838503121561331757613316613fb2565b5b60006133258582860161304d565b925050602061333685828601613168565b9150509250929050565b6000806020838503121561335757613356613fb2565b5b600083013567ffffffffffffffff81111561337557613374613fad565b5b61338185828601613062565b92509250509250929050565b6000602082840312156133a3576133a2613fb2565b5b60006133b1848285016130cd565b91505092915050565b6000602082840312156133d0576133cf613fb2565b5b60006133de848285016130e2565b91505092915050565b6000602082840312156133fd576133fc613fb2565b5b600061340b848285016130f7565b91505092915050565b60006020828403121561342a57613429613fb2565b5b600082013567ffffffffffffffff81111561344857613447613fad565b5b6134548482850161313a565b91505092915050565b60006020828403121561347357613472613fb2565b5b600061348184828501613168565b91505092915050565b6000806000604084860312156134a3576134a2613fb2565b5b60006134b186828701613168565b935050602084013567ffffffffffffffff8111156134d2576134d1613fad565b5b6134de86828701613062565b92509250509250925092565b6134f381613cbe565b82525050565b61350a61350582613cbe565b613e2a565b82525050565b61351981613cd0565b82525050565b61352881613cdc565b82525050565b600061353982613b5b565b6135438185613b71565b9350613553818560208601613d4b565b61355c81613fb7565b840191505092915050565b600061357282613b66565b61357c8185613b8d565b935061358c818560208601613d4b565b61359581613fb7565b840191505092915050565b60006135ab82613b66565b6135b58185613b9e565b93506135c5818560208601613d4b565b80840191505092915050565b600081546135de81613d7e565b6135e88186613b9e565b94506001821660008114613603576001811461361457613647565b60ff19831686528186019350613647565b61361d85613b46565b60005b8381101561363f57815481890152600182019150602081019050613620565b838801955050505b50505092915050565b600061365d600d83613b8d565b915061366882613fd5565b602082019050919050565b6000613680602683613b8d565b915061368b82613ffe565b604082019050919050565b60006136a3600f83613b8d565b91506136ae8261404d565b602082019050919050565b60006136c6603a83613b8d565b91506136d182614076565b604082019050919050565b60006136e9601d83613b8d565b91506136f4826140c5565b602082019050919050565b600061370c600583613b9e565b9150613717826140ee565b600582019050919050565b600061372f602083613b8d565b915061373a82614117565b602082019050919050565b6000613752602f83613b8d565b915061375d82614140565b604082019050919050565b6000613775601683613b8d565b91506137808261418f565b602082019050919050565b6000613798600083613b82565b91506137a3826141b8565b600082019050919050565b60006137bb601083613b8d565b91506137c6826141bb565b602082019050919050565b60006137de601283613b8d565b91506137e9826141e4565b602082019050919050565b6000613801601483613b8d565b915061380c8261420d565b602082019050919050565b61382081613d32565b82525050565b600061383282846134f9565b60148201915081905092915050565b600061384d82856135d1565b915061385982846135a0565b9150613864826136ff565b91508190509392505050565b600061387b8261378b565b9150819050919050565b600060208201905061389a60008301846134ea565b92915050565b60006080820190506138b560008301876134ea565b6138c260208301866134ea565b6138cf6040830185613817565b81810360608301526138e1818461352e565b905095945050505050565b60006020820190506139016000830184613510565b92915050565b600060208201905061391c600083018461351f565b92915050565b6000602082019050818103600083015261393c8184613567565b905092915050565b6000602082019050818103600083015261395d81613650565b9050919050565b6000602082019050818103600083015261397d81613673565b9050919050565b6000602082019050818103600083015261399d81613696565b9050919050565b600060208201905081810360008301526139bd816136b9565b9050919050565b600060208201905081810360008301526139dd816136dc565b9050919050565b600060208201905081810360008301526139fd81613722565b9050919050565b60006020820190508181036000830152613a1d81613745565b9050919050565b60006020820190508181036000830152613a3d81613768565b9050919050565b60006020820190508181036000830152613a5d816137ae565b9050919050565b60006020820190508181036000830152613a7d816137d1565b9050919050565b60006020820190508181036000830152613a9d816137f4565b9050919050565b6000602082019050613ab96000830184613817565b92915050565b6000613ac9613ada565b9050613ad58282613db0565b919050565b6000604051905090565b600067ffffffffffffffff821115613aff57613afe613f6a565b5b613b0882613fb7565b9050602081019050919050565b600067ffffffffffffffff821115613b3057613b2f613f6a565b5b613b3982613fb7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bb482613d32565b9150613bbf83613d32565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bf457613bf3613eae565b5b828201905092915050565b6000613c0a82613d32565b9150613c1583613d32565b925082613c2557613c24613edd565b5b828204905092915050565b6000613c3b82613d32565b9150613c4683613d32565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c7f57613c7e613eae565b5b828202905092915050565b6000613c9582613d32565b9150613ca083613d32565b925082821015613cb357613cb2613eae565b5b828203905092915050565b6000613cc982613d12565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d69578082015181840152602081019050613d4e565b83811115613d78576000848401525b50505050565b60006002820490506001821680613d9657607f821691505b60208210811415613daa57613da9613f0c565b5b50919050565b613db982613fb7565b810181811067ffffffffffffffff82111715613dd857613dd7613f6a565b5b80604052505050565b6000613dec82613d32565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e1f57613e1e613eae565b5b600182019050919050565b6000613e3582613e3c565b9050919050565b6000613e4782613fc8565b9050919050565b6000613e5982613d32565b9150613e6483613d32565b925082613e7457613e73613edd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f7574204f662053746f636b2100000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c7265616479204d696e746564210000000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4974206973206e6f742074696d6520746f206d696e7400000000000000000000600082015250565b50565b7f4e6f7420656e6f75676820457468657200000000000000000000000000000000600082015250565b7f5175616e746974792043616e7420626520300000000000000000000000000000600082015250565b7f496e76616c6964204d65726b6c652050726f6f66000000000000000000000000600082015250565b61423f81613cbe565b811461424a57600080fd5b50565b61425681613cd0565b811461426157600080fd5b50565b61426d81613cdc565b811461427857600080fd5b50565b61428481613ce6565b811461428f57600080fd5b50565b61429b81613d32565b81146142a657600080fd5b5056fea26469706673582212208dee40ca52d2910f41e578b90327616bf317f4b94e25374fa34a8cf8a9f9148164736f6c63430008070033

Deployed Bytecode Sourcemap

54775:4066:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37288:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39104:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40581:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40170:345;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57334:406;;;:::i;:::-;;58311:97;;;;;;;;;;;;;:::i;:::-;;54901:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35555:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41438:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55161:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36209:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55303:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54853:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56703:623;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58680:156;;;;;;;;;;;;;:::i;:::-;;41679:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35733:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55069:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58416:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55445:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54962:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38913:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37724:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13998:103;;;;;;;;;;;;;:::i;:::-;;55410:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13350:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58224:79;;;;;;;;;;;;;:::i;:::-;;55971:724;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39273:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40857:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55613:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55721:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41935:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58546:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55352:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57748:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58100:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55020:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55249:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41207:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14256:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37288:372;37390:4;37442:25;37427:40;;;:11;:40;;;;:105;;;;37499:33;37484:48;;;:11;:48;;;;37427:105;:172;;;;37564:35;37549:50;;;:11;:50;;;;37427:172;:225;;;;37616:36;37640:11;37616:23;:36::i;:::-;37427:225;37407:245;;37288:372;;;:::o;39104:100::-;39158:13;39191:5;39184:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39104:100;:::o;40581:204::-;40649:7;40674:16;40682:7;40674;:16::i;:::-;40669:64;;40699:34;;;;;;;;;;;;;;40669:64;40753:15;:24;40769:7;40753:24;;;;;;;;;;;;;;;;;;;;;40746:31;;40581:204;;;:::o;40170:345::-;40243:13;40259:24;40275:7;40259:15;:24::i;:::-;40243:40;;40304:5;40298:11;;:2;:11;;;40294:48;;;40318:24;;;;;;;;;;;;;;40294:48;40375:5;40359:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;40385:37;40402:5;40409:12;:10;:12::i;:::-;40385:16;:37::i;:::-;40384:38;40359:63;40355:111;;;40431:35;;;;;;;;;;;;;;40355:111;40479:28;40488:2;40492:7;40501:5;40479:8;:28::i;:::-;40232:283;40170:345;;:::o;57334:406::-;54890:4;57405:1;57389:13;:11;:13::i;:::-;:17;;;;:::i;:::-;57388:33;;57380:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;57458:14;;;;;;;;;;;57450:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;57544:5;57518:31;;:10;:22;57529:10;57518:22;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;57510:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;55001:10;57588:9;:25;;57580:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57676:4;57651:10;:22;57662:10;57651:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;57695:35;57705:10;55059:1;57695:9;:35::i;:::-;57334:406::o;58311:97::-;13236:13;:11;:13::i;:::-;58386:14:::1;;;;;;;;;;;58385:15;58368:14;;:32;;;;;;;;;;;;;;;;;;58311:97::o:0;54901:54::-;54943:12;54901:54;:::o;35555:101::-;35608:7;35635:13;;35628:20;;35555:101;:::o;41438:170::-;41572:28;41582:4;41588:2;41592:7;41572:9;:28::i;:::-;41438:170;;;:::o;55161:79::-;55198:42;55161:79;:::o;36209:1007::-;36298:7;36331:16;36341:5;36331:9;:16::i;:::-;36322:5;:25;36318:61;;36356:23;;;;;;;;;;;;;;36318:61;36390:22;36415:13;:11;:13::i;:::-;36390:38;;36439:19;36469:25;36658:9;36653:466;36673:14;36669:1;:18;36653:466;;;36713:31;36747:11;:14;36759:1;36747:14;;;;;;;;;;;36713:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36810:1;36784:28;;:9;:14;;;:28;;;36780:111;;36857:9;:14;;;36837:34;;36780:111;36934:5;36913:26;;:17;:26;;;36909:195;;;36983:5;36968:11;:20;36964:85;;;37024:1;37017:8;;;;;;;;;36964:85;37071:13;;;;;;;36909:195;36694:425;36689:3;;;;;;;36653:466;;;;37202:5;37195:13;;;;:::i;:::-;;36307:909;;;36209:1007;;;;;:::o;55303:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;54853:41::-;54890:4;54853:41;:::o;56703:623::-;54890:4;56814:1;56798:13;:11;:13::i;:::-;:17;;;;:::i;:::-;56797:33;;56789:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;56867:8;;;;;;;;;;;56859:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;56952:5;56921:36;;:15;:27;56937:10;56921:27;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;56913:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;54943:12;56996:9;:28;;56988:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;57058:12;57100:10;57083:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;57073:39;;;;;;57058:54;;57131:59;57150:12;;57131:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57164:19;;57185:4;57131:18;:59::i;:::-;57123:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;57262:4;57232:15;:27;57248:10;57232:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;57281:35;57291:10;55059:1;57281:9;:35::i;:::-;56776:550;56703:623;;:::o;58680:156::-;13236:13;:11;:13::i;:::-;58732:15:::1;58750:21;58732:39;;58784:44;58810:7;:5;:7::i;:::-;58820;58784:17;:44::i;:::-;58719:117;58680:156::o:0;41679:185::-;41817:39;41834:4;41840:2;41844:7;41817:39;;;;;;;;;;;;:16;:39::i;:::-;41679:185;;;:::o;35733:176::-;35800:7;35833:13;:11;:13::i;:::-;35824:5;:22;35820:58;;35855:23;;;;;;;;;;;;;;35820:58;35896:5;35889:12;;35733:176;;;:::o;55069:85::-;55112:42;55069:85;:::o;58416:122::-;13236:13;:11;:13::i;:::-;58517:11:::1;58497:17;:31;;;;58416:122:::0;:::o;55445:34::-;;;;;;;;;;;;;:::o;54962:49::-;55001:10;54962:49;:::o;38913:124::-;38977:7;39004:20;39016:7;39004:11;:20::i;:::-;:25;;;38997:32;;38913:124;;;:::o;37724:206::-;37788:7;37829:1;37812:19;;:5;:19;;;37808:60;;;37840:28;;;;;;;;;;;;;;37808:60;37894:12;:19;37907:5;37894:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37886:36;;37879:43;;37724:206;;;:::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;55410:28::-;;;;;;;;;;;;;:::o;13350:87::-;13396:7;13423:6;;;;;;;;;;;13416:13;;13350:87;:::o;58224:79::-;13236:13;:11;:13::i;:::-;58287:8:::1;;;;;;;;;;;58286:9;58275:8;;:20;;;;;;;;;;;;;;;;;;58224:79::o:0;55971:724::-;56094:1;56082:9;:13;56074:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;54890:4;56154:9;56138:13;:11;:13::i;:::-;:25;;;;:::i;:::-;56137:41;;56129:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;56215:8;;;;;;;;;;;56207:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;56311:1;56298:9;56269:14;:26;56284:10;56269:26;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:43;;56261:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;54943:12;56364:9;:27;;;;:::i;:::-;56351:9;:40;;56343:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;56425:12;56467:10;56450:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;56440:39;;;;;;56425:54;;56498:57;56517:12;;56498:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56531:17;;56550:4;56498:18;:57::i;:::-;56490:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;56627:9;56597:14;:26;56612:10;56597:26;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;56651:32;56661:10;56673:9;56651;:32::i;:::-;56061:634;55971:724;;;:::o;39273:104::-;39329:13;39362:7;39355:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39273:104;:::o;40857:279::-;40960:12;:10;:12::i;:::-;40948:24;;:8;:24;;;40944:54;;;40981:17;;;;;;;;;;;;;;40944:54;41056:8;41011:18;:32;41030:12;:10;:12::i;:::-;41011:32;;;;;;;;;;;;;;;:42;41044:8;41011:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41109:8;41080:48;;41095:12;:10;:12::i;:::-;41080:48;;;41119:8;41080:48;;;;;;:::i;:::-;;;;;;;;40857:279;;:::o;55613:101::-;;;;:::o;55721:103::-;;;;:::o;41935:308::-;42094:28;42104:4;42110:2;42114:7;42094:9;:28::i;:::-;42138:48;42161:4;42167:2;42171:7;42180:5;42138:22;:48::i;:::-;42133:102;;42195:40;;;;;;;;;;;;;;42133:102;41935:308;;;;:::o;58546:126::-;13236:13;:11;:13::i;:::-;58651:11:::1;58629:19;:33;;;;58546:126:::0;:::o;55352:49::-;;;;;;;;;;;;;;;;;:::o;57748:344::-;57821:13;57855:16;57863:7;57855;:16::i;:::-;57847:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;57936:14;57953:7;57936:24;;58009:1;57986:12;57980:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;58037:12;58051:17;:6;:15;:17::i;:::-;58020:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57980:104;57973:111;;;57748:344;;;:::o;58100:116::-;13236:13;:11;:13::i;:::-;58195::::1;58180:12;:28;;;;;;;;;;;;:::i;:::-;;58100:116:::0;:::o;55020:40::-;55059:1;55020:40;:::o;55249:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;41207:164::-;41304:4;41328:18;:25;41347:5;41328:25;;;;;;;;;;;;;;;:35;41354:8;41328:35;;;;;;;;;;;;;;;;;;;;;;;;;41321:42;;41207:164;;;;:::o;14256:201::-;13236:13;:11;:13::i;:::-;14365:1:::1;14345:22;;:8;:22;;;;14337:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14421:28;14440:8;14421:18;:28::i;:::-;14256:201:::0;:::o;16048:326::-;16108:4;16365:1;16343:7;:19;;;:23;16336:30;;16048:326;;;:::o;26204:157::-;26289:4;26328:25;26313:40;;;:11;:40;;;;26306:47;;26204:157;;;:::o;42498:112::-;42555:4;42589:13;;42579:7;:23;42572:30;;42498:112;;;:::o;11901:98::-;11954:7;11981:10;11974:17;;11901:98;:::o;47261:196::-;47403:2;47376:15;:24;47392:7;47376:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47441:7;47437:2;47421:28;;47430:5;47421:28;;;;;;;;;;;;47261:196;;;:::o;42618:104::-;42687:27;42697:2;42701:8;42687:27;;;;;;;;;;;;:9;:27::i;:::-;42618:104;;:::o;13515:132::-;13590:12;:10;:12::i;:::-;13579:23;;:7;:5;:7::i;:::-;:23;;;13571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13515:132::o;45181:1962::-;45296:35;45334:20;45346:7;45334:11;:20::i;:::-;45296:58;;45367:22;45409:13;:18;;;45393:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45468:12;:10;:12::i;:::-;45444:36;;:20;45456:7;45444:11;:20::i;:::-;:36;;;45393:87;:154;;;;45497:50;45514:13;:18;;;45534:12;:10;:12::i;:::-;45497:16;:50::i;:::-;45393:154;45367:181;;45566:17;45561:66;;45592:35;;;;;;;;;;;;;;45561:66;45664:4;45642:26;;:13;:18;;;:26;;;45638:67;;45677:28;;;;;;;;;;;;;;45638:67;45734:1;45720:16;;:2;:16;;;45716:52;;;45745:23;;;;;;;;;;;;;;45716:52;45781:43;45803:4;45809:2;45813:7;45822:1;45781:21;:43::i;:::-;45889:49;45906:1;45910:7;45919:13;:18;;;45889:8;:49::i;:::-;46264:1;46234:12;:18;46247:4;46234:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46308:1;46280:12;:16;46293:2;46280:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46354:2;46326:11;:20;46338:7;46326:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46416:15;46371:11;:20;46383:7;46371:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46684:19;46716:1;46706:7;:11;46684:33;;46777:1;46736:43;;:11;:24;46748:11;46736:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46732:295;;;46804:20;46812:11;46804:7;:20::i;:::-;46800:212;;;46881:13;:18;;;46849:11;:24;46861:11;46849:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;46964:13;:28;;;46922:11;:24;46934:11;46922:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46800:212;46732:295;46209:829;47074:7;47070:2;47055:27;;47064:4;47055:27;;;;;;;;;;;;47093:42;47114:4;47120:2;47124:7;47133:1;47093:20;:42::i;:::-;45285:1858;;45181:1962;;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;1361:40;;1219:190;;;;;:::o;17309:317::-;17424:6;17399:21;:31;;17391:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17478:12;17496:9;:14;;17518:6;17496:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17477:52;;;17548:7;17540:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;17380:246;17309:317;;:::o;38347:504::-;38408:21;;:::i;:::-;38447:16;38455:7;38447;:16::i;:::-;38442:61;;38472:31;;;;;;;;;;;;;;38442:61;38546:12;38561:7;38546:22;;38541:245;38578:1;38570:4;:9;38541:245;;38608:31;38642:11;:17;38654:4;38642:17;;;;;;;;;;;38608:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38708:1;38682:28;;:9;:14;;;:28;;;38678:93;;38742:9;38735:16;;;;;;38678:93;38589:197;38581:6;;;;;;;;38541:245;;;;38816:27;;;;;;;;;;;;;;38347:504;;;;:::o;14617:191::-;14691:16;14710:6;;;;;;;;;;;14691:25;;14736:8;14727:6;;:17;;;;;;;;;;;;;;;;;;14791:8;14760:40;;14781:8;14760:40;;;;;;;;;;;;14680:128;14617:191;:::o;48022:765::-;48177:4;48198:15;:2;:13;;;:15::i;:::-;48194:586;;;48250:2;48234:36;;;48271:12;:10;:12::i;:::-;48285:4;48291:7;48300:5;48234:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48230:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48497:1;48480:6;:13;:18;48476:234;;;48507:40;;;;;;;;;;;;;;48476:234;48660:6;48654:13;48645:6;48641:2;48637:15;48630:38;48230:495;48367:45;;;48357:55;;;:6;:55;;;;48350:62;;;;;48194:586;48764:4;48757:11;;48022:765;;;;;;;:::o;9155:723::-;9211:13;9441:1;9432:5;:10;9428:53;;;9459:10;;;;;;;;;;;;;;;;;;;;;9428:53;9491:12;9506:5;9491:20;;9522:14;9547:78;9562:1;9554:4;:9;9547:78;;9580:8;;;;;:::i;:::-;;;;9611:2;9603:10;;;;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:39;;9685:154;9701:1;9692:5;:10;9685:154;;9729:1;9719:11;;;;;:::i;:::-;;;9796:2;9788:5;:10;;;;:::i;:::-;9775:2;:24;;;;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9825:2;9816:11;;;;;:::i;:::-;;;9685:154;;;9863:6;9849:21;;;;;9155:723;;;;:::o;43085:163::-;43208:32;43214:2;43218:8;43228:5;43235:4;43208:5;:32::i;:::-;43085:163;;;:::o;49275:159::-;;;;;:::o;49846:158::-;;;;;:::o;2086:296::-;2169:7;2189:20;2212:4;2189:27;;2232:9;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;;2300:9;:33::i;:::-;2285:48;;2265:3;;;;;:::i;:::-;;;;2227:118;;;;2362:12;2355:19;;;2086:296;;;;:::o;43507:1420::-;43646:20;43669:13;;43646:36;;43711:1;43697:16;;:2;:16;;;43693:48;;;43722:19;;;;;;;;;;;;;;43693:48;43768:1;43756:8;:13;43752:44;;;43778:18;;;;;;;;;;;;;;43752:44;43809:61;43839:1;43843:2;43847:12;43861:8;43809:21;:61::i;:::-;44185:8;44149:12;:16;44162:2;44149:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44250:8;44209:12;:16;44222:2;44209:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44309:2;44276:11;:25;44288:12;44276:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44376:15;44326:11;:25;44338:12;44326:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44409:20;44432:12;44409:35;;44466:9;44461:330;44481:8;44477:1;:12;44461:330;;;44545:12;44541:2;44520:38;;44537:1;44520:38;;;;;;;;;;;;44581:4;:68;;;;;44590:59;44621:1;44625:2;44629:12;44643:5;44590:22;:59::i;:::-;44589:60;44581:68;44577:164;;;44681:40;;;;;;;;;;;;;;44577:164;44761:14;;;;;;;44491:3;;;;;;;44461:330;;;;44823:12;44807:13;:28;;;;44124:723;44859:60;44888:1;44892:2;44896:12;44910:8;44859:20;:60::i;:::-;43635:1292;43507:1420;;;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8414:20;8429:1;8432;8414:14;:20::i;:::-;8383:51;;;8391:20;8406:1;8409;8391:14;:20::i;:::-;8383:51;8376:58;;8293:149;;;;:::o;8450:268::-;8518:13;8625:1;8619:4;8612:15;8654:1;8648:4;8641:15;8695:4;8689;8679:21;8670:30;;8450:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:559::-;6442:6;6450;6499:2;6487:9;6478:7;6474:23;6470:32;6467:119;;;6505:79;;:::i;:::-;6467:119;6653:1;6642:9;6638:17;6625:31;6683:18;6675:6;6672:30;6669:117;;;6705:79;;:::i;:::-;6669:117;6818:80;6890:7;6881:6;6870:9;6866:22;6818:80;:::i;:::-;6800:98;;;;6596:312;6356:559;;;;;:::o;6921:329::-;6980:6;7029:2;7017:9;7008:7;7004:23;7000:32;6997:119;;;7035:79;;:::i;:::-;6997:119;7155:1;7180:53;7225:7;7216:6;7205:9;7201:22;7180:53;:::i;:::-;7170:63;;7126:117;6921:329;;;;:::o;7256:327::-;7314:6;7363:2;7351:9;7342:7;7338:23;7334:32;7331:119;;;7369:79;;:::i;:::-;7331:119;7489:1;7514:52;7558:7;7549:6;7538:9;7534:22;7514:52;:::i;:::-;7504:62;;7460:116;7256:327;;;;:::o;7589:349::-;7658:6;7707:2;7695:9;7686:7;7682:23;7678:32;7675:119;;;7713:79;;:::i;:::-;7675:119;7833:1;7858:63;7913:7;7904:6;7893:9;7889:22;7858:63;:::i;:::-;7848:73;;7804:127;7589:349;;;;:::o;7944:509::-;8013:6;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8216:1;8205:9;8201:17;8188:31;8246:18;8238:6;8235:30;8232:117;;;8268:79;;:::i;:::-;8232:117;8373:63;8428:7;8419:6;8408:9;8404:22;8373:63;:::i;:::-;8363:73;;8159:287;7944:509;;;;:::o;8459:329::-;8518:6;8567:2;8555:9;8546:7;8542:23;8538:32;8535:119;;;8573:79;;:::i;:::-;8535:119;8693:1;8718:53;8763:7;8754:6;8743:9;8739:22;8718:53;:::i;:::-;8708:63;;8664:117;8459:329;;;;:::o;8794:704::-;8889:6;8897;8905;8954:2;8942:9;8933:7;8929:23;8925:32;8922:119;;;8960:79;;:::i;:::-;8922:119;9080:1;9105:53;9150:7;9141:6;9130:9;9126:22;9105:53;:::i;:::-;9095:63;;9051:117;9235:2;9224:9;9220:18;9207:32;9266:18;9258:6;9255:30;9252:117;;;9288:79;;:::i;:::-;9252:117;9401:80;9473:7;9464:6;9453:9;9449:22;9401:80;:::i;:::-;9383:98;;;;9178:313;8794:704;;;;;:::o;9504:118::-;9591:24;9609:5;9591:24;:::i;:::-;9586:3;9579:37;9504:118;;:::o;9628:157::-;9733:45;9753:24;9771:5;9753:24;:::i;:::-;9733:45;:::i;:::-;9728:3;9721:58;9628:157;;:::o;9791:109::-;9872:21;9887:5;9872:21;:::i;:::-;9867:3;9860:34;9791:109;;:::o;9906:118::-;9993:24;10011:5;9993:24;:::i;:::-;9988:3;9981:37;9906:118;;:::o;10030:360::-;10116:3;10144:38;10176:5;10144:38;:::i;:::-;10198:70;10261:6;10256:3;10198:70;:::i;:::-;10191:77;;10277:52;10322:6;10317:3;10310:4;10303:5;10299:16;10277:52;:::i;:::-;10354:29;10376:6;10354:29;:::i;:::-;10349:3;10345:39;10338:46;;10120:270;10030:360;;;;:::o;10396:364::-;10484:3;10512:39;10545:5;10512:39;:::i;:::-;10567:71;10631:6;10626:3;10567:71;:::i;:::-;10560:78;;10647:52;10692:6;10687:3;10680:4;10673:5;10669:16;10647:52;:::i;:::-;10724:29;10746:6;10724:29;:::i;:::-;10719:3;10715:39;10708:46;;10488:272;10396:364;;;;:::o;10766:377::-;10872:3;10900:39;10933:5;10900:39;:::i;:::-;10955:89;11037:6;11032:3;10955:89;:::i;:::-;10948:96;;11053:52;11098:6;11093:3;11086:4;11079:5;11075:16;11053:52;:::i;:::-;11130:6;11125:3;11121:16;11114:23;;10876:267;10766:377;;;;:::o;11173:845::-;11276:3;11313:5;11307:12;11342:36;11368:9;11342:36;:::i;:::-;11394:89;11476:6;11471:3;11394:89;:::i;:::-;11387:96;;11514:1;11503:9;11499:17;11530:1;11525:137;;;;11676:1;11671:341;;;;11492:520;;11525:137;11609:4;11605:9;11594;11590:25;11585:3;11578:38;11645:6;11640:3;11636:16;11629:23;;11525:137;;11671:341;11738:38;11770:5;11738:38;:::i;:::-;11798:1;11812:154;11826:6;11823:1;11820:13;11812:154;;;11900:7;11894:14;11890:1;11885:3;11881:11;11874:35;11950:1;11941:7;11937:15;11926:26;;11848:4;11845:1;11841:12;11836:17;;11812:154;;;11995:6;11990:3;11986:16;11979:23;;11678:334;;11492:520;;11280:738;;11173:845;;;;:::o;12024:366::-;12166:3;12187:67;12251:2;12246:3;12187:67;:::i;:::-;12180:74;;12263:93;12352:3;12263:93;:::i;:::-;12381:2;12376:3;12372:12;12365:19;;12024:366;;;:::o;12396:::-;12538:3;12559:67;12623:2;12618:3;12559:67;:::i;:::-;12552:74;;12635:93;12724:3;12635:93;:::i;:::-;12753:2;12748:3;12744:12;12737:19;;12396:366;;;:::o;12768:::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:::-;13282:3;13303:67;13367:2;13362:3;13303:67;:::i;:::-;13296:74;;13379:93;13468:3;13379:93;:::i;:::-;13497:2;13492:3;13488:12;13481:19;;13140:366;;;:::o;13512:::-;13654:3;13675:67;13739:2;13734:3;13675:67;:::i;:::-;13668:74;;13751:93;13840:3;13751:93;:::i;:::-;13869:2;13864:3;13860:12;13853:19;;13512:366;;;:::o;13884:400::-;14044:3;14065:84;14147:1;14142:3;14065:84;:::i;:::-;14058:91;;14158:93;14247:3;14158:93;:::i;:::-;14276:1;14271:3;14267:11;14260:18;;13884:400;;;:::o;14290:366::-;14432:3;14453:67;14517:2;14512:3;14453:67;:::i;:::-;14446:74;;14529:93;14618:3;14529:93;:::i;:::-;14647:2;14642:3;14638:12;14631:19;;14290:366;;;:::o;14662:::-;14804:3;14825:67;14889:2;14884:3;14825:67;:::i;:::-;14818:74;;14901:93;14990:3;14901:93;:::i;:::-;15019:2;15014:3;15010:12;15003:19;;14662:366;;;:::o;15034:::-;15176:3;15197:67;15261:2;15256:3;15197:67;:::i;:::-;15190:74;;15273:93;15362:3;15273:93;:::i;:::-;15391:2;15386:3;15382:12;15375:19;;15034:366;;;:::o;15406:398::-;15565:3;15586:83;15667:1;15662:3;15586:83;:::i;:::-;15579:90;;15678:93;15767:3;15678:93;:::i;:::-;15796:1;15791:3;15787:11;15780:18;;15406:398;;;:::o;15810:366::-;15952:3;15973:67;16037:2;16032:3;15973:67;:::i;:::-;15966:74;;16049:93;16138:3;16049:93;:::i;:::-;16167:2;16162:3;16158:12;16151:19;;15810:366;;;:::o;16182:::-;16324:3;16345:67;16409:2;16404:3;16345:67;:::i;:::-;16338:74;;16421:93;16510:3;16421:93;:::i;:::-;16539:2;16534:3;16530:12;16523:19;;16182:366;;;:::o;16554:::-;16696:3;16717:67;16781:2;16776:3;16717:67;:::i;:::-;16710:74;;16793:93;16882:3;16793:93;:::i;:::-;16911:2;16906:3;16902:12;16895:19;;16554:366;;;:::o;16926:118::-;17013:24;17031:5;17013:24;:::i;:::-;17008:3;17001:37;16926:118;;:::o;17050:256::-;17162:3;17177:75;17248:3;17239:6;17177:75;:::i;:::-;17277:2;17272:3;17268:12;17261:19;;17297:3;17290:10;;17050:256;;;;:::o;17312:695::-;17590:3;17612:92;17700:3;17691:6;17612:92;:::i;:::-;17605:99;;17721:95;17812:3;17803:6;17721:95;:::i;:::-;17714:102;;17833:148;17977:3;17833:148;:::i;:::-;17826:155;;17998:3;17991:10;;17312:695;;;;;:::o;18013:379::-;18197:3;18219:147;18362:3;18219:147;:::i;:::-;18212:154;;18383:3;18376:10;;18013:379;;;:::o;18398:222::-;18491:4;18529:2;18518:9;18514:18;18506:26;;18542:71;18610:1;18599:9;18595:17;18586:6;18542:71;:::i;:::-;18398:222;;;;:::o;18626:640::-;18821:4;18859:3;18848:9;18844:19;18836:27;;18873:71;18941:1;18930:9;18926:17;18917:6;18873:71;:::i;:::-;18954:72;19022:2;19011:9;19007:18;18998:6;18954:72;:::i;:::-;19036;19104:2;19093:9;19089:18;19080:6;19036:72;:::i;:::-;19155:9;19149:4;19145:20;19140:2;19129:9;19125:18;19118:48;19183:76;19254:4;19245:6;19183:76;:::i;:::-;19175:84;;18626:640;;;;;;;:::o;19272:210::-;19359:4;19397:2;19386:9;19382:18;19374:26;;19410:65;19472:1;19461:9;19457:17;19448:6;19410:65;:::i;:::-;19272:210;;;;:::o;19488:222::-;19581:4;19619:2;19608:9;19604:18;19596:26;;19632:71;19700:1;19689:9;19685:17;19676:6;19632:71;:::i;:::-;19488:222;;;;:::o;19716:313::-;19829:4;19867:2;19856:9;19852:18;19844:26;;19916:9;19910:4;19906:20;19902:1;19891:9;19887:17;19880:47;19944:78;20017:4;20008:6;19944:78;:::i;:::-;19936:86;;19716:313;;;;:::o;20035:419::-;20201:4;20239:2;20228:9;20224:18;20216:26;;20288:9;20282:4;20278:20;20274:1;20263:9;20259:17;20252:47;20316:131;20442:4;20316:131;:::i;:::-;20308:139;;20035:419;;;:::o;20460:::-;20626:4;20664:2;20653:9;20649:18;20641:26;;20713:9;20707:4;20703:20;20699:1;20688:9;20684:17;20677:47;20741:131;20867:4;20741:131;:::i;:::-;20733:139;;20460:419;;;:::o;20885:::-;21051:4;21089:2;21078:9;21074:18;21066:26;;21138:9;21132:4;21128:20;21124:1;21113:9;21109:17;21102:47;21166:131;21292:4;21166:131;:::i;:::-;21158:139;;20885:419;;;:::o;21310:::-;21476:4;21514:2;21503:9;21499:18;21491:26;;21563:9;21557:4;21553:20;21549:1;21538:9;21534:17;21527:47;21591:131;21717:4;21591:131;:::i;:::-;21583:139;;21310:419;;;:::o;21735:::-;21901:4;21939:2;21928:9;21924:18;21916:26;;21988:9;21982:4;21978:20;21974:1;21963:9;21959:17;21952:47;22016:131;22142:4;22016:131;:::i;:::-;22008:139;;21735:419;;;:::o;22160:::-;22326:4;22364:2;22353:9;22349:18;22341:26;;22413:9;22407:4;22403:20;22399:1;22388:9;22384:17;22377:47;22441:131;22567:4;22441:131;:::i;:::-;22433:139;;22160:419;;;:::o;22585:::-;22751:4;22789:2;22778:9;22774:18;22766:26;;22838:9;22832:4;22828:20;22824:1;22813:9;22809:17;22802:47;22866:131;22992:4;22866:131;:::i;:::-;22858:139;;22585:419;;;:::o;23010:::-;23176:4;23214:2;23203:9;23199:18;23191:26;;23263:9;23257:4;23253:20;23249:1;23238:9;23234:17;23227:47;23291:131;23417:4;23291:131;:::i;:::-;23283:139;;23010:419;;;:::o;23435:::-;23601:4;23639:2;23628:9;23624:18;23616:26;;23688:9;23682:4;23678:20;23674:1;23663:9;23659:17;23652:47;23716:131;23842:4;23716:131;:::i;:::-;23708:139;;23435:419;;;:::o;23860:::-;24026:4;24064:2;24053:9;24049:18;24041:26;;24113:9;24107:4;24103:20;24099:1;24088:9;24084:17;24077:47;24141:131;24267:4;24141:131;:::i;:::-;24133:139;;23860:419;;;:::o;24285:::-;24451:4;24489:2;24478:9;24474:18;24466:26;;24538:9;24532:4;24528:20;24524:1;24513:9;24509:17;24502:47;24566:131;24692:4;24566:131;:::i;:::-;24558:139;;24285:419;;;:::o;24710:222::-;24803:4;24841:2;24830:9;24826:18;24818:26;;24854:71;24922:1;24911:9;24907:17;24898:6;24854:71;:::i;:::-;24710:222;;;;:::o;24938:129::-;24972:6;24999:20;;:::i;:::-;24989:30;;25028:33;25056:4;25048:6;25028:33;:::i;:::-;24938:129;;;:::o;25073:75::-;25106:6;25139:2;25133:9;25123:19;;25073:75;:::o;25154:307::-;25215:4;25305:18;25297:6;25294:30;25291:56;;;25327:18;;:::i;:::-;25291:56;25365:29;25387:6;25365:29;:::i;:::-;25357:37;;25449:4;25443;25439:15;25431:23;;25154:307;;;:::o;25467:308::-;25529:4;25619:18;25611:6;25608:30;25605:56;;;25641:18;;:::i;:::-;25605:56;25679:29;25701:6;25679:29;:::i;:::-;25671:37;;25763:4;25757;25753:15;25745:23;;25467:308;;;:::o;25781:141::-;25830:4;25853:3;25845:11;;25876:3;25873:1;25866:14;25910:4;25907:1;25897:18;25889:26;;25781:141;;;:::o;25928:98::-;25979:6;26013:5;26007:12;25997:22;;25928:98;;;:::o;26032:99::-;26084:6;26118:5;26112:12;26102:22;;26032:99;;;:::o;26137:168::-;26220:11;26254:6;26249:3;26242:19;26294:4;26289:3;26285:14;26270:29;;26137:168;;;;:::o;26311:147::-;26412:11;26449:3;26434:18;;26311:147;;;;:::o;26464:169::-;26548:11;26582:6;26577:3;26570:19;26622:4;26617:3;26613:14;26598:29;;26464:169;;;;:::o;26639:148::-;26741:11;26778:3;26763:18;;26639:148;;;;:::o;26793:305::-;26833:3;26852:20;26870:1;26852:20;:::i;:::-;26847:25;;26886:20;26904:1;26886:20;:::i;:::-;26881:25;;27040:1;26972:66;26968:74;26965:1;26962:81;26959:107;;;27046:18;;:::i;:::-;26959:107;27090:1;27087;27083:9;27076:16;;26793:305;;;;:::o;27104:185::-;27144:1;27161:20;27179:1;27161:20;:::i;:::-;27156:25;;27195:20;27213:1;27195:20;:::i;:::-;27190:25;;27234:1;27224:35;;27239:18;;:::i;:::-;27224:35;27281:1;27278;27274:9;27269:14;;27104:185;;;;:::o;27295:348::-;27335:7;27358:20;27376:1;27358:20;:::i;:::-;27353:25;;27392:20;27410:1;27392:20;:::i;:::-;27387:25;;27580:1;27512:66;27508:74;27505:1;27502:81;27497:1;27490:9;27483:17;27479:105;27476:131;;;27587:18;;:::i;:::-;27476:131;27635:1;27632;27628:9;27617:20;;27295:348;;;;:::o;27649:191::-;27689:4;27709:20;27727:1;27709:20;:::i;:::-;27704:25;;27743:20;27761:1;27743:20;:::i;:::-;27738:25;;27782:1;27779;27776:8;27773:34;;;27787:18;;:::i;:::-;27773:34;27832:1;27829;27825:9;27817:17;;27649:191;;;;:::o;27846:96::-;27883:7;27912:24;27930:5;27912:24;:::i;:::-;27901:35;;27846:96;;;:::o;27948:90::-;27982:7;28025:5;28018:13;28011:21;28000:32;;27948:90;;;:::o;28044:77::-;28081:7;28110:5;28099:16;;28044:77;;;:::o;28127:149::-;28163:7;28203:66;28196:5;28192:78;28181:89;;28127:149;;;:::o;28282:126::-;28319:7;28359:42;28352:5;28348:54;28337:65;;28282:126;;;:::o;28414:77::-;28451:7;28480:5;28469:16;;28414:77;;;:::o;28497:154::-;28581:6;28576:3;28571;28558:30;28643:1;28634:6;28629:3;28625:16;28618:27;28497:154;;;:::o;28657:307::-;28725:1;28735:113;28749:6;28746:1;28743:13;28735:113;;;28834:1;28829:3;28825:11;28819:18;28815:1;28810:3;28806:11;28799:39;28771:2;28768:1;28764:10;28759:15;;28735:113;;;28866:6;28863:1;28860:13;28857:101;;;28946:1;28937:6;28932:3;28928:16;28921:27;28857:101;28706:258;28657:307;;;:::o;28970:320::-;29014:6;29051:1;29045:4;29041:12;29031:22;;29098:1;29092:4;29088:12;29119:18;29109:81;;29175:4;29167:6;29163:17;29153:27;;29109:81;29237:2;29229:6;29226:14;29206:18;29203:38;29200:84;;;29256:18;;:::i;:::-;29200:84;29021:269;28970:320;;;:::o;29296:281::-;29379:27;29401:4;29379:27;:::i;:::-;29371:6;29367:40;29509:6;29497:10;29494:22;29473:18;29461:10;29458:34;29455:62;29452:88;;;29520:18;;:::i;:::-;29452:88;29560:10;29556:2;29549:22;29339:238;29296:281;;:::o;29583:233::-;29622:3;29645:24;29663:5;29645:24;:::i;:::-;29636:33;;29691:66;29684:5;29681:77;29678:103;;;29761:18;;:::i;:::-;29678:103;29808:1;29801:5;29797:13;29790:20;;29583:233;;;:::o;29822:100::-;29861:7;29890:26;29910:5;29890:26;:::i;:::-;29879:37;;29822:100;;;:::o;29928:94::-;29967:7;29996:20;30010:5;29996:20;:::i;:::-;29985:31;;29928:94;;;:::o;30028:176::-;30060:1;30077:20;30095:1;30077:20;:::i;:::-;30072:25;;30111:20;30129:1;30111:20;:::i;:::-;30106:25;;30150:1;30140:35;;30155:18;;:::i;:::-;30140:35;30196:1;30193;30189:9;30184:14;;30028:176;;;;:::o;30210:180::-;30258:77;30255:1;30248:88;30355:4;30352:1;30345:15;30379:4;30376:1;30369:15;30396:180;30444:77;30441:1;30434:88;30541:4;30538:1;30531:15;30565:4;30562:1;30555:15;30582:180;30630:77;30627:1;30620:88;30727:4;30724:1;30717:15;30751:4;30748:1;30741:15;30768:180;30816:77;30813:1;30806:88;30913:4;30910:1;30903:15;30937:4;30934:1;30927:15;30954:180;31002:77;30999:1;30992:88;31099:4;31096:1;31089:15;31123:4;31120:1;31113:15;31140:180;31188:77;31185:1;31178:88;31285:4;31282:1;31275:15;31309:4;31306:1;31299:15;31326:117;31435:1;31432;31425:12;31449:117;31558:1;31555;31548:12;31572:117;31681:1;31678;31671:12;31695:117;31804:1;31801;31794:12;31818:117;31927:1;31924;31917:12;31941:117;32050:1;32047;32040:12;32064:102;32105:6;32156:2;32152:7;32147:2;32140:5;32136:14;32132:28;32122:38;;32064:102;;;:::o;32172:94::-;32205:8;32253:5;32249:2;32245:14;32224:35;;32172:94;;;:::o;32272:163::-;32412:15;32408:1;32400:6;32396:14;32389:39;32272:163;:::o;32441:225::-;32581:34;32577:1;32569:6;32565:14;32558:58;32650:8;32645:2;32637:6;32633:15;32626:33;32441:225;:::o;32672:165::-;32812:17;32808:1;32800:6;32796:14;32789:41;32672:165;:::o;32843:245::-;32983:34;32979:1;32971:6;32967:14;32960:58;33052:28;33047:2;33039:6;33035:15;33028:53;32843:245;:::o;33094:179::-;33234:31;33230:1;33222:6;33218:14;33211:55;33094:179;:::o;33279:155::-;33419:7;33415:1;33407:6;33403:14;33396:31;33279:155;:::o;33440:182::-;33580:34;33576:1;33568:6;33564:14;33557:58;33440:182;:::o;33628:234::-;33768:34;33764:1;33756:6;33752:14;33745:58;33837:17;33832:2;33824:6;33820:15;33813:42;33628:234;:::o;33868:172::-;34008:24;34004:1;33996:6;33992:14;33985:48;33868:172;:::o;34046:114::-;;:::o;34166:166::-;34306:18;34302:1;34294:6;34290:14;34283:42;34166:166;:::o;34338:168::-;34478:20;34474:1;34466:6;34462:14;34455:44;34338:168;:::o;34512:170::-;34652:22;34648:1;34640:6;34636:14;34629:46;34512:170;:::o;34688:122::-;34761:24;34779:5;34761:24;:::i;:::-;34754:5;34751:35;34741:63;;34800:1;34797;34790:12;34741:63;34688:122;:::o;34816:116::-;34886:21;34901:5;34886:21;:::i;:::-;34879:5;34876:32;34866:60;;34922:1;34919;34912:12;34866:60;34816:116;:::o;34938:122::-;35011:24;35029:5;35011:24;:::i;:::-;35004:5;35001:35;34991:63;;35050:1;35047;35040:12;34991:63;34938:122;:::o;35066:120::-;35138:23;35155:5;35138:23;:::i;:::-;35131:5;35128:34;35118:62;;35176:1;35173;35166:12;35118:62;35066:120;:::o;35192:122::-;35265:24;35283:5;35265:24;:::i;:::-;35258:5;35255:35;35245:63;;35304:1;35301;35294:12;35245:63;35192:122;:::o

Swarm Source

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