ETH Price: $3,390.37 (-2.60%)
Gas: 1 Gwei

Token

Chubby Little Jiras (CLJ)
 

Overview

Max Total Supply

6,514 CLJ

Holders

3,356

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CLJ
0x7994926fb3764b6e6f94f9dd5e8791542396ca0d
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:
ChubbyLittleJiras

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-07-06
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// 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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.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

                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.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

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

    /**
     * @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) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/ChubbyJira.sol



pragma solidity ^0.8.4;






contract ChubbyLittleJiras is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    
    bool public public_sale_running = false;
    bool public private_sale_running = false;

    uint public MINT_PRICE = 0.06 ether;
    uint public MAX_SUPPLY = 8888;
    uint public MAX_PER_TX = 3;

    mapping(uint => bytes32) public merkle_roots;

    constructor () ERC721A("Chubby Little Jiras", "CLJ") {
        _safeMint(0xDeBd07A501186AB2B94462633F269774cb481ecF, 36);
        _safeMint(0x2d600E43bA1595aC816EA0B29D80f998E3dBa880, 36);
        _safeMint(0x7CDA41ce6b1b72b7BEe36bF64f733047BEF679d2, 36);
        _safeMint(0xd127c9DF411aa2C71a65d15732a5577c58357AEC, 36);
        _safeMint(0x5E5ab1e361b859998C55e7ecC212ac8e24E0c4c1, 406);

        merkle_roots[2] = 0x8c548daff11a75b6a270cae39f556ad626844ae86b9d409c311539cb22365717;
        merkle_roots[3] = 0x9b150a5e745c3cc4c5c449393c852423c19128ab9502bf80b7f349a23deaa517;
        merkle_roots[5] = 0xb1e65241444eef38aae934862057b1aaf34237a8685070d155e496c803d49cf8;
        merkle_roots[4] = 0x2895b24d70763eaf0fd7870a5af87737485561ab1a4ca02a5f77cf762d296170;
        merkle_roots[6] = 0x9a0305060418acbe9fe268d117b3c58fb9804663144373ab75fded9be722be49;
        merkle_roots[7] = 0x92024009cdf2d8db651a06a2b23d81e3a4278eff5dc0cb1b4098dea6791129aa;
        merkle_roots[8] = 0x00f8cc2b1f49c9fc4c71c988a081fd5f0c5f74eada1f9a4209cc1d40af0c86ef;
        merkle_roots[10] = 0x8b5b7ff672b898288114529fc5d9f37c2214721e19e64c8f9caa9b6ff0dd7b64;
        merkle_roots[20] = 0xd75b9a62bd1b83cd0daa459ace1be0dbd958bae37d7bfd4faa9761d9c2c44ec1;
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        return string(abi.encodePacked("https://chubbylittlejiras.io/metadata/", tokenId.toString(), ".json"));
    }   

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function isWhitelisted(address _user, bytes32 [] calldata _merkleProof, uint _allocation) public view returns(bool) {
        require(merkle_roots[_allocation] != 0, "Invalid allocation amount");

        bytes32 leaf = keccak256(abi.encodePacked(_user));
        return MerkleProof.verify(_merkleProof, merkle_roots[_allocation], leaf);
    }

    function getNumClaimed(address _user) public view returns(uint64) {
        return _getAux(_user);
    }
    
    function whitelistMint(bytes32 [] calldata _merkleProof, uint64 _quantity, uint _allocation) external payable nonReentrant {
        require(tx.origin == msg.sender);
        require(private_sale_running, "Private sale is not running");
        require(msg.value == MINT_PRICE * _quantity, "Incorrect ETH sent to mint");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Not enough tokens left to mint");

        require(isWhitelisted(msg.sender, _merkleProof, _allocation), "Invalid proof");

        uint64 num_claimed = _getAux(msg.sender);
        require(num_claimed + _quantity <= _allocation, string(abi.encodePacked("Can't claim more than ", _allocation.toString(), " total")));

        _setAux(msg.sender, num_claimed + _quantity);
        _safeMint(msg.sender, _quantity);
    }

    function publicMint(uint64 _quantity) external payable nonReentrant {
        require(tx.origin == msg.sender);
        require(public_sale_running, "Public sale is not running");
        require(msg.value == MINT_PRICE * _quantity, "Incorrect ETH sent to mint");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Not enough tokens left to mint");
        
        require(_quantity <= MAX_PER_TX, "Invalid number of tokens queries for minting");

        _safeMint(msg.sender, _quantity);
    }

    function burn(uint _token_id) external {
        _burn(_token_id, true);
    }
    
    function togglePublicSale() external onlyOwner {
        public_sale_running = !public_sale_running;
    }

    function togglePrivateSale() external onlyOwner {
        private_sale_running = !private_sale_running;
    }

    function adminMint(address _destination, uint _quantity) external onlyOwner {
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Not enough tokens left to mint");
        _safeMint(_destination, _quantity);
    }

    function updateWhitelistMerkleRoot(bytes32 _new_root, uint _allocation) external onlyOwner {
        merkle_roots[_allocation] = _new_root;
    }

    function updateMaxSupply(uint _new_supply) external onlyOwner {
        require(_new_supply < MAX_SUPPLY, "Cannot increase supply");
        MAX_SUPPLY = _new_supply;
    }

    function updateMintingPrice(uint _new_price) external onlyOwner {
        MINT_PRICE = _new_price;
    }

    function updateMaxPerTransaction(uint _new_amount) external onlyOwner {
        MAX_PER_TX = _new_amount;
    }
    
    function withdraw() external onlyOwner {
        uint balance = address(this).balance;

        payable(0x0C3a7f745d99661C798bD1a50e4D479754f60408).transfer(balance / 4);
        payable(0x925fbDd517842b5a27167d35D9C98BE7BB6b5E3A).transfer(balance / 4);
        payable(0xDf8Daa1880680b307eF740C3DB425370b2Da95B0).transfer(balance / 4);
        payable(0x93EbC766ACE620195e373c3FFB13dFb1129057d1).transfer(balance / 4);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"MAX_PER_TX","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":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_destination","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_token_id","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getNumClaimed","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_allocation","type":"uint256"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"merkle_roots","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[],"name":"private_sale_running","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_quantity","type":"uint64"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"public_sale_running","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"_new_amount","type":"uint256"}],"name":"updateMaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new_supply","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new_price","type":"uint256"}],"name":"updateMintingPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_new_root","type":"bytes32"},{"internalType":"uint256","name":"_allocation","type":"uint256"}],"name":"updateWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint64","name":"_quantity","type":"uint64"},{"internalType":"uint256","name":"_allocation","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff02191690831515021790555066d529ae9e860000600b556122b8600c556003600d553480156200005d57600080fd5b506040518060400160405280601381526020017f436875626279204c6974746c65204a69726173000000000000000000000000008152506040518060400160405280600381526020017f434c4a00000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e292919062000aae565b508060039080519060200190620000fb92919062000aae565b506200010c6200042160201b60201c565b600081905550505062000134620001286200042a60201b60201c565b6200043260201b60201c565b60016009819055506200016373debd07a501186ab2b94462633f269774cb481ecf6024620004f860201b60201c565b6200018a732d600e43ba1595ac816ea0b29d80f998e3dba8806024620004f860201b60201c565b620001b1737cda41ce6b1b72b7bee36bf64f733047bef679d26024620004f860201b60201c565b620001d873d127c9df411aa2c71a65d15732a5577c58357aec6024620004f860201b60201c565b62000200735e5ab1e361b859998c55e7ecc212ac8e24e0c4c1610196620004f860201b60201c565b7f8c548daff11a75b6a270cae39f556ad626844ae86b9d409c311539cb2236571760001b600e600060028152602001908152602001600020819055507f9b150a5e745c3cc4c5c449393c852423c19128ab9502bf80b7f349a23deaa51760001b600e600060038152602001908152602001600020819055507fb1e65241444eef38aae934862057b1aaf34237a8685070d155e496c803d49cf860001b600e600060058152602001908152602001600020819055507f2895b24d70763eaf0fd7870a5af87737485561ab1a4ca02a5f77cf762d29617060001b600e600060048152602001908152602001600020819055507f9a0305060418acbe9fe268d117b3c58fb9804663144373ab75fded9be722be4960001b600e600060068152602001908152602001600020819055507f92024009cdf2d8db651a06a2b23d81e3a4278eff5dc0cb1b4098dea6791129aa60001b600e600060078152602001908152602001600020819055507ef8cc2b1f49c9fc4c71c988a081fd5f0c5f74eada1f9a4209cc1d40af0c86ef60001b600e600060088152602001908152602001600020819055507f8b5b7ff672b898288114529fc5d9f37c2214721e19e64c8f9caa9b6ff0dd7b6460001b600e6000600a8152602001908152602001600020819055507fd75b9a62bd1b83cd0daa459ace1be0dbd958bae37d7bfd4faa9761d9c2c44ec160001b600e6000601481526020019081526020016000208190555062000daf565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200051a8282604051806020016040528060008152506200051e60201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200058c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415620005c8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620005dd60008583866200090d60201b60201c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050620007ab8673ffffffffffffffffffffffffffffffffffffffff166200091360201b62001e0d1760201c565b156200087d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200082960008784806001019550876200093660201b60201c565b62000860576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620007b25782600054146200087757600080fd5b620008e9565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200087e575b81600081905550505062000907600085838662000aa860201b60201c565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620009646200042a60201b60201c565b8786866040518563ffffffff1660e01b815260040162000988949392919062000c0a565b602060405180830381600087803b158015620009a357600080fd5b505af1925050508015620009d757506040513d601f19601f82011682018060405250810190620009d4919062000b75565b60015b62000a55573d806000811462000a0a576040519150601f19603f3d011682016040523d82523d6000602084013e62000a0f565b606091505b5060008151141562000a4d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b82805462000abc9062000d1a565b90600052602060002090601f01602090048101928262000ae0576000855562000b2c565b82601f1062000afb57805160ff191683800117855562000b2c565b8280016001018555821562000b2c579182015b8281111562000b2b57825182559160200191906001019062000b0e565b5b50905062000b3b919062000b3f565b5090565b5b8082111562000b5a57600081600090555060010162000b40565b5090565b60008151905062000b6f8162000d95565b92915050565b60006020828403121562000b8e5762000b8d62000d7f565b5b600062000b9e8482850162000b5e565b91505092915050565b62000bb28162000c7a565b82525050565b600062000bc58262000c5e565b62000bd1818562000c69565b935062000be381856020860162000ce4565b62000bee8162000d84565b840191505092915050565b62000c048162000cda565b82525050565b600060808201905062000c21600083018762000ba7565b62000c30602083018662000ba7565b62000c3f604083018562000bf9565b818103606083015262000c53818462000bb8565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b600062000c878262000cba565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000d0457808201518184015260208101905062000ce7565b8381111562000d14576000848401525b50505050565b6000600282049050600182168062000d3357607f821691505b6020821081141562000d4a5762000d4962000d50565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b62000da08162000c8e565b811462000dac57600080fd5b50565b6147578062000dbf6000396000f3fe60806040526004361061020f5760003560e01c80638da5cb5b11610118578063ca5d9cda116100a0578063e6f6ef1e1161006f578063e6f6ef1e14610757578063e985e9c514610782578063f103b433146107bf578063f2fde38b146107e8578063f43a22dc146108115761020f565b8063ca5d9cda146106c3578063dfe5dd6814610700578063e222c7f914610717578063e58306f91461072e5761020f565b8063a371a062116100e7578063a371a062146105cc578063b88d4fde14610609578063c002d23d14610632578063c7381b951461065d578063c87b56dd146106865761020f565b80638da5cb5b146105225780639168e23e1461054d57806395d89b4114610578578063a22cb465146105a35761020f565b806342842e0e1161019b5780636afcb7b01161016a5780636afcb7b01461046d57806370a0823114610489578063715018a6146104c65780637d72fd57146104dd57806385e9880f146105065761020f565b806342842e0e146103b557806342966c68146103de5780635788ff36146104075780636352211e146104305761020f565b8063095ea7b3116101e2578063095ea7b3146102f657806318160ddd1461031f57806323b872dd1461034a57806332cb6b0c146103735780633ccfd60b1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c57806308d04b2e146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613846565b61083c565b6040516102489190613ce8565b60405180910390f35b34801561025d57600080fd5b5061026661091e565b6040516102739190613d1e565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906138a0565b6109b0565b6040516102b09190613c81565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906138a0565b610a2c565b6040516102ed9190613d03565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190613752565b610a44565b005b34801561032b57600080fd5b50610334610b49565b6040516103419190613ea0565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c91906135c8565b610b60565b005b34801561037f57600080fd5b50610388610b70565b6040516103959190613ea0565b60405180910390f35b3480156103aa57600080fd5b506103b3610b76565b005b3480156103c157600080fd5b506103dc60048036038101906103d791906135c8565b610d96565b005b3480156103ea57600080fd5b50610405600480360381019061040091906138a0565b610db6565b005b34801561041357600080fd5b5061042e600480360381019061042991906138a0565b610dc4565b005b34801561043c57600080fd5b50610457600480360381019061045291906138a0565b610e4a565b6040516104649190613c81565b60405180910390f35b610487600480360381019061048291906138cd565b610e60565b005b34801561049557600080fd5b506104b060048036038101906104ab919061355b565b61105d565b6040516104bd9190613ea0565b60405180910390f35b3480156104d257600080fd5b506104db61112d565b005b3480156104e957600080fd5b5061050460048036038101906104ff9190613806565b6111b5565b005b610520600480360381019061051b9190613792565b61124d565b005b34801561052e57600080fd5b506105376114ef565b6040516105449190613c81565b60405180910390f35b34801561055957600080fd5b50610562611519565b60405161056f9190613ce8565b60405180910390f35b34801561058457600080fd5b5061058d61152c565b60405161059a9190613d1e565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190613712565b6115be565b005b3480156105d857600080fd5b506105f360048036038101906105ee919061369e565b611736565b6040516106009190613ce8565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b919061361b565b611826565b005b34801561063e57600080fd5b5061064761189e565b6040516106549190613ea0565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f91906138a0565b6118a4565b005b34801561069257600080fd5b506106ad60048036038101906106a891906138a0565b61192a565b6040516106ba9190613d1e565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e5919061355b565b61195b565b6040516106f79190613ebb565b60405180910390f35b34801561070c57600080fd5b5061071561196d565b005b34801561072357600080fd5b5061072c611a15565b005b34801561073a57600080fd5b5061075560048036038101906107509190613752565b611abd565b005b34801561076357600080fd5b5061076c611b9e565b6040516107799190613ce8565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190613588565b611bb1565b6040516107b69190613ce8565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e191906138a0565b611c45565b005b3480156107f457600080fd5b5061080f600480360381019061080a919061355b565b611d0f565b005b34801561081d57600080fd5b50610826611e07565b6040516108339190613ea0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610917575061091682611e30565b5b9050919050565b60606002805461092d90614196565b80601f016020809104026020016040519081016040528092919081815260200182805461095990614196565b80156109a65780601f1061097b576101008083540402835291602001916109a6565b820191906000526020600020905b81548152906001019060200180831161098957829003601f168201915b5050505050905090565b60006109bb82611e9a565b6109f1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e6020528060005260406000206000915090505481565b6000610a4f82610e4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ad6611ee8565b73ffffffffffffffffffffffffffffffffffffffff1614610b3957610b0281610afd611ee8565b611bb1565b610b38576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b44838383611ef0565b505050565b6000610b53611fa2565b6001546000540303905090565b610b6b838383611fab565b505050565b600c5481565b610b7e611ee8565b73ffffffffffffffffffffffffffffffffffffffff16610b9c6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990613dc0565b60405180910390fd5b6000479050730c3a7f745d99661c798bd1a50e4d479754f6040873ffffffffffffffffffffffffffffffffffffffff166108fc600483610c329190614003565b9081150290604051600060405180830381858888f19350505050158015610c5d573d6000803e3d6000fd5b5073925fbdd517842b5a27167d35d9c98be7bb6b5e3a73ffffffffffffffffffffffffffffffffffffffff166108fc600483610c999190614003565b9081150290604051600060405180830381858888f19350505050158015610cc4573d6000803e3d6000fd5b5073df8daa1880680b307ef740c3db425370b2da95b073ffffffffffffffffffffffffffffffffffffffff166108fc600483610d009190614003565b9081150290604051600060405180830381858888f19350505050158015610d2b573d6000803e3d6000fd5b507393ebc766ace620195e373c3ffb13dfb1129057d173ffffffffffffffffffffffffffffffffffffffff166108fc600483610d679190614003565b9081150290604051600060405180830381858888f19350505050158015610d92573d6000803e3d6000fd5b5050565b610db183838360405180602001604052806000815250611826565b505050565b610dc1816001612461565b50565b610dcc611ee8565b73ffffffffffffffffffffffffffffffffffffffff16610dea6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790613dc0565b60405180910390fd5b80600b8190555050565b6000610e5582612851565b600001519050919050565b60026009541415610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90613e60565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ee657600080fd5b600a60009054906101000a900460ff16610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90613e00565b60405180910390fd5b8067ffffffffffffffff16600b54610f4d9190614034565b3414610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8590613e20565b60405180910390fd5b600c548167ffffffffffffffff16610fa4610b49565b610fae9190613f6f565b1115610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613de0565b60405180910390fd5b600d548167ffffffffffffffff16111561103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590613d60565b60405180910390fd5b611052338267ffffffffffffffff16612adc565b600160098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611135611ee8565b73ffffffffffffffffffffffffffffffffffffffff166111536114ef565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613dc0565b60405180910390fd5b6111b36000612afa565b565b6111bd611ee8565b73ffffffffffffffffffffffffffffffffffffffff166111db6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122890613dc0565b60405180910390fd5b81600e6000838152602001908152602001600020819055505050565b60026009541415611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613e60565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112d357600080fd5b600a60019054906101000a900460ff16611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613da0565b60405180910390fd5b8167ffffffffffffffff16600b5461133a9190614034565b341461137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290613e20565b60405180910390fd5b600c548267ffffffffffffffff16611391610b49565b61139b9190613f6f565b11156113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d390613de0565b60405180910390fd5b6113e833858584611736565b611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90613e40565b60405180910390fd5b600061143233612bc0565b90508183826114419190613fc5565b67ffffffffffffffff16111561145683612c20565b6040516020016114669190613c54565b604051602081830303815290604052906114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad9190613d1e565b60405180910390fd5b506114cc3384836114c79190613fc5565b612d81565b6114e0338467ffffffffffffffff16612adc565b50600160098190555050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60019054906101000a900460ff1681565b60606003805461153b90614196565b80601f016020809104026020016040519081016040528092919081815260200182805461156790614196565b80156115b45780601f10611589576101008083540402835291602001916115b4565b820191906000526020600020905b81548152906001019060200180831161159757829003601f168201915b5050505050905090565b6115c6611ee8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611638611ee8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116e5611ee8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161172a9190613ce8565b60405180910390a35050565b60008060001b600e6000848152602001908152602001600020541415611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613e80565b60405180910390fd5b6000856040516020016117a49190613c0c565b60405160208183030381529060405280519060200120905061181b858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e60008681526020019081526020016000205483612dee565b915050949350505050565b611831848484611fab565b6118508373ffffffffffffffffffffffffffffffffffffffff16611e0d565b156118985761186184848484612e05565b611897576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b6118ac611ee8565b73ffffffffffffffffffffffffffffffffffffffff166118ca6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790613dc0565b60405180910390fd5b80600d8190555050565b606061193582612c20565b6040516020016119459190613c27565b6040516020818303038152906040529050919050565b600061196682612bc0565b9050919050565b611975611ee8565b73ffffffffffffffffffffffffffffffffffffffff166119936114ef565b73ffffffffffffffffffffffffffffffffffffffff16146119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613dc0565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b611a1d611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611a3b6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8890613dc0565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b611ac5611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611ae36114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090613dc0565b60405180910390fd5b600c5481611b45610b49565b611b4f9190613f6f565b1115611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8790613de0565b60405180910390fd5b611b9a8282612adc565b5050565b600a60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c4d611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611c6b6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb890613dc0565b60405180910390fd5b600c548110611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc90613d40565b60405180910390fd5b80600c8190555050565b611d17611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611d356114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290613dc0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290613d80565b60405180910390fd5b611e0481612afa565b50565b600d5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611ea5611fa2565b11158015611eb4575060005482105b8015611ee1575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fb682612851565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612021576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612042611ee8565b73ffffffffffffffffffffffffffffffffffffffff16148061207157506120708561206b611ee8565b611bb1565b5b806120b6575061207f611ee8565b73ffffffffffffffffffffffffffffffffffffffff1661209e846109b0565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120ef576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612156576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121638585856001612f65565b61216f60008487611ef0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123ef5760005482146123ee57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461245a8585856001612f6b565b5050505050565b600061246c83612851565b9050600081600001519050821561254d5760008173ffffffffffffffffffffffffffffffffffffffff1661249e611ee8565b73ffffffffffffffffffffffffffffffffffffffff1614806124cd57506124cc826124c7611ee8565b611bb1565b5b8061251257506124db611ee8565b73ffffffffffffffffffffffffffffffffffffffff166124fa866109b0565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061254b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61255b816000866001612f65565b61256760008583611ef0565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127cb5760005482146127ca57848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612839816000866001612f6b565b60016000815480929190600101919050555050505050565b6128596133bf565b600082905080612867611fa2565b11612aa557600054811015612aa4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612aa257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612986578092505050612ad7565b5b600115612aa157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a9c578092505050612ad7565b612987565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612af6828260405180602001604052806000815250612f71565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b60606000821415612c68576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d7c565b600082905060005b60008214612c9a578080612c83906141f9565b915050600a82612c939190614003565b9150612c70565b60008167ffffffffffffffff811115612cb657612cb5614353565b5b6040519080825280601f01601f191660200182016040528015612ce85781602001600182028036833780820191505090505b5090505b60008514612d7557600182612d01919061408e565b9150600a85612d109190614266565b6030612d1c9190613f6f565b60f81b818381518110612d3257612d31614324565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d6e9190614003565b9450612cec565b8093505050505b919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b600082612dfb8584613333565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e2b611ee8565b8786866040518563ffffffff1660e01b8152600401612e4d9493929190613c9c565b602060405180830381600087803b158015612e6757600080fd5b505af1925050508015612e9857506040513d601f19601f82011682018060405250810190612e959190613873565b60015b612f12573d8060008114612ec8576040519150601f19603f3d011682016040523d82523d6000602084013e612ecd565b606091505b50600081511415612f0a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fde576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613019576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130266000858386612f65565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506131e78673ffffffffffffffffffffffffffffffffffffffff16611e0d565b156132ac575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461325c6000878480600101955087612e05565b613292576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106131ed5782600054146132a757600080fd5b613317565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106132ad575b81600081905550505061332d6000858386612f6b565b50505050565b60008082905060005b845181101561339d57600085828151811061335a57613359614324565b5b6020026020010151905080831161337c5761337583826133a8565b9250613389565b61338681846133a8565b92505b508080613395906141f9565b91505061333c565b508091505092915050565b600082600052816020526040600020905092915050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b600061341561341084613efb565b613ed6565b90508281526020810184848401111561343157613430614391565b5b61343c848285614154565b509392505050565b60008135905061345381614697565b92915050565b60008083601f84011261346f5761346e614387565b5b8235905067ffffffffffffffff81111561348c5761348b614382565b5b6020830191508360208202830111156134a8576134a761438c565b5b9250929050565b6000813590506134be816146ae565b92915050565b6000813590506134d3816146c5565b92915050565b6000813590506134e8816146dc565b92915050565b6000815190506134fd816146dc565b92915050565b600082601f83011261351857613517614387565b5b8135613528848260208601613402565b91505092915050565b600081359050613540816146f3565b92915050565b6000813590506135558161470a565b92915050565b6000602082840312156135715761357061439b565b5b600061357f84828501613444565b91505092915050565b6000806040838503121561359f5761359e61439b565b5b60006135ad85828601613444565b92505060206135be85828601613444565b9150509250929050565b6000806000606084860312156135e1576135e061439b565b5b60006135ef86828701613444565b935050602061360086828701613444565b925050604061361186828701613531565b9150509250925092565b600080600080608085870312156136355761363461439b565b5b600061364387828801613444565b945050602061365487828801613444565b935050604061366587828801613531565b925050606085013567ffffffffffffffff81111561368657613685614396565b5b61369287828801613503565b91505092959194509250565b600080600080606085870312156136b8576136b761439b565b5b60006136c687828801613444565b945050602085013567ffffffffffffffff8111156136e7576136e6614396565b5b6136f387828801613459565b9350935050604061370687828801613531565b91505092959194509250565b600080604083850312156137295761372861439b565b5b600061373785828601613444565b9250506020613748858286016134af565b9150509250929050565b600080604083850312156137695761376861439b565b5b600061377785828601613444565b925050602061378885828601613531565b9150509250929050565b600080600080606085870312156137ac576137ab61439b565b5b600085013567ffffffffffffffff8111156137ca576137c9614396565b5b6137d687828801613459565b945094505060206137e987828801613546565b92505060406137fa87828801613531565b91505092959194509250565b6000806040838503121561381d5761381c61439b565b5b600061382b858286016134c4565b925050602061383c85828601613531565b9150509250929050565b60006020828403121561385c5761385b61439b565b5b600061386a848285016134d9565b91505092915050565b6000602082840312156138895761388861439b565b5b6000613897848285016134ee565b91505092915050565b6000602082840312156138b6576138b561439b565b5b60006138c484828501613531565b91505092915050565b6000602082840312156138e3576138e261439b565b5b60006138f184828501613546565b91505092915050565b613903816140c2565b82525050565b61391a613915826140c2565b614242565b82525050565b613929816140d4565b82525050565b613938816140e0565b82525050565b600061394982613f2c565b6139538185613f42565b9350613963818560208601614163565b61396c816143a0565b840191505092915050565b600061398282613f37565b61398c8185613f53565b935061399c818560208601614163565b6139a5816143a0565b840191505092915050565b60006139bb82613f37565b6139c58185613f64565b93506139d5818560208601614163565b80840191505092915050565b60006139ee601683613f53565b91506139f9826143be565b602082019050919050565b6000613a11602c83613f53565b9150613a1c826143e7565b604082019050919050565b6000613a34602683613f53565b9150613a3f82614436565b604082019050919050565b6000613a57601b83613f53565b9150613a6282614485565b602082019050919050565b6000613a7a600583613f64565b9150613a85826144ae565b600582019050919050565b6000613a9d602083613f53565b9150613aa8826144d7565b602082019050919050565b6000613ac0602683613f64565b9150613acb82614500565b602682019050919050565b6000613ae3601e83613f53565b9150613aee8261454f565b602082019050919050565b6000613b06601a83613f53565b9150613b1182614578565b602082019050919050565b6000613b29600683613f64565b9150613b34826145a1565b600682019050919050565b6000613b4c601a83613f53565b9150613b57826145ca565b602082019050919050565b6000613b6f600d83613f53565b9150613b7a826145f3565b602082019050919050565b6000613b92601f83613f53565b9150613b9d8261461c565b602082019050919050565b6000613bb5601983613f53565b9150613bc082614645565b602082019050919050565b6000613bd8601683613f64565b9150613be38261466e565b601682019050919050565b613bf781614136565b82525050565b613c0681614140565b82525050565b6000613c188284613909565b60148201915081905092915050565b6000613c3282613ab3565b9150613c3e82846139b0565b9150613c4982613a6d565b915081905092915050565b6000613c5f82613bcb565b9150613c6b82846139b0565b9150613c7682613b1c565b915081905092915050565b6000602082019050613c9660008301846138fa565b92915050565b6000608082019050613cb160008301876138fa565b613cbe60208301866138fa565b613ccb6040830185613bee565b8181036060830152613cdd818461393e565b905095945050505050565b6000602082019050613cfd6000830184613920565b92915050565b6000602082019050613d18600083018461392f565b92915050565b60006020820190508181036000830152613d388184613977565b905092915050565b60006020820190508181036000830152613d59816139e1565b9050919050565b60006020820190508181036000830152613d7981613a04565b9050919050565b60006020820190508181036000830152613d9981613a27565b9050919050565b60006020820190508181036000830152613db981613a4a565b9050919050565b60006020820190508181036000830152613dd981613a90565b9050919050565b60006020820190508181036000830152613df981613ad6565b9050919050565b60006020820190508181036000830152613e1981613af9565b9050919050565b60006020820190508181036000830152613e3981613b3f565b9050919050565b60006020820190508181036000830152613e5981613b62565b9050919050565b60006020820190508181036000830152613e7981613b85565b9050919050565b60006020820190508181036000830152613e9981613ba8565b9050919050565b6000602082019050613eb56000830184613bee565b92915050565b6000602082019050613ed06000830184613bfd565b92915050565b6000613ee0613ef1565b9050613eec82826141c8565b919050565b6000604051905090565b600067ffffffffffffffff821115613f1657613f15614353565b5b613f1f826143a0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f7a82614136565b9150613f8583614136565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fba57613fb9614297565b5b828201905092915050565b6000613fd082614140565b9150613fdb83614140565b92508267ffffffffffffffff03821115613ff857613ff7614297565b5b828201905092915050565b600061400e82614136565b915061401983614136565b925082614029576140286142c6565b5b828204905092915050565b600061403f82614136565b915061404a83614136565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561408357614082614297565b5b828202905092915050565b600061409982614136565b91506140a483614136565b9250828210156140b7576140b6614297565b5b828203905092915050565b60006140cd82614116565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614181578082015181840152602081019050614166565b83811115614190576000848401525b50505050565b600060028204905060018216806141ae57607f821691505b602082108114156141c2576141c16142f5565b5b50919050565b6141d1826143a0565b810181811067ffffffffffffffff821117156141f0576141ef614353565b5b80604052505050565b600061420482614136565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561423757614236614297565b5b600182019050919050565b600061424d82614254565b9050919050565b600061425f826143b1565b9050919050565b600061427182614136565b915061427c83614136565b92508261428c5761428b6142c6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f43616e6e6f7420696e63726561736520737570706c7900000000000000000000600082015250565b7f496e76616c6964206e756d626572206f6620746f6b656e73207175657269657360008201527f20666f72206d696e74696e670000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507269766174652073616c65206973206e6f742072756e6e696e670000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f68747470733a2f2f6368756262796c6974746c656a697261732e696f2f6d657460008201527f61646174612f0000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f206d696e740000600082015250565b7f5075626c69632073616c65206973206e6f742072756e6e696e67000000000000600082015250565b7f20746f74616c0000000000000000000000000000000000000000000000000000600082015250565b7f496e636f7272656374204554482073656e7420746f206d696e74000000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e76616c696420616c6c6f636174696f6e20616d6f756e7400000000000000600082015250565b7f43616e277420636c61696d206d6f7265207468616e2000000000000000000000600082015250565b6146a0816140c2565b81146146ab57600080fd5b50565b6146b7816140d4565b81146146c257600080fd5b50565b6146ce816140e0565b81146146d957600080fd5b50565b6146e5816140ea565b81146146f057600080fd5b50565b6146fc81614136565b811461470757600080fd5b50565b61471381614140565b811461471e57600080fd5b5056fea26469706673582212200a0145b6c594efa905cec00504c9a7d6c2c9c90d8b8e566646ad58e3331725df64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638da5cb5b11610118578063ca5d9cda116100a0578063e6f6ef1e1161006f578063e6f6ef1e14610757578063e985e9c514610782578063f103b433146107bf578063f2fde38b146107e8578063f43a22dc146108115761020f565b8063ca5d9cda146106c3578063dfe5dd6814610700578063e222c7f914610717578063e58306f91461072e5761020f565b8063a371a062116100e7578063a371a062146105cc578063b88d4fde14610609578063c002d23d14610632578063c7381b951461065d578063c87b56dd146106865761020f565b80638da5cb5b146105225780639168e23e1461054d57806395d89b4114610578578063a22cb465146105a35761020f565b806342842e0e1161019b5780636afcb7b01161016a5780636afcb7b01461046d57806370a0823114610489578063715018a6146104c65780637d72fd57146104dd57806385e9880f146105065761020f565b806342842e0e146103b557806342966c68146103de5780635788ff36146104075780636352211e146104305761020f565b8063095ea7b3116101e2578063095ea7b3146102f657806318160ddd1461031f57806323b872dd1461034a57806332cb6b0c146103735780633ccfd60b1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c57806308d04b2e146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613846565b61083c565b6040516102489190613ce8565b60405180910390f35b34801561025d57600080fd5b5061026661091e565b6040516102739190613d1e565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906138a0565b6109b0565b6040516102b09190613c81565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906138a0565b610a2c565b6040516102ed9190613d03565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190613752565b610a44565b005b34801561032b57600080fd5b50610334610b49565b6040516103419190613ea0565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c91906135c8565b610b60565b005b34801561037f57600080fd5b50610388610b70565b6040516103959190613ea0565b60405180910390f35b3480156103aa57600080fd5b506103b3610b76565b005b3480156103c157600080fd5b506103dc60048036038101906103d791906135c8565b610d96565b005b3480156103ea57600080fd5b50610405600480360381019061040091906138a0565b610db6565b005b34801561041357600080fd5b5061042e600480360381019061042991906138a0565b610dc4565b005b34801561043c57600080fd5b50610457600480360381019061045291906138a0565b610e4a565b6040516104649190613c81565b60405180910390f35b610487600480360381019061048291906138cd565b610e60565b005b34801561049557600080fd5b506104b060048036038101906104ab919061355b565b61105d565b6040516104bd9190613ea0565b60405180910390f35b3480156104d257600080fd5b506104db61112d565b005b3480156104e957600080fd5b5061050460048036038101906104ff9190613806565b6111b5565b005b610520600480360381019061051b9190613792565b61124d565b005b34801561052e57600080fd5b506105376114ef565b6040516105449190613c81565b60405180910390f35b34801561055957600080fd5b50610562611519565b60405161056f9190613ce8565b60405180910390f35b34801561058457600080fd5b5061058d61152c565b60405161059a9190613d1e565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190613712565b6115be565b005b3480156105d857600080fd5b506105f360048036038101906105ee919061369e565b611736565b6040516106009190613ce8565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b919061361b565b611826565b005b34801561063e57600080fd5b5061064761189e565b6040516106549190613ea0565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f91906138a0565b6118a4565b005b34801561069257600080fd5b506106ad60048036038101906106a891906138a0565b61192a565b6040516106ba9190613d1e565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e5919061355b565b61195b565b6040516106f79190613ebb565b60405180910390f35b34801561070c57600080fd5b5061071561196d565b005b34801561072357600080fd5b5061072c611a15565b005b34801561073a57600080fd5b5061075560048036038101906107509190613752565b611abd565b005b34801561076357600080fd5b5061076c611b9e565b6040516107799190613ce8565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190613588565b611bb1565b6040516107b69190613ce8565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e191906138a0565b611c45565b005b3480156107f457600080fd5b5061080f600480360381019061080a919061355b565b611d0f565b005b34801561081d57600080fd5b50610826611e07565b6040516108339190613ea0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610917575061091682611e30565b5b9050919050565b60606002805461092d90614196565b80601f016020809104026020016040519081016040528092919081815260200182805461095990614196565b80156109a65780601f1061097b576101008083540402835291602001916109a6565b820191906000526020600020905b81548152906001019060200180831161098957829003601f168201915b5050505050905090565b60006109bb82611e9a565b6109f1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e6020528060005260406000206000915090505481565b6000610a4f82610e4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ad6611ee8565b73ffffffffffffffffffffffffffffffffffffffff1614610b3957610b0281610afd611ee8565b611bb1565b610b38576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b44838383611ef0565b505050565b6000610b53611fa2565b6001546000540303905090565b610b6b838383611fab565b505050565b600c5481565b610b7e611ee8565b73ffffffffffffffffffffffffffffffffffffffff16610b9c6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990613dc0565b60405180910390fd5b6000479050730c3a7f745d99661c798bd1a50e4d479754f6040873ffffffffffffffffffffffffffffffffffffffff166108fc600483610c329190614003565b9081150290604051600060405180830381858888f19350505050158015610c5d573d6000803e3d6000fd5b5073925fbdd517842b5a27167d35d9c98be7bb6b5e3a73ffffffffffffffffffffffffffffffffffffffff166108fc600483610c999190614003565b9081150290604051600060405180830381858888f19350505050158015610cc4573d6000803e3d6000fd5b5073df8daa1880680b307ef740c3db425370b2da95b073ffffffffffffffffffffffffffffffffffffffff166108fc600483610d009190614003565b9081150290604051600060405180830381858888f19350505050158015610d2b573d6000803e3d6000fd5b507393ebc766ace620195e373c3ffb13dfb1129057d173ffffffffffffffffffffffffffffffffffffffff166108fc600483610d679190614003565b9081150290604051600060405180830381858888f19350505050158015610d92573d6000803e3d6000fd5b5050565b610db183838360405180602001604052806000815250611826565b505050565b610dc1816001612461565b50565b610dcc611ee8565b73ffffffffffffffffffffffffffffffffffffffff16610dea6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790613dc0565b60405180910390fd5b80600b8190555050565b6000610e5582612851565b600001519050919050565b60026009541415610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90613e60565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ee657600080fd5b600a60009054906101000a900460ff16610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90613e00565b60405180910390fd5b8067ffffffffffffffff16600b54610f4d9190614034565b3414610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8590613e20565b60405180910390fd5b600c548167ffffffffffffffff16610fa4610b49565b610fae9190613f6f565b1115610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613de0565b60405180910390fd5b600d548167ffffffffffffffff16111561103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590613d60565b60405180910390fd5b611052338267ffffffffffffffff16612adc565b600160098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611135611ee8565b73ffffffffffffffffffffffffffffffffffffffff166111536114ef565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613dc0565b60405180910390fd5b6111b36000612afa565b565b6111bd611ee8565b73ffffffffffffffffffffffffffffffffffffffff166111db6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122890613dc0565b60405180910390fd5b81600e6000838152602001908152602001600020819055505050565b60026009541415611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613e60565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112d357600080fd5b600a60019054906101000a900460ff16611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613da0565b60405180910390fd5b8167ffffffffffffffff16600b5461133a9190614034565b341461137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290613e20565b60405180910390fd5b600c548267ffffffffffffffff16611391610b49565b61139b9190613f6f565b11156113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d390613de0565b60405180910390fd5b6113e833858584611736565b611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90613e40565b60405180910390fd5b600061143233612bc0565b90508183826114419190613fc5565b67ffffffffffffffff16111561145683612c20565b6040516020016114669190613c54565b604051602081830303815290604052906114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad9190613d1e565b60405180910390fd5b506114cc3384836114c79190613fc5565b612d81565b6114e0338467ffffffffffffffff16612adc565b50600160098190555050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60019054906101000a900460ff1681565b60606003805461153b90614196565b80601f016020809104026020016040519081016040528092919081815260200182805461156790614196565b80156115b45780601f10611589576101008083540402835291602001916115b4565b820191906000526020600020905b81548152906001019060200180831161159757829003601f168201915b5050505050905090565b6115c6611ee8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611638611ee8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116e5611ee8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161172a9190613ce8565b60405180910390a35050565b60008060001b600e6000848152602001908152602001600020541415611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613e80565b60405180910390fd5b6000856040516020016117a49190613c0c565b60405160208183030381529060405280519060200120905061181b858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e60008681526020019081526020016000205483612dee565b915050949350505050565b611831848484611fab565b6118508373ffffffffffffffffffffffffffffffffffffffff16611e0d565b156118985761186184848484612e05565b611897576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b6118ac611ee8565b73ffffffffffffffffffffffffffffffffffffffff166118ca6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790613dc0565b60405180910390fd5b80600d8190555050565b606061193582612c20565b6040516020016119459190613c27565b6040516020818303038152906040529050919050565b600061196682612bc0565b9050919050565b611975611ee8565b73ffffffffffffffffffffffffffffffffffffffff166119936114ef565b73ffffffffffffffffffffffffffffffffffffffff16146119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613dc0565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b611a1d611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611a3b6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8890613dc0565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b611ac5611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611ae36114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090613dc0565b60405180910390fd5b600c5481611b45610b49565b611b4f9190613f6f565b1115611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8790613de0565b60405180910390fd5b611b9a8282612adc565b5050565b600a60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c4d611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611c6b6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb890613dc0565b60405180910390fd5b600c548110611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc90613d40565b60405180910390fd5b80600c8190555050565b611d17611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611d356114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290613dc0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290613d80565b60405180910390fd5b611e0481612afa565b50565b600d5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611ea5611fa2565b11158015611eb4575060005482105b8015611ee1575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fb682612851565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612021576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612042611ee8565b73ffffffffffffffffffffffffffffffffffffffff16148061207157506120708561206b611ee8565b611bb1565b5b806120b6575061207f611ee8565b73ffffffffffffffffffffffffffffffffffffffff1661209e846109b0565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120ef576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612156576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121638585856001612f65565b61216f60008487611ef0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123ef5760005482146123ee57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461245a8585856001612f6b565b5050505050565b600061246c83612851565b9050600081600001519050821561254d5760008173ffffffffffffffffffffffffffffffffffffffff1661249e611ee8565b73ffffffffffffffffffffffffffffffffffffffff1614806124cd57506124cc826124c7611ee8565b611bb1565b5b8061251257506124db611ee8565b73ffffffffffffffffffffffffffffffffffffffff166124fa866109b0565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061254b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61255b816000866001612f65565b61256760008583611ef0565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127cb5760005482146127ca57848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612839816000866001612f6b565b60016000815480929190600101919050555050505050565b6128596133bf565b600082905080612867611fa2565b11612aa557600054811015612aa4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612aa257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612986578092505050612ad7565b5b600115612aa157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a9c578092505050612ad7565b612987565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612af6828260405180602001604052806000815250612f71565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b60606000821415612c68576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d7c565b600082905060005b60008214612c9a578080612c83906141f9565b915050600a82612c939190614003565b9150612c70565b60008167ffffffffffffffff811115612cb657612cb5614353565b5b6040519080825280601f01601f191660200182016040528015612ce85781602001600182028036833780820191505090505b5090505b60008514612d7557600182612d01919061408e565b9150600a85612d109190614266565b6030612d1c9190613f6f565b60f81b818381518110612d3257612d31614324565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d6e9190614003565b9450612cec565b8093505050505b919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b600082612dfb8584613333565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e2b611ee8565b8786866040518563ffffffff1660e01b8152600401612e4d9493929190613c9c565b602060405180830381600087803b158015612e6757600080fd5b505af1925050508015612e9857506040513d601f19601f82011682018060405250810190612e959190613873565b60015b612f12573d8060008114612ec8576040519150601f19603f3d011682016040523d82523d6000602084013e612ecd565b606091505b50600081511415612f0a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fde576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613019576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130266000858386612f65565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506131e78673ffffffffffffffffffffffffffffffffffffffff16611e0d565b156132ac575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461325c6000878480600101955087612e05565b613292576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106131ed5782600054146132a757600080fd5b613317565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106132ad575b81600081905550505061332d6000858386612f6b565b50505050565b60008082905060005b845181101561339d57600085828151811061335a57613359614324565b5b6020026020010151905080831161337c5761337583826133a8565b9250613389565b61338681846133a8565b92505b508080613395906141f9565b91505061333c565b508091505092915050565b600082600052816020526040600020905092915050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b600061341561341084613efb565b613ed6565b90508281526020810184848401111561343157613430614391565b5b61343c848285614154565b509392505050565b60008135905061345381614697565b92915050565b60008083601f84011261346f5761346e614387565b5b8235905067ffffffffffffffff81111561348c5761348b614382565b5b6020830191508360208202830111156134a8576134a761438c565b5b9250929050565b6000813590506134be816146ae565b92915050565b6000813590506134d3816146c5565b92915050565b6000813590506134e8816146dc565b92915050565b6000815190506134fd816146dc565b92915050565b600082601f83011261351857613517614387565b5b8135613528848260208601613402565b91505092915050565b600081359050613540816146f3565b92915050565b6000813590506135558161470a565b92915050565b6000602082840312156135715761357061439b565b5b600061357f84828501613444565b91505092915050565b6000806040838503121561359f5761359e61439b565b5b60006135ad85828601613444565b92505060206135be85828601613444565b9150509250929050565b6000806000606084860312156135e1576135e061439b565b5b60006135ef86828701613444565b935050602061360086828701613444565b925050604061361186828701613531565b9150509250925092565b600080600080608085870312156136355761363461439b565b5b600061364387828801613444565b945050602061365487828801613444565b935050604061366587828801613531565b925050606085013567ffffffffffffffff81111561368657613685614396565b5b61369287828801613503565b91505092959194509250565b600080600080606085870312156136b8576136b761439b565b5b60006136c687828801613444565b945050602085013567ffffffffffffffff8111156136e7576136e6614396565b5b6136f387828801613459565b9350935050604061370687828801613531565b91505092959194509250565b600080604083850312156137295761372861439b565b5b600061373785828601613444565b9250506020613748858286016134af565b9150509250929050565b600080604083850312156137695761376861439b565b5b600061377785828601613444565b925050602061378885828601613531565b9150509250929050565b600080600080606085870312156137ac576137ab61439b565b5b600085013567ffffffffffffffff8111156137ca576137c9614396565b5b6137d687828801613459565b945094505060206137e987828801613546565b92505060406137fa87828801613531565b91505092959194509250565b6000806040838503121561381d5761381c61439b565b5b600061382b858286016134c4565b925050602061383c85828601613531565b9150509250929050565b60006020828403121561385c5761385b61439b565b5b600061386a848285016134d9565b91505092915050565b6000602082840312156138895761388861439b565b5b6000613897848285016134ee565b91505092915050565b6000602082840312156138b6576138b561439b565b5b60006138c484828501613531565b91505092915050565b6000602082840312156138e3576138e261439b565b5b60006138f184828501613546565b91505092915050565b613903816140c2565b82525050565b61391a613915826140c2565b614242565b82525050565b613929816140d4565b82525050565b613938816140e0565b82525050565b600061394982613f2c565b6139538185613f42565b9350613963818560208601614163565b61396c816143a0565b840191505092915050565b600061398282613f37565b61398c8185613f53565b935061399c818560208601614163565b6139a5816143a0565b840191505092915050565b60006139bb82613f37565b6139c58185613f64565b93506139d5818560208601614163565b80840191505092915050565b60006139ee601683613f53565b91506139f9826143be565b602082019050919050565b6000613a11602c83613f53565b9150613a1c826143e7565b604082019050919050565b6000613a34602683613f53565b9150613a3f82614436565b604082019050919050565b6000613a57601b83613f53565b9150613a6282614485565b602082019050919050565b6000613a7a600583613f64565b9150613a85826144ae565b600582019050919050565b6000613a9d602083613f53565b9150613aa8826144d7565b602082019050919050565b6000613ac0602683613f64565b9150613acb82614500565b602682019050919050565b6000613ae3601e83613f53565b9150613aee8261454f565b602082019050919050565b6000613b06601a83613f53565b9150613b1182614578565b602082019050919050565b6000613b29600683613f64565b9150613b34826145a1565b600682019050919050565b6000613b4c601a83613f53565b9150613b57826145ca565b602082019050919050565b6000613b6f600d83613f53565b9150613b7a826145f3565b602082019050919050565b6000613b92601f83613f53565b9150613b9d8261461c565b602082019050919050565b6000613bb5601983613f53565b9150613bc082614645565b602082019050919050565b6000613bd8601683613f64565b9150613be38261466e565b601682019050919050565b613bf781614136565b82525050565b613c0681614140565b82525050565b6000613c188284613909565b60148201915081905092915050565b6000613c3282613ab3565b9150613c3e82846139b0565b9150613c4982613a6d565b915081905092915050565b6000613c5f82613bcb565b9150613c6b82846139b0565b9150613c7682613b1c565b915081905092915050565b6000602082019050613c9660008301846138fa565b92915050565b6000608082019050613cb160008301876138fa565b613cbe60208301866138fa565b613ccb6040830185613bee565b8181036060830152613cdd818461393e565b905095945050505050565b6000602082019050613cfd6000830184613920565b92915050565b6000602082019050613d18600083018461392f565b92915050565b60006020820190508181036000830152613d388184613977565b905092915050565b60006020820190508181036000830152613d59816139e1565b9050919050565b60006020820190508181036000830152613d7981613a04565b9050919050565b60006020820190508181036000830152613d9981613a27565b9050919050565b60006020820190508181036000830152613db981613a4a565b9050919050565b60006020820190508181036000830152613dd981613a90565b9050919050565b60006020820190508181036000830152613df981613ad6565b9050919050565b60006020820190508181036000830152613e1981613af9565b9050919050565b60006020820190508181036000830152613e3981613b3f565b9050919050565b60006020820190508181036000830152613e5981613b62565b9050919050565b60006020820190508181036000830152613e7981613b85565b9050919050565b60006020820190508181036000830152613e9981613ba8565b9050919050565b6000602082019050613eb56000830184613bee565b92915050565b6000602082019050613ed06000830184613bfd565b92915050565b6000613ee0613ef1565b9050613eec82826141c8565b919050565b6000604051905090565b600067ffffffffffffffff821115613f1657613f15614353565b5b613f1f826143a0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f7a82614136565b9150613f8583614136565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fba57613fb9614297565b5b828201905092915050565b6000613fd082614140565b9150613fdb83614140565b92508267ffffffffffffffff03821115613ff857613ff7614297565b5b828201905092915050565b600061400e82614136565b915061401983614136565b925082614029576140286142c6565b5b828204905092915050565b600061403f82614136565b915061404a83614136565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561408357614082614297565b5b828202905092915050565b600061409982614136565b91506140a483614136565b9250828210156140b7576140b6614297565b5b828203905092915050565b60006140cd82614116565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614181578082015181840152602081019050614166565b83811115614190576000848401525b50505050565b600060028204905060018216806141ae57607f821691505b602082108114156141c2576141c16142f5565b5b50919050565b6141d1826143a0565b810181811067ffffffffffffffff821117156141f0576141ef614353565b5b80604052505050565b600061420482614136565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561423757614236614297565b5b600182019050919050565b600061424d82614254565b9050919050565b600061425f826143b1565b9050919050565b600061427182614136565b915061427c83614136565b92508261428c5761428b6142c6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f43616e6e6f7420696e63726561736520737570706c7900000000000000000000600082015250565b7f496e76616c6964206e756d626572206f6620746f6b656e73207175657269657360008201527f20666f72206d696e74696e670000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507269766174652073616c65206973206e6f742072756e6e696e670000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f68747470733a2f2f6368756262796c6974746c656a697261732e696f2f6d657460008201527f61646174612f0000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f206d696e740000600082015250565b7f5075626c69632073616c65206973206e6f742072756e6e696e67000000000000600082015250565b7f20746f74616c0000000000000000000000000000000000000000000000000000600082015250565b7f496e636f7272656374204554482073656e7420746f206d696e74000000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e76616c696420616c6c6f636174696f6e20616d6f756e7400000000000000600082015250565b7f43616e277420636c61696d206d6f7265207468616e2000000000000000000000600082015250565b6146a0816140c2565b81146146ab57600080fd5b50565b6146b7816140d4565b81146146c257600080fd5b50565b6146ce816140e0565b81146146d957600080fd5b50565b6146e5816140ea565b81146146f057600080fd5b50565b6146fc81614136565b811461470757600080fd5b50565b61471381614140565b811461471e57600080fd5b5056fea26469706673582212200a0145b6c594efa905cec00504c9a7d6c2c9c90d8b8e566646ad58e3331725df64736f6c63430008070033

Deployed Bytecode Sourcemap

52881:5354:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33989:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37104:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38608:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53198:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38170:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33229:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39473:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53127:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57800:432;;;;;;;;;;;;;:::i;:::-;;39714:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56666:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57561:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36912:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56146:512;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34358:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10174:103;;;;;;;;;;;;;:::i;:::-;;57223:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55327:811;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9523:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53036:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37273:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38884:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54853:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39970:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53085:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57675:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54524:209;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55209:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56874:111;;;;;;;;;;;;;:::i;:::-;;56758:108;;;;;;;;;;;;;:::i;:::-;;56993:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52990:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39242:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57378:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10432:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53163:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33989:305;34091:4;34143:25;34128:40;;;:11;:40;;;;:105;;;;34200:33;34185:48;;;:11;:48;;;;34128:105;:158;;;;34250:36;34274:11;34250:23;:36::i;:::-;34128:158;34108:178;;33989:305;;;:::o;37104:100::-;37158:13;37191:5;37184:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37104:100;:::o;38608:204::-;38676:7;38701:16;38709:7;38701;:16::i;:::-;38696:64;;38726:34;;;;;;;;;;;;;;38696:64;38780:15;:24;38796:7;38780:24;;;;;;;;;;;;;;;;;;;;;38773:31;;38608:204;;;:::o;53198:44::-;;;;;;;;;;;;;;;;;:::o;38170:372::-;38243:13;38259:24;38275:7;38259:15;:24::i;:::-;38243:40;;38304:5;38298:11;;:2;:11;;;38294:48;;;38318:24;;;;;;;;;;;;;;38294:48;38375:5;38359:21;;:12;:10;:12::i;:::-;:21;;;38355:139;;38386:37;38403:5;38410:12;:10;:12::i;:::-;38386:16;:37::i;:::-;38382:112;;38447:35;;;;;;;;;;;;;;38382:112;38355:139;38506:28;38515:2;38519:7;38528:5;38506:8;:28::i;:::-;38232:310;38170:372;;:::o;33229:312::-;33282:7;33507:15;:13;:15::i;:::-;33492:12;;33476:13;;:28;:46;33469:53;;33229:312;:::o;39473:170::-;39607:28;39617:4;39623:2;39627:7;39607:9;:28::i;:::-;39473:170;;;:::o;53127:29::-;;;;:::o;57800:432::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57850:12:::1;57865:21;57850:36;;57907:42;57899:60;;:73;57970:1;57960:7;:11;;;;:::i;:::-;57899:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57991:42;57983:60;;:73;58054:1;58044:7;:11;;;;:::i;:::-;57983:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58075:42;58067:60;;:73;58138:1;58128:7;:11;;;;:::i;:::-;58067:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58159:42;58151:60;;:73;58222:1;58212:7;:11;;;;:::i;:::-;58151:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57839:393;57800:432::o:0;39714:185::-;39852:39;39869:4;39875:2;39879:7;39852:39;;;;;;;;;;;;:16;:39::i;:::-;39714:185;;;:::o;56666:80::-;56716:22;56722:9;56733:4;56716:5;:22::i;:::-;56666:80;:::o;57561:106::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57649:10:::1;57636;:23;;;;57561:106:::0;:::o;36912:125::-;36976:7;37003:21;37016:7;37003:12;:21::i;:::-;:26;;;36996:33;;36912:125;;;:::o;56146:512::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;56246:10:::1;56233:23;;:9;:23;;;56225:32;;;::::0;::::1;;56276:19;;;;;;;;;;;56268:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;56371:9;56358:22;;:10;;:22;;;;:::i;:::-;56345:9;:35;56337:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;56459:10;;56446:9;56430:25;;:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;56422:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;56546:10;;56533:9;:23;;;;56525:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;56618:32;56628:10;56640:9;56618:32;;:9;:32::i;:::-;1768:1:::0;2722:7;:22;;;;56146:512;:::o;34358:206::-;34422:7;34463:1;34446:19;;:5;:19;;;34442:60;;;34474:28;;;;;;;;;;;;;;34442:60;34528:12;:19;34541:5;34528:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;34520:36;;34513:43;;34358:206;;;:::o;10174:103::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10239:30:::1;10266:1;10239:18;:30::i;:::-;10174:103::o:0;57223:147::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57353:9:::1;57325:12;:25;57338:11;57325:25;;;;;;;;;;;:37;;;;57223:147:::0;;:::o;55327:811::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;55482:10:::1;55469:23;;:9;:23;;;55461:32;;;::::0;::::1;;55512:20;;;;;;;;;;;55504:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;55609:9;55596:22;;:10;;:22;;;;:::i;:::-;55583:9;:35;55575:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;55697:10;;55684:9;55668:25;;:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;55660:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;55763:52;55777:10;55789:12;;55803:11;55763:13;:52::i;:::-;55755:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;55846:18;55867:19;55875:10;55867:7;:19::i;:::-;55846:40;;55932:11;55919:9;55905:11;:23;;;;:::i;:::-;:38;;;;55995:22;:11;:20;:22::i;:::-;55952:76;;;;;;;;:::i;:::-;;;;;;;;;;;;;55897:133;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;56043:44;56051:10;56077:9;56063:11;:23;;;;:::i;:::-;56043:7;:44::i;:::-;56098:32;56108:10;56120:9;56098:32;;:9;:32::i;:::-;55450:688;1768:1:::0;2722:7;:22;;;;55327:811;;;;:::o;9523:87::-;9569:7;9596:6;;;;;;;;;;;9589:13;;9523:87;:::o;53036:40::-;;;;;;;;;;;;;:::o;37273:104::-;37329:13;37362:7;37355:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37273:104;:::o;38884:287::-;38995:12;:10;:12::i;:::-;38983:24;;:8;:24;;;38979:54;;;39016:17;;;;;;;;;;;;;;38979:54;39091:8;39046:18;:32;39065:12;:10;:12::i;:::-;39046:32;;;;;;;;;;;;;;;:42;39079:8;39046:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;39144:8;39115:48;;39130:12;:10;:12::i;:::-;39115:48;;;39154:8;39115:48;;;;;;:::i;:::-;;;;;;;;38884:287;;:::o;54853:348::-;54963:4;55017:1;54988:30;;:12;:25;55001:11;54988:25;;;;;;;;;;;;:30;;54980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55061:12;55103:5;55086:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;55076:34;;;;;;55061:49;;55128:65;55147:12;;55128:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55161:12;:25;55174:11;55161:25;;;;;;;;;;;;55188:4;55128:18;:65::i;:::-;55121:72;;;54853:348;;;;;;:::o;39970:370::-;40137:28;40147:4;40153:2;40157:7;40137:9;:28::i;:::-;40180:15;:2;:13;;;:15::i;:::-;40176:157;;;40201:56;40232:4;40238:2;40242:7;40251:5;40201:30;:56::i;:::-;40197:136;;40281:40;;;;;;;;;;;;;;40197:136;40176:157;39970:370;;;;:::o;53085:35::-;;;;:::o;57675:113::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57769:11:::1;57756:10;:24;;;;57675:113:::0;:::o;54524:209::-;54597:13;54696:18;:7;:16;:18::i;:::-;54637:87;;;;;;;;:::i;:::-;;;;;;;;;;;;;54623:102;;54524:209;;;:::o;55209:106::-;55267:6;55293:14;55301:5;55293:7;:14::i;:::-;55286:21;;55209:106;;;:::o;56874:111::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56957:20:::1;;;;;;;;;;;56956:21;56933:20;;:44;;;;;;;;;;;;;;;;;;56874:111::o:0;56758:108::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56839:19:::1;;;;;;;;;;;56838:20;56816:19;;:42;;;;;;;;;;;;;;;;;;56758:108::o:0;56993:222::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57117:10:::1;;57104:9;57088:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;57080:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;57173:34;57183:12;57197:9;57173;:34::i;:::-;56993:222:::0;;:::o;52990:39::-;;;;;;;;;;;;;:::o;39242:164::-;39339:4;39363:18;:25;39382:5;39363:25;;;;;;;;;;;;;;;:35;39389:8;39363:35;;;;;;;;;;;;;;;;;;;;;;;;;39356:42;;39242:164;;;;:::o;57378:175::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57473:10:::1;;57459:11;:24;57451:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;57534:11;57521:10;:24;;;;57378:175:::0;:::o;10432:201::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10541:1:::1;10521:22;;:8;:22;;;;10513:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10597:28;10616:8;10597:18;:28::i;:::-;10432:201:::0;:::o;53163:26::-;;;;:::o;12224:326::-;12284:4;12541:1;12519:7;:19;;;:23;12512:30;;12224:326;;;:::o;22330:157::-;22415:4;22454:25;22439:40;;;:11;:40;;;;22432:47;;22330:157;;;:::o;40595:174::-;40652:4;40695:7;40676:15;:13;:15::i;:::-;:26;;:53;;;;;40716:13;;40706:7;:23;40676:53;:85;;;;;40734:11;:20;40746:7;40734:20;;;;;;;;;;;:27;;;;;;;;;;;;40733:28;40676:85;40669:92;;40595:174;;;:::o;8247:98::-;8300:7;8327:10;8320:17;;8247:98;:::o;49817:196::-;49959:2;49932:15;:24;49948:7;49932:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;49997:7;49993:2;49977:28;;49986:5;49977:28;;;;;;;;;;;;49817:196;;;:::o;54744:101::-;54809:7;54836:1;54829:8;;54744:101;:::o;44765:2130::-;44880:35;44918:21;44931:7;44918:12;:21::i;:::-;44880:59;;44978:4;44956:26;;:13;:18;;;:26;;;44952:67;;44991:28;;;;;;;;;;;;;;44952:67;45032:22;45074:4;45058:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;45095:36;45112:4;45118:12;:10;:12::i;:::-;45095:16;:36::i;:::-;45058:73;:126;;;;45172:12;:10;:12::i;:::-;45148:36;;:20;45160:7;45148:11;:20::i;:::-;:36;;;45058:126;45032:153;;45203:17;45198:66;;45229:35;;;;;;;;;;;;;;45198:66;45293:1;45279:16;;:2;:16;;;45275:52;;;45304:23;;;;;;;;;;;;;;45275:52;45340:43;45362:4;45368:2;45372:7;45381:1;45340:21;:43::i;:::-;45448:35;45465:1;45469:7;45478:4;45448:8;:35::i;:::-;45809:1;45779:12;:18;45792:4;45779:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45853:1;45825:12;:16;45838:2;45825:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45871:31;45905:11;:20;45917:7;45905:20;;;;;;;;;;;45871:54;;45956:2;45940:8;:13;;;:18;;;;;;;;;;;;;;;;;;46006:15;45973:8;:23;;;:49;;;;;;;;;;;;;;;;;;46274:19;46306:1;46296:7;:11;46274:33;;46322:31;46356:11;:24;46368:11;46356:24;;;;;;;;;;;46322:58;;46424:1;46399:27;;:8;:13;;;;;;;;;;;;:27;;;46395:384;;;46609:13;;46594:11;:28;46590:174;;46663:4;46647:8;:13;;;:20;;;;;;;;;;;;;;;;;;46716:13;:28;;;46690:8;:23;;;:54;;;;;;;;;;;;;;;;;;46590:174;46395:384;45754:1036;;;46826:7;46822:2;46807:27;;46816:4;46807:27;;;;;;;;;;;;46845:42;46866:4;46872:2;46876:7;46885:1;46845:20;:42::i;:::-;44869:2026;;44765:2130;;;:::o;47291:2408::-;47371:35;47409:21;47422:7;47409:12;:21::i;:::-;47371:59;;47443:12;47458:13;:18;;;47443:33;;47493:13;47489:290;;;47523:22;47565:4;47549:20;;:12;:10;:12::i;:::-;:20;;;:77;;;;47590:36;47607:4;47613:12;:10;:12::i;:::-;47590:16;:36::i;:::-;47549:77;:134;;;;47671:12;:10;:12::i;:::-;47647:36;;:20;47659:7;47647:11;:20::i;:::-;:36;;;47549:134;47523:161;;47706:17;47701:66;;47732:35;;;;;;;;;;;;;;47701:66;47508:271;47489:290;47791:51;47813:4;47827:1;47831:7;47840:1;47791:21;:51::i;:::-;47907:35;47924:1;47928:7;47937:4;47907:8;:35::i;:::-;48238:31;48272:12;:18;48285:4;48272:18;;;;;;;;;;;;;;;48238:52;;48328:1;48305:11;:19;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48372:1;48344:11;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48472:31;48506:11;:20;48518:7;48506:20;;;;;;;;;;;48472:54;;48557:4;48541:8;:13;;;:20;;;;;;;;;;;;;;;;;;48609:15;48576:8;:23;;;:49;;;;;;;;;;;;;;;;;;48658:4;48640:8;:15;;;:22;;;;;;;;;;;;;;;;;;48910:19;48942:1;48932:7;:11;48910:33;;48958:31;48992:11;:24;49004:11;48992:24;;;;;;;;;;;48958:58;;49060:1;49035:27;;:8;:13;;;;;;;;;;;;:27;;;49031:384;;;49245:13;;49230:11;:28;49226:174;;49299:4;49283:8;:13;;;:20;;;;;;;;;;;;;;;;;;49352:13;:28;;;49326:8;:23;;;:54;;;;;;;;;;;;;;;;;;49226:174;49031:384;48213:1213;;;;49470:7;49466:1;49443:35;;49452:4;49443:35;;;;;;;;;;;;49489:50;49510:4;49524:1;49528:7;49537:1;49489:20;:50::i;:::-;49666:12;;:14;;;;;;;;;;;;;47360:2339;;47291:2408;;:::o;35739:1111::-;35801:21;;:::i;:::-;35835:12;35850:7;35835:22;;35918:4;35899:15;:13;:15::i;:::-;:23;35895:888;;35935:13;;35928:4;:20;35924:859;;;35969:31;36003:11;:17;36015:4;36003:17;;;;;;;;;;;35969:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36044:9;:16;;;36039:729;;36115:1;36089:28;;:9;:14;;;:28;;;36085:101;;36153:9;36146:16;;;;;;36085:101;36488:261;36495:4;36488:261;;;36528:6;;;;;;;;36573:11;:17;36585:4;36573:17;;;;;;;;;;;36561:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36647:1;36621:28;;:9;:14;;;:28;;;36617:109;;36689:9;36682:16;;;;;;36617:109;36488:261;;;36039:729;35950:833;35924:859;35895:888;36811:31;;;;;;;;;;;;;;35739:1111;;;;:::o;40853:104::-;40922:27;40932:2;40936:8;40922:27;;;;;;;;;;;;:9;:27::i;:::-;40853:104;;:::o;10793:191::-;10867:16;10886:6;;;;;;;;;;;10867:25;;10912:8;10903:6;;:17;;;;;;;;;;;;;;;;;;10967:8;10936:40;;10957:8;10936:40;;;;;;;;;;;;10856:128;10793:191;:::o;35136:112::-;35191:6;35217:12;:19;35230:5;35217:19;;;;;;;;;;;;;;;:23;;;;;;;;;;;;35210:30;;35136:112;;;:::o;5809:723::-;5865:13;6095:1;6086:5;:10;6082:53;;;6113:10;;;;;;;;;;;;;;;;;;;;;6082:53;6145:12;6160:5;6145:20;;6176:14;6201:78;6216:1;6208:4;:9;6201:78;;6234:8;;;;;:::i;:::-;;;;6265:2;6257:10;;;;;:::i;:::-;;;6201:78;;;6289:19;6321:6;6311:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6289:39;;6339:154;6355:1;6346:5;:10;6339:154;;6383:1;6373:11;;;;;:::i;:::-;;;6450:2;6442:5;:10;;;;:::i;:::-;6429:2;:24;;;;:::i;:::-;6416:39;;6399:6;6406;6399:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6479:2;6470:11;;;;;:::i;:::-;;;6339:154;;;6517:6;6503:21;;;;;5809:723;;;;:::o;35436:101::-;35526:3;35500:12;:19;35513:5;35500:19;;;;;;;;;;;;;;;:23;;;:29;;;;;;;;;;;;;;;;;;35436:101;;:::o;3979:190::-;4104:4;4157;4128:25;4141:5;4148:4;4128:12;:25::i;:::-;:33;4121:40;;3979:190;;;;;:::o;50505:667::-;50668:4;50705:2;50689:36;;;50726:12;:10;:12::i;:::-;50740:4;50746:7;50755:5;50689:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50685:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50940:1;50923:6;:13;:18;50919:235;;;50969:40;;;;;;;;;;;;;;50919:235;51112:6;51106:13;51097:6;51093:2;51089:15;51082:38;50685:480;50818:45;;;50808:55;;;:6;:55;;;;50801:62;;;50505:667;;;;;;:::o;51820:159::-;;;;;:::o;52638:158::-;;;;;:::o;41330:1749::-;41453:20;41476:13;;41453:36;;41518:1;41504:16;;:2;:16;;;41500:48;;;41529:19;;;;;;;;;;;;;;41500:48;41575:1;41563:8;:13;41559:44;;;41585:18;;;;;;;;;;;;;;41559:44;41616:61;41646:1;41650:2;41654:12;41668:8;41616:21;:61::i;:::-;41989:8;41954:12;:16;41967:2;41954:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42053:8;42013:12;:16;42026:2;42013:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42112:2;42079:11;:25;42091:12;42079:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;42179:15;42129:11;:25;42141:12;42129:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;42212:20;42235:12;42212:35;;42262:11;42291:8;42276:12;:23;42262:37;;42320:15;:2;:13;;;:15::i;:::-;42316:631;;;42356:313;42412:12;42408:2;42387:38;;42404:1;42387:38;;;;;;;;;;;;42453:69;42492:1;42496:2;42500:14;;;;;;42516:5;42453:30;:69::i;:::-;42448:174;;42558:40;;;;;;;;;;;;;;42448:174;42664:3;42649:12;:18;42356:313;;42750:12;42733:13;;:29;42729:43;;42764:8;;;42729:43;42316:631;;;42813:119;42869:14;;;;;;42865:2;42844:40;;42861:1;42844:40;;;;;;;;;;;;42927:3;42912:12;:18;42813:119;;42316:631;42977:12;42961:13;:28;;;;41929:1072;;43011:60;43040:1;43044:2;43048:12;43062:8;43011:20;:60::i;:::-;41442:1637;41330:1749;;;:::o;4530:675::-;4613:7;4633:20;4656:4;4633:27;;4676:9;4671:497;4695:5;:12;4691:1;:16;4671:497;;;4729:20;4752:5;4758:1;4752:8;;;;;;;;:::i;:::-;;;;;;;;4729:31;;4795:12;4779;:28;4775:382;;4922:42;4937:12;4951;4922:14;:42::i;:::-;4907:57;;4775:382;;;5099:42;5114:12;5128;5099:14;:42::i;:::-;5084:57;;4775:382;4714:454;4709:3;;;;;:::i;:::-;;;;4671:497;;;;5185:12;5178:19;;;4530:675;;;;:::o;5213:224::-;5281:13;5344:1;5338:4;5331:15;5373:1;5367:4;5360:15;5414:4;5408;5398:21;5389:30;;5213:224;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:139::-;1344:5;1382:6;1369:20;1360:29;;1398:33;1425:5;1398:33;:::i;:::-;1298:139;;;;:::o;1443:137::-;1488:5;1526:6;1513:20;1504:29;;1542:32;1568:5;1542:32;:::i;:::-;1443:137;;;;:::o;1586:141::-;1642:5;1673:6;1667:13;1658:22;;1689:32;1715:5;1689:32;:::i;:::-;1586:141;;;;:::o;1746:338::-;1801:5;1850:3;1843:4;1835:6;1831:17;1827:27;1817:122;;1858:79;;:::i;:::-;1817:122;1975:6;1962:20;2000:78;2074:3;2066:6;2059:4;2051:6;2047:17;2000:78;:::i;:::-;1991:87;;1807:277;1746:338;;;;:::o;2090:139::-;2136:5;2174:6;2161:20;2152:29;;2190:33;2217:5;2190:33;:::i;:::-;2090:139;;;;:::o;2235:137::-;2280:5;2318:6;2305:20;2296:29;;2334:32;2360:5;2334:32;:::i;:::-;2235:137;;;;:::o;2378:329::-;2437:6;2486:2;2474:9;2465:7;2461:23;2457:32;2454:119;;;2492:79;;:::i;:::-;2454:119;2612:1;2637:53;2682:7;2673:6;2662:9;2658:22;2637:53;:::i;:::-;2627:63;;2583:117;2378:329;;;;:::o;2713:474::-;2781:6;2789;2838:2;2826:9;2817:7;2813:23;2809:32;2806:119;;;2844:79;;:::i;:::-;2806:119;2964:1;2989:53;3034:7;3025:6;3014:9;3010:22;2989:53;:::i;:::-;2979:63;;2935:117;3091:2;3117:53;3162:7;3153:6;3142:9;3138:22;3117:53;:::i;:::-;3107:63;;3062:118;2713:474;;;;;:::o;3193:619::-;3270:6;3278;3286;3335:2;3323:9;3314:7;3310:23;3306:32;3303:119;;;3341:79;;:::i;:::-;3303:119;3461:1;3486:53;3531:7;3522:6;3511:9;3507:22;3486:53;:::i;:::-;3476:63;;3432:117;3588:2;3614:53;3659:7;3650:6;3639:9;3635:22;3614:53;:::i;:::-;3604:63;;3559:118;3716:2;3742:53;3787:7;3778:6;3767:9;3763:22;3742:53;:::i;:::-;3732:63;;3687:118;3193:619;;;;;:::o;3818:943::-;3913:6;3921;3929;3937;3986:3;3974:9;3965:7;3961:23;3957:33;3954:120;;;3993:79;;:::i;:::-;3954:120;4113:1;4138:53;4183:7;4174:6;4163:9;4159:22;4138:53;:::i;:::-;4128:63;;4084:117;4240:2;4266:53;4311:7;4302:6;4291:9;4287:22;4266:53;:::i;:::-;4256:63;;4211:118;4368:2;4394:53;4439:7;4430:6;4419:9;4415:22;4394:53;:::i;:::-;4384:63;;4339:118;4524:2;4513:9;4509:18;4496:32;4555:18;4547:6;4544:30;4541:117;;;4577:79;;:::i;:::-;4541:117;4682:62;4736:7;4727:6;4716:9;4712:22;4682:62;:::i;:::-;4672:72;;4467:287;3818:943;;;;;;;:::o;4767:849::-;4871:6;4879;4887;4895;4944:2;4932:9;4923:7;4919:23;4915:32;4912:119;;;4950:79;;:::i;:::-;4912:119;5070:1;5095:53;5140:7;5131:6;5120:9;5116:22;5095:53;:::i;:::-;5085:63;;5041:117;5225:2;5214:9;5210:18;5197:32;5256:18;5248:6;5245:30;5242:117;;;5278:79;;:::i;:::-;5242:117;5391:80;5463:7;5454:6;5443:9;5439:22;5391:80;:::i;:::-;5373:98;;;;5168:313;5520:2;5546:53;5591:7;5582:6;5571:9;5567:22;5546:53;:::i;:::-;5536:63;;5491:118;4767:849;;;;;;;:::o;5622:468::-;5687:6;5695;5744:2;5732:9;5723:7;5719:23;5715:32;5712:119;;;5750:79;;:::i;:::-;5712:119;5870:1;5895:53;5940:7;5931:6;5920:9;5916:22;5895:53;:::i;:::-;5885:63;;5841:117;5997:2;6023:50;6065:7;6056:6;6045:9;6041:22;6023:50;:::i;:::-;6013:60;;5968:115;5622:468;;;;;:::o;6096:474::-;6164:6;6172;6221:2;6209:9;6200:7;6196:23;6192:32;6189:119;;;6227:79;;:::i;:::-;6189:119;6347:1;6372:53;6417:7;6408:6;6397:9;6393:22;6372:53;:::i;:::-;6362:63;;6318:117;6474:2;6500:53;6545:7;6536:6;6525:9;6521:22;6500:53;:::i;:::-;6490:63;;6445:118;6096:474;;;;;:::o;6576:847::-;6679:6;6687;6695;6703;6752:2;6740:9;6731:7;6727:23;6723:32;6720:119;;;6758:79;;:::i;:::-;6720:119;6906:1;6895:9;6891:17;6878:31;6936:18;6928:6;6925:30;6922:117;;;6958:79;;:::i;:::-;6922:117;7071:80;7143:7;7134:6;7123:9;7119:22;7071:80;:::i;:::-;7053:98;;;;6849:312;7200:2;7226:52;7270:7;7261:6;7250:9;7246:22;7226:52;:::i;:::-;7216:62;;7171:117;7327:2;7353:53;7398:7;7389:6;7378:9;7374:22;7353:53;:::i;:::-;7343:63;;7298:118;6576:847;;;;;;;:::o;7429:474::-;7497:6;7505;7554:2;7542:9;7533:7;7529:23;7525:32;7522:119;;;7560:79;;:::i;:::-;7522:119;7680:1;7705:53;7750:7;7741:6;7730:9;7726:22;7705:53;:::i;:::-;7695:63;;7651:117;7807:2;7833:53;7878:7;7869:6;7858:9;7854:22;7833:53;:::i;:::-;7823:63;;7778:118;7429:474;;;;;:::o;7909:327::-;7967:6;8016:2;8004:9;7995:7;7991:23;7987:32;7984:119;;;8022:79;;:::i;:::-;7984:119;8142:1;8167:52;8211:7;8202:6;8191:9;8187:22;8167:52;:::i;:::-;8157:62;;8113:116;7909:327;;;;:::o;8242:349::-;8311:6;8360:2;8348:9;8339:7;8335:23;8331:32;8328:119;;;8366:79;;:::i;:::-;8328:119;8486:1;8511:63;8566:7;8557:6;8546:9;8542:22;8511:63;:::i;:::-;8501:73;;8457:127;8242:349;;;;:::o;8597:329::-;8656:6;8705:2;8693:9;8684:7;8680:23;8676:32;8673:119;;;8711:79;;:::i;:::-;8673:119;8831:1;8856:53;8901:7;8892:6;8881:9;8877:22;8856:53;:::i;:::-;8846:63;;8802:117;8597:329;;;;:::o;8932:327::-;8990:6;9039:2;9027:9;9018:7;9014:23;9010:32;9007:119;;;9045:79;;:::i;:::-;9007:119;9165:1;9190:52;9234:7;9225:6;9214:9;9210:22;9190:52;:::i;:::-;9180:62;;9136:116;8932:327;;;;:::o;9265:118::-;9352:24;9370:5;9352:24;:::i;:::-;9347:3;9340:37;9265:118;;:::o;9389:157::-;9494:45;9514:24;9532:5;9514:24;:::i;:::-;9494:45;:::i;:::-;9489:3;9482:58;9389:157;;:::o;9552:109::-;9633:21;9648:5;9633:21;:::i;:::-;9628:3;9621:34;9552:109;;:::o;9667:118::-;9754:24;9772:5;9754:24;:::i;:::-;9749:3;9742:37;9667:118;;:::o;9791:360::-;9877:3;9905:38;9937:5;9905:38;:::i;:::-;9959:70;10022:6;10017:3;9959:70;:::i;:::-;9952:77;;10038:52;10083:6;10078:3;10071:4;10064:5;10060:16;10038:52;:::i;:::-;10115:29;10137:6;10115:29;:::i;:::-;10110:3;10106:39;10099:46;;9881:270;9791:360;;;;:::o;10157:364::-;10245:3;10273:39;10306:5;10273:39;:::i;:::-;10328:71;10392:6;10387:3;10328:71;:::i;:::-;10321:78;;10408:52;10453:6;10448:3;10441:4;10434:5;10430:16;10408:52;:::i;:::-;10485:29;10507:6;10485:29;:::i;:::-;10480:3;10476:39;10469:46;;10249:272;10157:364;;;;:::o;10527:377::-;10633:3;10661:39;10694:5;10661:39;:::i;:::-;10716:89;10798:6;10793:3;10716:89;:::i;:::-;10709:96;;10814:52;10859:6;10854:3;10847:4;10840:5;10836:16;10814:52;:::i;:::-;10891:6;10886:3;10882:16;10875:23;;10637:267;10527:377;;;;:::o;10910:366::-;11052:3;11073:67;11137:2;11132:3;11073:67;:::i;:::-;11066:74;;11149:93;11238:3;11149:93;:::i;:::-;11267:2;11262:3;11258:12;11251:19;;10910:366;;;:::o;11282:::-;11424:3;11445:67;11509:2;11504:3;11445:67;:::i;:::-;11438:74;;11521:93;11610:3;11521:93;:::i;:::-;11639:2;11634:3;11630:12;11623:19;;11282:366;;;:::o;11654:::-;11796:3;11817:67;11881:2;11876:3;11817:67;:::i;:::-;11810:74;;11893:93;11982:3;11893:93;:::i;:::-;12011:2;12006:3;12002:12;11995:19;;11654:366;;;:::o;12026:::-;12168:3;12189:67;12253:2;12248:3;12189:67;:::i;:::-;12182:74;;12265:93;12354:3;12265:93;:::i;:::-;12383:2;12378:3;12374:12;12367:19;;12026:366;;;:::o;12398:400::-;12558:3;12579:84;12661:1;12656:3;12579:84;:::i;:::-;12572:91;;12672:93;12761:3;12672:93;:::i;:::-;12790:1;12785:3;12781:11;12774:18;;12398:400;;;:::o;12804:366::-;12946:3;12967:67;13031:2;13026:3;12967:67;:::i;:::-;12960:74;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12804:366;;;:::o;13176:402::-;13336:3;13357:85;13439:2;13434:3;13357:85;:::i;:::-;13350:92;;13451:93;13540:3;13451:93;:::i;:::-;13569:2;13564:3;13560:12;13553:19;;13176:402;;;:::o;13584:366::-;13726:3;13747:67;13811:2;13806:3;13747:67;:::i;:::-;13740:74;;13823:93;13912:3;13823:93;:::i;:::-;13941:2;13936:3;13932:12;13925:19;;13584:366;;;:::o;13956:::-;14098:3;14119:67;14183:2;14178:3;14119:67;:::i;:::-;14112:74;;14195:93;14284:3;14195:93;:::i;:::-;14313:2;14308:3;14304:12;14297:19;;13956:366;;;:::o;14328:400::-;14488:3;14509:84;14591:1;14586:3;14509:84;:::i;:::-;14502:91;;14602:93;14691:3;14602:93;:::i;:::-;14720:1;14715:3;14711:11;14704:18;;14328:400;;;:::o;14734:366::-;14876:3;14897:67;14961:2;14956:3;14897:67;:::i;:::-;14890:74;;14973:93;15062:3;14973:93;:::i;:::-;15091:2;15086:3;15082:12;15075:19;;14734:366;;;:::o;15106:::-;15248:3;15269:67;15333:2;15328:3;15269:67;:::i;:::-;15262:74;;15345:93;15434:3;15345:93;:::i;:::-;15463:2;15458:3;15454:12;15447:19;;15106:366;;;:::o;15478:::-;15620:3;15641:67;15705:2;15700:3;15641:67;:::i;:::-;15634:74;;15717:93;15806:3;15717:93;:::i;:::-;15835:2;15830:3;15826:12;15819:19;;15478:366;;;:::o;15850:::-;15992:3;16013:67;16077:2;16072:3;16013:67;:::i;:::-;16006:74;;16089:93;16178:3;16089:93;:::i;:::-;16207:2;16202:3;16198:12;16191:19;;15850:366;;;:::o;16222:402::-;16382:3;16403:85;16485:2;16480:3;16403:85;:::i;:::-;16396:92;;16497:93;16586:3;16497:93;:::i;:::-;16615:2;16610:3;16606:12;16599:19;;16222:402;;;:::o;16630:118::-;16717:24;16735:5;16717:24;:::i;:::-;16712:3;16705:37;16630:118;;:::o;16754:115::-;16839:23;16856:5;16839:23;:::i;:::-;16834:3;16827:36;16754:115;;:::o;16875:256::-;16987:3;17002:75;17073:3;17064:6;17002:75;:::i;:::-;17102:2;17097:3;17093:12;17086:19;;17122:3;17115:10;;16875:256;;;;:::o;17137:807::-;17471:3;17493:148;17637:3;17493:148;:::i;:::-;17486:155;;17658:95;17749:3;17740:6;17658:95;:::i;:::-;17651:102;;17770:148;17914:3;17770:148;:::i;:::-;17763:155;;17935:3;17928:10;;17137:807;;;;:::o;17950:::-;18284:3;18306:148;18450:3;18306:148;:::i;:::-;18299:155;;18471:95;18562:3;18553:6;18471:95;:::i;:::-;18464:102;;18583:148;18727:3;18583:148;:::i;:::-;18576:155;;18748:3;18741:10;;17950:807;;;;:::o;18763:222::-;18856:4;18894:2;18883:9;18879:18;18871:26;;18907:71;18975:1;18964:9;18960:17;18951:6;18907:71;:::i;:::-;18763:222;;;;:::o;18991:640::-;19186:4;19224:3;19213:9;19209:19;19201:27;;19238:71;19306:1;19295:9;19291:17;19282:6;19238:71;:::i;:::-;19319:72;19387:2;19376:9;19372:18;19363:6;19319:72;:::i;:::-;19401;19469:2;19458:9;19454:18;19445:6;19401:72;:::i;:::-;19520:9;19514:4;19510:20;19505:2;19494:9;19490:18;19483:48;19548:76;19619:4;19610:6;19548:76;:::i;:::-;19540:84;;18991:640;;;;;;;:::o;19637:210::-;19724:4;19762:2;19751:9;19747:18;19739:26;;19775:65;19837:1;19826:9;19822:17;19813:6;19775:65;:::i;:::-;19637:210;;;;:::o;19853:222::-;19946:4;19984:2;19973:9;19969:18;19961:26;;19997:71;20065:1;20054:9;20050:17;20041:6;19997:71;:::i;:::-;19853:222;;;;:::o;20081:313::-;20194:4;20232:2;20221:9;20217:18;20209:26;;20281:9;20275:4;20271:20;20267:1;20256:9;20252:17;20245:47;20309:78;20382:4;20373:6;20309:78;:::i;:::-;20301:86;;20081:313;;;;:::o;20400:419::-;20566:4;20604:2;20593:9;20589:18;20581:26;;20653:9;20647:4;20643:20;20639:1;20628:9;20624:17;20617:47;20681:131;20807:4;20681:131;:::i;:::-;20673:139;;20400:419;;;:::o;20825:::-;20991:4;21029:2;21018:9;21014:18;21006:26;;21078:9;21072:4;21068:20;21064:1;21053:9;21049:17;21042:47;21106:131;21232:4;21106:131;:::i;:::-;21098:139;;20825:419;;;:::o;21250:::-;21416:4;21454:2;21443:9;21439:18;21431:26;;21503:9;21497:4;21493:20;21489:1;21478:9;21474:17;21467:47;21531:131;21657:4;21531:131;:::i;:::-;21523:139;;21250:419;;;:::o;21675:::-;21841:4;21879:2;21868:9;21864:18;21856:26;;21928:9;21922:4;21918:20;21914:1;21903:9;21899:17;21892:47;21956:131;22082:4;21956:131;:::i;:::-;21948:139;;21675:419;;;:::o;22100:::-;22266:4;22304:2;22293:9;22289:18;22281:26;;22353:9;22347:4;22343:20;22339:1;22328:9;22324:17;22317:47;22381:131;22507:4;22381:131;:::i;:::-;22373:139;;22100:419;;;:::o;22525:::-;22691:4;22729:2;22718:9;22714:18;22706:26;;22778:9;22772:4;22768:20;22764:1;22753:9;22749:17;22742:47;22806:131;22932:4;22806:131;:::i;:::-;22798:139;;22525:419;;;:::o;22950:::-;23116:4;23154:2;23143:9;23139:18;23131:26;;23203:9;23197:4;23193:20;23189:1;23178:9;23174:17;23167:47;23231:131;23357:4;23231:131;:::i;:::-;23223:139;;22950:419;;;:::o;23375:::-;23541:4;23579:2;23568:9;23564:18;23556:26;;23628:9;23622:4;23618:20;23614:1;23603:9;23599:17;23592:47;23656:131;23782:4;23656:131;:::i;:::-;23648:139;;23375:419;;;:::o;23800:::-;23966:4;24004:2;23993:9;23989:18;23981:26;;24053:9;24047:4;24043:20;24039:1;24028:9;24024:17;24017:47;24081:131;24207:4;24081:131;:::i;:::-;24073:139;;23800:419;;;:::o;24225:::-;24391:4;24429:2;24418:9;24414:18;24406:26;;24478:9;24472:4;24468:20;24464:1;24453:9;24449:17;24442:47;24506:131;24632:4;24506:131;:::i;:::-;24498:139;;24225:419;;;:::o;24650:::-;24816:4;24854:2;24843:9;24839:18;24831:26;;24903:9;24897:4;24893:20;24889:1;24878:9;24874:17;24867:47;24931:131;25057:4;24931:131;:::i;:::-;24923:139;;24650:419;;;:::o;25075:222::-;25168:4;25206:2;25195:9;25191:18;25183:26;;25219:71;25287:1;25276:9;25272:17;25263:6;25219:71;:::i;:::-;25075:222;;;;:::o;25303:218::-;25394:4;25432:2;25421:9;25417:18;25409:26;;25445:69;25511:1;25500:9;25496:17;25487:6;25445:69;:::i;:::-;25303:218;;;;:::o;25527:129::-;25561:6;25588:20;;:::i;:::-;25578:30;;25617:33;25645:4;25637:6;25617:33;:::i;:::-;25527:129;;;:::o;25662:75::-;25695:6;25728:2;25722:9;25712:19;;25662:75;:::o;25743:307::-;25804:4;25894:18;25886:6;25883:30;25880:56;;;25916:18;;:::i;:::-;25880:56;25954:29;25976:6;25954:29;:::i;:::-;25946:37;;26038:4;26032;26028:15;26020:23;;25743:307;;;:::o;26056:98::-;26107:6;26141:5;26135:12;26125:22;;26056:98;;;:::o;26160:99::-;26212:6;26246:5;26240:12;26230:22;;26160:99;;;:::o;26265:168::-;26348:11;26382:6;26377:3;26370:19;26422:4;26417:3;26413:14;26398:29;;26265:168;;;;:::o;26439:169::-;26523:11;26557:6;26552:3;26545:19;26597:4;26592:3;26588:14;26573:29;;26439:169;;;;:::o;26614:148::-;26716:11;26753:3;26738:18;;26614:148;;;;:::o;26768:305::-;26808:3;26827:20;26845:1;26827:20;:::i;:::-;26822:25;;26861:20;26879:1;26861:20;:::i;:::-;26856:25;;27015:1;26947:66;26943:74;26940:1;26937:81;26934:107;;;27021:18;;:::i;:::-;26934:107;27065:1;27062;27058:9;27051:16;;26768:305;;;;:::o;27079:254::-;27118:3;27137:19;27154:1;27137:19;:::i;:::-;27132:24;;27170:19;27187:1;27170:19;:::i;:::-;27165:24;;27275:1;27255:18;27251:26;27248:1;27245:33;27242:59;;;27281:18;;:::i;:::-;27242:59;27325:1;27322;27318:9;27311:16;;27079:254;;;;:::o;27339:185::-;27379:1;27396:20;27414:1;27396:20;:::i;:::-;27391:25;;27430:20;27448:1;27430:20;:::i;:::-;27425:25;;27469:1;27459:35;;27474:18;;:::i;:::-;27459:35;27516:1;27513;27509:9;27504:14;;27339:185;;;;:::o;27530:348::-;27570:7;27593:20;27611:1;27593:20;:::i;:::-;27588:25;;27627:20;27645:1;27627:20;:::i;:::-;27622:25;;27815:1;27747:66;27743:74;27740:1;27737:81;27732:1;27725:9;27718:17;27714:105;27711:131;;;27822:18;;:::i;:::-;27711:131;27870:1;27867;27863:9;27852:20;;27530:348;;;;:::o;27884:191::-;27924:4;27944:20;27962:1;27944:20;:::i;:::-;27939:25;;27978:20;27996:1;27978:20;:::i;:::-;27973:25;;28017:1;28014;28011:8;28008:34;;;28022:18;;:::i;:::-;28008:34;28067:1;28064;28060:9;28052:17;;27884:191;;;;:::o;28081:96::-;28118:7;28147:24;28165:5;28147:24;:::i;:::-;28136:35;;28081:96;;;:::o;28183:90::-;28217:7;28260:5;28253:13;28246:21;28235:32;;28183:90;;;:::o;28279:77::-;28316:7;28345:5;28334:16;;28279:77;;;:::o;28362:149::-;28398:7;28438:66;28431:5;28427:78;28416:89;;28362:149;;;:::o;28517:126::-;28554:7;28594:42;28587:5;28583:54;28572:65;;28517:126;;;:::o;28649:77::-;28686:7;28715:5;28704:16;;28649:77;;;:::o;28732:101::-;28768:7;28808:18;28801:5;28797:30;28786:41;;28732:101;;;:::o;28839:154::-;28923:6;28918:3;28913;28900:30;28985:1;28976:6;28971:3;28967:16;28960:27;28839:154;;;:::o;28999:307::-;29067:1;29077:113;29091:6;29088:1;29085:13;29077:113;;;29176:1;29171:3;29167:11;29161:18;29157:1;29152:3;29148:11;29141:39;29113:2;29110:1;29106:10;29101:15;;29077:113;;;29208:6;29205:1;29202:13;29199:101;;;29288:1;29279:6;29274:3;29270:16;29263:27;29199:101;29048:258;28999:307;;;:::o;29312:320::-;29356:6;29393:1;29387:4;29383:12;29373:22;;29440:1;29434:4;29430:12;29461:18;29451:81;;29517:4;29509:6;29505:17;29495:27;;29451:81;29579:2;29571:6;29568:14;29548:18;29545:38;29542:84;;;29598:18;;:::i;:::-;29542:84;29363:269;29312:320;;;:::o;29638:281::-;29721:27;29743:4;29721:27;:::i;:::-;29713:6;29709:40;29851:6;29839:10;29836:22;29815:18;29803:10;29800:34;29797:62;29794:88;;;29862:18;;:::i;:::-;29794:88;29902:10;29898:2;29891:22;29681:238;29638:281;;:::o;29925:233::-;29964:3;29987:24;30005:5;29987:24;:::i;:::-;29978:33;;30033:66;30026:5;30023:77;30020:103;;;30103:18;;:::i;:::-;30020:103;30150:1;30143:5;30139:13;30132:20;;29925:233;;;:::o;30164:100::-;30203:7;30232:26;30252:5;30232:26;:::i;:::-;30221:37;;30164:100;;;:::o;30270:94::-;30309:7;30338:20;30352:5;30338:20;:::i;:::-;30327:31;;30270:94;;;:::o;30370:176::-;30402:1;30419:20;30437:1;30419:20;:::i;:::-;30414:25;;30453:20;30471:1;30453:20;:::i;:::-;30448:25;;30492:1;30482:35;;30497:18;;:::i;:::-;30482:35;30538:1;30535;30531:9;30526:14;;30370:176;;;;:::o;30552:180::-;30600:77;30597:1;30590:88;30697:4;30694:1;30687:15;30721:4;30718:1;30711:15;30738:180;30786:77;30783:1;30776:88;30883:4;30880:1;30873:15;30907:4;30904:1;30897:15;30924:180;30972:77;30969:1;30962:88;31069:4;31066:1;31059:15;31093:4;31090:1;31083:15;31110:180;31158:77;31155:1;31148:88;31255:4;31252:1;31245:15;31279:4;31276:1;31269:15;31296:180;31344:77;31341:1;31334:88;31441:4;31438:1;31431:15;31465:4;31462:1;31455:15;31482:117;31591:1;31588;31581:12;31605:117;31714:1;31711;31704:12;31728:117;31837:1;31834;31827:12;31851:117;31960:1;31957;31950:12;31974:117;32083:1;32080;32073:12;32097:117;32206:1;32203;32196:12;32220:102;32261:6;32312:2;32308:7;32303:2;32296:5;32292:14;32288:28;32278:38;;32220:102;;;:::o;32328:94::-;32361:8;32409:5;32405:2;32401:14;32380:35;;32328:94;;;:::o;32428:172::-;32568:24;32564:1;32556:6;32552:14;32545:48;32428:172;:::o;32606:231::-;32746:34;32742:1;32734:6;32730:14;32723:58;32815:14;32810:2;32802:6;32798:15;32791:39;32606:231;:::o;32843:225::-;32983:34;32979:1;32971:6;32967:14;32960:58;33052:8;33047:2;33039:6;33035:15;33028:33;32843:225;:::o;33074:177::-;33214:29;33210:1;33202:6;33198:14;33191:53;33074:177;:::o;33257:155::-;33397:7;33393:1;33385:6;33381:14;33374:31;33257:155;:::o;33418:182::-;33558:34;33554:1;33546:6;33542:14;33535:58;33418:182;:::o;33606:233::-;33746:34;33742:1;33734:6;33730:14;33723:58;33819:8;33814:2;33806:6;33802:15;33795:33;33606:233;:::o;33849:188::-;33993:32;33989:1;33981:6;33977:14;33970:56;33849:188;:::o;34047:184::-;34191:28;34187:1;34179:6;34175:14;34168:52;34047:184;:::o;34241:164::-;34385:8;34381:1;34373:6;34369:14;34362:32;34241:164;:::o;34415:184::-;34559:28;34555:1;34547:6;34543:14;34536:52;34415:184;:::o;34609:171::-;34753:15;34749:1;34741:6;34737:14;34730:39;34609:171;:::o;34790:189::-;34934:33;34930:1;34922:6;34918:14;34911:57;34790:189;:::o;34989:183::-;35133:27;35129:1;35121:6;35117:14;35110:51;34989:183;:::o;35182:180::-;35326:24;35322:1;35314:6;35310:14;35303:48;35182:180;:::o;35372:130::-;35449:24;35467:5;35449:24;:::i;:::-;35442:5;35439:35;35429:63;;35488:1;35485;35478:12;35429:63;35372:130;:::o;35512:124::-;35586:21;35601:5;35586:21;:::i;:::-;35579:5;35576:32;35566:60;;35622:1;35619;35612:12;35566:60;35512:124;:::o;35646:130::-;35723:24;35741:5;35723:24;:::i;:::-;35716:5;35713:35;35703:63;;35762:1;35759;35752:12;35703:63;35646:130;:::o;35786:128::-;35862:23;35879:5;35862:23;:::i;:::-;35855:5;35852:34;35842:62;;35900:1;35897;35890:12;35842:62;35786:128;:::o;35924:130::-;36001:24;36019:5;36001:24;:::i;:::-;35994:5;35991:35;35981:63;;36040:1;36037;36030:12;35981:63;35924:130;:::o;36064:128::-;36140:23;36157:5;36140:23;:::i;:::-;36133:5;36130:34;36120:62;;36178:1;36175;36168:12;36120:62;36064:128;:::o

Swarm Source

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