ETH Price: $3,164.20 (-7.45%)
Gas: 4 Gwei

Token

LilDegens (LD)
 

Overview

Max Total Supply

13 LD

Holders

13

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
devcso.eth
Balance
1 LD
0x363d04e8adb3260a40506b1c88a75b137ebf1f3b
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:
LilDegens

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 2 of 16 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    bool private _paused;

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

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

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

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

File 3 of 16 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 4 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 5 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 6 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

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

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

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

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

File 7 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// 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 8 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

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

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 9 of 16 : Context.sol
// SPDX-License-Identifier: MIT
// 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 10 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 11 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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 12 of 16 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 16 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 14 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

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

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

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

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 15 of 16 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

    // 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) private _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;

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     * `collectionSize_` refers to how many tokens are in the collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

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

        revert("ERC721A: unable to determine the owner of token");
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - there must be `quantity` tokens remaining unminted in the total collection.
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

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

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

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

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

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

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

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

File 16 of 16 : LilDegens.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";


interface ILilDegenCoin {
    function burn(address _from, uint256 _amount) external;
    function updateReward(address _from, address _to) external;
    function transfer(address to, uint256 value) external returns (bool);
    function balanceOf(address who) external view returns (uint256);
}

contract LilDegens is ERC721A, Ownable, Pausable, ReentrancyGuard {
    using Strings for uint256;
    using Address for address;

    string private baseURI;
    uint256 public maxSupply = 6969;
    uint256 public immutable maxPerAddressDuringMint;
    
    uint256 public price;
    uint256 public name_change_price = 150;
    uint256 public bio_change_price = 200;

    uint256 public startTimestamp;



    mapping(address => uint256) public genBalance;

    struct LilDegenData {
        string name;
        string bio;
        uint256 level;
        uint256 xp;
    }

    modifier LilDegenOwner(uint256 tokenId) {
        require(
            ownerOf(tokenId) == msg.sender,
            "Cannot interact with a LilDegen you do not own"
        );
        _;
    }

    ILilDegenCoin public LilDegenCoin;



    mapping(uint256 => LilDegenData) public lilDegenData;

    event NameChanged(uint256 LilDegenId, string LilDegenName);
    event BioChanged(uint256 LilDegenId, string LilDegenBio);

    constructor(
        string memory name,
        string memory symbol,
        uint256 maxBatchSize_,
        uint256 mintPrice_,
        uint256 startTimestamp_
    )
        ERC721A(name, symbol, maxBatchSize_, maxSupply)
    {
        maxPerAddressDuringMint = maxBatchSize_;
        price = mintPrice_;
        startTimestamp = startTimestamp_;
    }

    function changeName(uint256 LilDegenId, string memory newName)
        external
        LilDegenOwner(LilDegenId)
    {
        bytes memory n = bytes(newName);
        require(n.length > 0 && n.length < 25, "Invalid name length");
        require(
            sha256(n) != sha256(bytes(lilDegenData[LilDegenId].name)),
            "New name is same as current name"
        );

        LilDegenCoin.burn(msg.sender, name_change_price);
        lilDegenData[LilDegenId].name = newName;
        emit NameChanged(LilDegenId, newName);
    }


    function changeBio(uint256 LilDegenId, string memory newBio)
        external
        LilDegenOwner(LilDegenId)
    {
        bytes memory n = bytes(newBio);
        require(n.length > 0 && n.length < 250, "Invalid name length");
        require(
            sha256(n) != sha256(bytes(lilDegenData[LilDegenId].bio)),
            "New bio is same as current bio"
        );

        LilDegenCoin.burn(msg.sender, name_change_price);
        lilDegenData[LilDegenId].bio = newBio;
        emit BioChanged(LilDegenId, newBio);
    }

    function setLilDegenCoin(address LilDegenCoinAddress) external onlyOwner {
        LilDegenCoin = ILilDegenCoin(LilDegenCoinAddress);
    }

    function mint(uint256 numberOfMints) external payable {
        require(block.timestamp >= startTimestamp, "Sale has not started");
        require(totalSupply() + numberOfMints <= maxSupply);
        require(
            numberMinted(msg.sender) + numberOfMints <= maxPerAddressDuringMint,
            "Limit number of mints to an amount set on contract configuration"
        );
        require(
            msg.value >= price * numberOfMints,
            "Ether value sent is below the price"
        );
        _safeMint(msg.sender, numberOfMints);
        genBalance[msg.sender]++;
    }

    function gift(uint256 numberOfMints, address _to) public onlyOwner {
        require(
            totalSupply() + numberOfMints <= maxSupply,
            "Purchase would exceed max supply of LilDegens"
        );
        _safeMint(_to, numberOfMints);
        genBalance[msg.sender]++;
    }

    function walletOfOwner(address owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokensId;
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        if (tokenId < maxSupply && isContract(to) == false) {
            LilDegenCoin.updateReward(from, to);
            genBalance[from]--;
            genBalance[to]++;
        }
        ERC721A.transferFrom(from, to, tokenId);
    }

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

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

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

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function setNameChangePrice(uint256 newPrice) public onlyOwner {
        name_change_price = newPrice;
    }

    function setBioChangePrice(uint256 newPrice) public onlyOwner {
        bio_change_price = newPrice;
    }

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

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

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function isContract(address _address) internal returns (bool) {
        uint codeSize;
        assembly {
            codeSize := extcodesize(_address)
        }
        return codeSize > 0;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"mintPrice_","type":"uint256"},{"internalType":"uint256","name":"startTimestamp_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"LilDegenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"LilDegenBio","type":"string"}],"name":"BioChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"LilDegenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"LilDegenName","type":"string"}],"name":"NameChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"LilDegenCoin","outputs":[{"internalType":"contract ILilDegenCoin","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bio_change_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"LilDegenId","type":"uint256"},{"internalType":"string","name":"newBio","type":"string"}],"name":"changeBio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"LilDegenId","type":"uint256"},{"internalType":"string","name":"newName","type":"string"}],"name":"changeName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"genBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lilDegenData","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"bio","type":"string"},{"internalType":"uint256","name":"level","type":"uint256"},{"internalType":"uint256","name":"xp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name_change_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setBioChangePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"LilDegenCoinAddress","type":"address"}],"name":"setLilDegenCoin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setNameChangePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052600080556000600755611b39600b556096600d5560c8600e553480156200002a57600080fd5b50604051620060e2380380620060e28339818101604052810190620000509190620004e2565b848484600b54600081116200009c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000093906200062f565b60405180910390fd5b60008211620000e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000d990620006c7565b60405180910390fd5b8360019080519060200190620000fa9291906200025a565b508260029080519060200190620001139291906200025a565b508160a08181525050806080818152505050505050620001486200013c6200018c60201b60201c565b6200019460201b60201c565b6000600860146101000a81548160ff02191690831515021790555060016009819055508260c0818152505081600c8190555080600f8190555050505050506200074e565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002689062000718565b90600052602060002090601f0160209004810192826200028c5760008555620002d8565b82601f10620002a757805160ff1916838001178555620002d8565b82800160010185558215620002d8579182015b82811115620002d7578251825591602001919060010190620002ba565b5b509050620002e79190620002eb565b5090565b5b8082111562000306576000816000905550600101620002ec565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003738262000328565b810181811067ffffffffffffffff8211171562000395576200039462000339565b5b80604052505050565b6000620003aa6200030a565b9050620003b8828262000368565b919050565b600067ffffffffffffffff821115620003db57620003da62000339565b5b620003e68262000328565b9050602081019050919050565b60005b8381101562000413578082015181840152602081019050620003f6565b8381111562000423576000848401525b50505050565b6000620004406200043a84620003bd565b6200039e565b9050828152602081018484840111156200045f576200045e62000323565b5b6200046c848285620003f3565b509392505050565b600082601f8301126200048c576200048b6200031e565b5b81516200049e84826020860162000429565b91505092915050565b6000819050919050565b620004bc81620004a7565b8114620004c857600080fd5b50565b600081519050620004dc81620004b1565b92915050565b600080600080600060a0868803121562000501576200050062000314565b5b600086015167ffffffffffffffff81111562000522576200052162000319565b5b620005308882890162000474565b955050602086015167ffffffffffffffff81111562000554576200055362000319565b5b620005628882890162000474565b94505060406200057588828901620004cb565b93505060606200058888828901620004cb565b92505060806200059b88828901620004cb565b9150509295509295909350565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b600062000617602e83620005a8565b91506200062482620005b9565b604082019050919050565b600060208201905081810360008301526200064a8162000608565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6000620006af602783620005a8565b9150620006bc8262000651565b604082019050919050565b60006020820190508181036000830152620006e281620006a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200073157607f821691505b60208210811415620007485762000747620006e9565b5b50919050565b60805160a05160c0516159526200079060003960008181611829015261198701526000818161250c0152818161253501526132af0152600050506159526000f3fe6080604052600436106102675760003560e01c806383a076be11610144578063b88d4fde116100b6578063dc33e6811161007a578063dc33e681146108f7578063e33039eb14610934578063e6fd48bc1461095f578063e985e9c51461098a578063ee2e36ce146109c7578063f2fde38b14610a0757610267565b8063b88d4fde14610812578063c39cbef11461083b578063c87b56dd14610864578063d5abeb01146108a1578063d7224ba0146108cc57610267565b806391b7f5ed1161010857806391b7f5ed1461072557806395d89b411461074e578063a035b1fe14610779578063a0712d68146107a4578063a22cb465146107c0578063b8340c23146107e957610267565b806383a076be146106665780638456cb591461068f57806384a1b902146106a65780638bc35c2f146106cf5780638da5cb5b146106fa57610267565b806342842e0e116101dd57806355f804b3116101a157806355f804b3146105445780635c975abb1461056d5780636352211e1461059857806370a08231146105d5578063715018a6146106125780637ff768af1461062957610267565b806342842e0e1461044d578063438b6300146104765780634488ac39146104b35780634d426528146104de5780634f6ccce71461050757610267565b806318160ddd1161022f57806318160ddd1461036557806323b872dd146103905780632c0cb88e146103b95780632f745c59146103e25780633ccfd60b1461041f5780633f4ba83a1461043657610267565b806301ffc9a71461026c578063052962ce146102a957806306fdde03146102d4578063081812fc146102ff578063095ea7b31461033c575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906139e2565b610a30565b6040516102a09190613a2a565b60405180910390f35b3480156102b557600080fd5b506102be610b7a565b6040516102cb9190613a5e565b60405180910390f35b3480156102e057600080fd5b506102e9610b80565b6040516102f69190613b12565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190613b60565b610c12565b6040516103339190613bce565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190613c15565b610c97565b005b34801561037157600080fd5b5061037a610db0565b6040516103879190613a5e565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190613c55565b610db9565b005b3480156103c557600080fd5b506103e060048036038101906103db9190613ca8565b610f25565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613c15565b610f71565b6040516104169190613a5e565b60405180910390f35b34801561042b57600080fd5b5061043461116f565b005b34801561044257600080fd5b5061044b6111c6565b005b34801561045957600080fd5b50610474600480360381019061046f9190613c55565b6111d8565b005b34801561048257600080fd5b5061049d60048036038101906104989190613ca8565b6111f8565b6040516104aa9190613d93565b60405180910390f35b3480156104bf57600080fd5b506104c86112a6565b6040516104d59190613e14565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190613f64565b6112cc565b005b34801561051357600080fd5b5061052e60048036038101906105299190613b60565b61158a565b60405161053b9190613a5e565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190613fc0565b6115dd565b005b34801561057957600080fd5b506105826115ff565b60405161058f9190613a2a565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190613b60565b611616565b6040516105cc9190613bce565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613ca8565b61162c565b6040516106099190613a5e565b60405180910390f35b34801561061e57600080fd5b50610627611715565b005b34801561063557600080fd5b50610650600480360381019061064b9190613ca8565b611729565b60405161065d9190613a5e565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190614009565b611741565b005b34801561069b57600080fd5b506106a4611803565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190613b60565b611815565b005b3480156106db57600080fd5b506106e4611827565b6040516106f19190613a5e565b60405180910390f35b34801561070657600080fd5b5061070f61184b565b60405161071c9190613bce565b60405180910390f35b34801561073157600080fd5b5061074c60048036038101906107479190613b60565b611875565b005b34801561075a57600080fd5b50610763611887565b6040516107709190613b12565b60405180910390f35b34801561078557600080fd5b5061078e611919565b60405161079b9190613a5e565b60405180910390f35b6107be60048036038101906107b99190613b60565b61191f565b005b3480156107cc57600080fd5b506107e760048036038101906107e29190614075565b611aad565b005b3480156107f557600080fd5b50610810600480360381019061080b9190613b60565b611c2e565b005b34801561081e57600080fd5b5061083960048036038101906108349190614156565b611c40565b005b34801561084757600080fd5b50610862600480360381019061085d9190613f64565b611c9c565b005b34801561087057600080fd5b5061088b60048036038101906108869190613b60565b611f5a565b6040516108989190613b12565b60405180910390f35b3480156108ad57600080fd5b506108b6612001565b6040516108c39190613a5e565b60405180910390f35b3480156108d857600080fd5b506108e1612007565b6040516108ee9190613a5e565b60405180910390f35b34801561090357600080fd5b5061091e60048036038101906109199190613ca8565b61200d565b60405161092b9190613a5e565b60405180910390f35b34801561094057600080fd5b5061094961201f565b6040516109569190613a5e565b60405180910390f35b34801561096b57600080fd5b50610974612025565b6040516109819190613a5e565b60405180910390f35b34801561099657600080fd5b506109b160048036038101906109ac91906141d9565b61202b565b6040516109be9190613a2a565b60405180910390f35b3480156109d357600080fd5b506109ee60048036038101906109e99190613b60565b6120bf565b6040516109fe9493929190614219565b60405180910390f35b348015610a1357600080fd5b50610a2e6004803603810190610a299190613ca8565b6121ff565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b6357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b735750610b7282612283565b5b9050919050565b600d5481565b606060018054610b8f9061429b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbb9061429b565b8015610c085780601f10610bdd57610100808354040283529160200191610c08565b820191906000526020600020905b815481529060010190602001808311610beb57829003601f168201915b5050505050905090565b6000610c1d826122ed565b610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c539061433f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca282611616565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a906143d1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d326122fa565b73ffffffffffffffffffffffffffffffffffffffff161480610d615750610d6081610d5b6122fa565b61202b565b5b610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790614463565b60405180910390fd5b610dab838383612302565b505050565b60008054905090565b600b5481108015610dd6575060001515610dd2836123b4565b1515145b15610f1557601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a84846040518363ffffffff1660e01b8152600401610e38929190614483565b600060405180830381600087803b158015610e5257600080fd5b505af1158015610e66573d6000803e3d6000fd5b50505050601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610eba906144db565b9190505550601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f0f90614505565b91905055505b610f208383836123c7565b505050565b610f2d6123d7565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f7c8361162c565b8210610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb4906145c0565b60405180910390fd5b6000610fc7610db0565b905060008060005b8381101561112d576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110c157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611119578684141561110a578195505050505050611169565b838061111590614505565b9450505b50808061112590614505565b915050610fcf565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116090614652565b60405180910390fd5b92915050565b6111776123d7565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111c2573d6000803e3d6000fd5b5050565b6111ce6123d7565b6111d6612455565b565b6111f383838360405180602001604052806000815250611c40565b505050565b606060006112058361162c565b905060008167ffffffffffffffff81111561122357611222613e39565b5b6040519080825280602002602001820160405280156112515781602001602082028036833780820191505090505b50905060005b8281101561129b576112698582610f71565b82828151811061127c5761127b614672565b5b602002602001018181525050808061129390614505565b915050611257565b508092505050919050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b813373ffffffffffffffffffffffffffffffffffffffff166112ed82611616565b73ffffffffffffffffffffffffffffffffffffffff1614611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90614713565b60405180910390fd5b60008290506000815111801561135a575060fa8151105b611399576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113909061477f565b60405180910390fd5b6002601260008681526020019081526020016000206001016040516113be919061483e565b602060405180830381855afa1580156113db573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906113fe919061488b565b60028260405161140e91906148f4565b602060405180830381855afa15801561142b573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061144e919061488b565b141561148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690614957565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac33600d546040518363ffffffff1660e01b81526004016114ee929190614977565b600060405180830381600087803b15801561150857600080fd5b505af115801561151c573d6000803e3d6000fd5b505050508260126000868152602001908152602001600020600101908051906020019061154a929190613899565b507fb5d3e30019a90e2b35059d238ddbac8259a3d65d9a4f47395d713901d17cc112848460405161157c9291906149a0565b60405180910390a150505050565b6000611594610db0565b82106115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90614a42565b60405180910390fd5b819050919050565b6115e56123d7565b80600a90805190602001906115fb929190613899565b5050565b6000600860149054906101000a900460ff16905090565b6000611621826124b8565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169490614ad4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61171d6123d7565b61172760006126bb565b565b60106020528060005260406000206000915090505481565b6117496123d7565b600b5482611755610db0565b61175f9190614af4565b11156117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790614bbc565b60405180910390fd5b6117aa8183612781565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906117fa90614505565b91905055505050565b61180b6123d7565b61181361279f565b565b61181d6123d7565b80600d8190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61187d6123d7565b80600c8190555050565b6060600280546118969061429b565b80601f01602080910402602001604051908101604052809291908181526020018280546118c29061429b565b801561190f5780601f106118e45761010080835404028352916020019161190f565b820191906000526020600020905b8154815290600101906020018083116118f257829003601f168201915b5050505050905090565b600c5481565b600f54421015611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b90614c28565b60405180910390fd5b600b5481611970610db0565b61197a9190614af4565b111561198557600080fd5b7f0000000000000000000000000000000000000000000000000000000000000000816119b03361200d565b6119ba9190614af4565b11156119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290614cba565b60405180910390fd5b80600c54611a099190614cda565b341015611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4290614da6565b60405180910390fd5b611a553382612781565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611aa590614505565b919050555050565b611ab56122fa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1a90614e12565b60405180910390fd5b8060066000611b306122fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bdd6122fa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c229190613a2a565b60405180910390a35050565b611c366123d7565b80600e8190555050565b611c4b848484612802565b611c5784848484612dbb565b611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d90614ea4565b60405180910390fd5b50505050565b813373ffffffffffffffffffffffffffffffffffffffff16611cbd82611616565b73ffffffffffffffffffffffffffffffffffffffff1614611d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0a90614713565b60405180910390fd5b600082905060008151118015611d2a575060198151105b611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d609061477f565b60405180910390fd5b600260126000868152602001908152602001600020600001604051611d8e919061483e565b602060405180830381855afa158015611dab573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611dce919061488b565b600282604051611dde91906148f4565b602060405180830381855afa158015611dfb573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611e1e919061488b565b1415611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690614f10565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac33600d546040518363ffffffff1660e01b8152600401611ebe929190614977565b600060405180830381600087803b158015611ed857600080fd5b505af1158015611eec573d6000803e3d6000fd5b5050505082601260008681526020019081526020016000206000019080519060200190611f1a929190613899565b507f8edfa912e70e283a8ef6d6f52cd1faef9690ff989eff2f11a134e8478ba7b28b8484604051611f4c9291906149a0565b60405180910390a150505050565b6060611f65826122ed565b611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b90614fa2565b60405180910390fd5b6000611fae612f52565b90506000815111611fce5760405180602001604052806000815250611ff9565b80611fd884612fe4565b604051602001611fe992919061504a565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b6000612018826130bc565b9050919050565b600e5481565b600f5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60126020528060005260406000206000915090508060000180546120e29061429b565b80601f016020809104026020016040519081016040528092919081815260200182805461210e9061429b565b801561215b5780601f106121305761010080835404028352916020019161215b565b820191906000526020600020905b81548152906001019060200180831161213e57829003601f168201915b5050505050908060010180546121709061429b565b80601f016020809104026020016040519081016040528092919081815260200182805461219c9061429b565b80156121e95780601f106121be576101008083540402835291602001916121e9565b820191906000526020600020905b8154815290600101906020018083116121cc57829003601f168201915b5050505050908060020154908060030154905084565b6122076123d7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e906150eb565b60405180910390fd5b612280816126bb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080823b905060008111915050919050565b6123d2838383612802565b505050565b6123df6122fa565b73ffffffffffffffffffffffffffffffffffffffff166123fd61184b565b73ffffffffffffffffffffffffffffffffffffffff1614612453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244a90615157565b60405180910390fd5b565b61245d6131a5565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6124a16122fa565b6040516124ae9190613bce565b60405180910390a1565b6124c061391f565b6124c9826122ed565b612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff906151e9565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061256c5760017f00000000000000000000000000000000000000000000000000000000000000008461255f9190615209565b6125699190614af4565b90505b60008390505b81811061267a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612666578093505050506126b6565b508080612672906144db565b915050612572565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ad906152af565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61279b8282604051806020016040528060008152506131ee565b5050565b6127a76136cd565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127eb6122fa565b6040516127f89190613bce565b60405180910390a1565b600061280d826124b8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128346122fa565b73ffffffffffffffffffffffffffffffffffffffff16148061289057506128596122fa565b73ffffffffffffffffffffffffffffffffffffffff1661287884610c12565b73ffffffffffffffffffffffffffffffffffffffff16145b806128ac57506128ab82600001516128a66122fa565b61202b565b5b9050806128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590615341565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612957906153d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c790615465565b60405180910390fd5b6129dd8585856001613717565b6129ed6000848460000151612302565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612a5b91906154a1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612aff91906154d5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612c059190614af4565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d4b57612c7b816122ed565b15612d4a576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612db3868686600161371d565b505050505050565b6000612ddc8473ffffffffffffffffffffffffffffffffffffffff16613723565b15612f45578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e056122fa565b8786866040518563ffffffff1660e01b8152600401612e279493929190615565565b602060405180830381600087803b158015612e4157600080fd5b505af1925050508015612e7257506040513d601f19601f82011682018060405250810190612e6f91906155c6565b60015b612ef5573d8060008114612ea2576040519150601f19603f3d011682016040523d82523d6000602084013e612ea7565b606091505b50600081511415612eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee490614ea4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f4a565b600190505b949350505050565b6060600a8054612f619061429b565b80601f0160208091040260200160405190810160405280929190818152602001828054612f8d9061429b565b8015612fda5780601f10612faf57610100808354040283529160200191612fda565b820191906000526020600020905b815481529060010190602001808311612fbd57829003601f168201915b5050505050905090565b606060006001612ff384613746565b01905060008167ffffffffffffffff81111561301257613011613e39565b5b6040519080825280601f01601f1916602001820160405280156130445781602001600182028036833780820191505090505b509050600082602001820190505b6001156130b1578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161309b5761309a6155f3565b5b04945060008514156130ac576130b1565b613052565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561312d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312490615694565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6131ad6115ff565b6131ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e390615700565b60405180910390fd5b565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325b90615792565b60405180910390fd5b61326d816122ed565b156132ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a4906157fe565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330790615890565b60405180910390fd5b61331d6000858386613717565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161341a91906154d5565b6fffffffffffffffffffffffffffffffff16815260200185836020015161344191906154d5565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156136b057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136506000888488612dbb565b61368f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368690614ea4565b60405180910390fd5b818061369a90614505565b92505080806136a890614505565b9150506135df565b50806000819055506136c5600087858861371d565b505050505050565b6136d56115ff565b15613715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370c906158fc565b60405180910390fd5b565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106137a4577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161379a576137996155f3565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106137e1576d04ee2d6d415b85acef810000000083816137d7576137d66155f3565b5b0492506020810190505b662386f26fc10000831061381057662386f26fc100008381613806576138056155f3565b5b0492506010810190505b6305f5e1008310613839576305f5e100838161382f5761382e6155f3565b5b0492506008810190505b612710831061385e576127108381613854576138536155f3565b5b0492506004810190505b606483106138815760648381613877576138766155f3565b5b0492506002810190505b600a8310613890576001810190505b80915050919050565b8280546138a59061429b565b90600052602060002090601f0160209004810192826138c7576000855561390e565b82601f106138e057805160ff191683800117855561390e565b8280016001018555821561390e579182015b8281111561390d5782518255916020019190600101906138f2565b5b50905061391b9190613959565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561397257600081600090555060010161395a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139bf8161398a565b81146139ca57600080fd5b50565b6000813590506139dc816139b6565b92915050565b6000602082840312156139f8576139f7613980565b5b6000613a06848285016139cd565b91505092915050565b60008115159050919050565b613a2481613a0f565b82525050565b6000602082019050613a3f6000830184613a1b565b92915050565b6000819050919050565b613a5881613a45565b82525050565b6000602082019050613a736000830184613a4f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ab3578082015181840152602081019050613a98565b83811115613ac2576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ae482613a79565b613aee8185613a84565b9350613afe818560208601613a95565b613b0781613ac8565b840191505092915050565b60006020820190508181036000830152613b2c8184613ad9565b905092915050565b613b3d81613a45565b8114613b4857600080fd5b50565b600081359050613b5a81613b34565b92915050565b600060208284031215613b7657613b75613980565b5b6000613b8484828501613b4b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bb882613b8d565b9050919050565b613bc881613bad565b82525050565b6000602082019050613be36000830184613bbf565b92915050565b613bf281613bad565b8114613bfd57600080fd5b50565b600081359050613c0f81613be9565b92915050565b60008060408385031215613c2c57613c2b613980565b5b6000613c3a85828601613c00565b9250506020613c4b85828601613b4b565b9150509250929050565b600080600060608486031215613c6e57613c6d613980565b5b6000613c7c86828701613c00565b9350506020613c8d86828701613c00565b9250506040613c9e86828701613b4b565b9150509250925092565b600060208284031215613cbe57613cbd613980565b5b6000613ccc84828501613c00565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d0a81613a45565b82525050565b6000613d1c8383613d01565b60208301905092915050565b6000602082019050919050565b6000613d4082613cd5565b613d4a8185613ce0565b9350613d5583613cf1565b8060005b83811015613d86578151613d6d8882613d10565b9750613d7883613d28565b925050600181019050613d59565b5085935050505092915050565b60006020820190508181036000830152613dad8184613d35565b905092915050565b6000819050919050565b6000613dda613dd5613dd084613b8d565b613db5565b613b8d565b9050919050565b6000613dec82613dbf565b9050919050565b6000613dfe82613de1565b9050919050565b613e0e81613df3565b82525050565b6000602082019050613e296000830184613e05565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e7182613ac8565b810181811067ffffffffffffffff82111715613e9057613e8f613e39565b5b80604052505050565b6000613ea3613976565b9050613eaf8282613e68565b919050565b600067ffffffffffffffff821115613ecf57613ece613e39565b5b613ed882613ac8565b9050602081019050919050565b82818337600083830152505050565b6000613f07613f0284613eb4565b613e99565b905082815260208101848484011115613f2357613f22613e34565b5b613f2e848285613ee5565b509392505050565b600082601f830112613f4b57613f4a613e2f565b5b8135613f5b848260208601613ef4565b91505092915050565b60008060408385031215613f7b57613f7a613980565b5b6000613f8985828601613b4b565b925050602083013567ffffffffffffffff811115613faa57613fa9613985565b5b613fb685828601613f36565b9150509250929050565b600060208284031215613fd657613fd5613980565b5b600082013567ffffffffffffffff811115613ff457613ff3613985565b5b61400084828501613f36565b91505092915050565b600080604083850312156140205761401f613980565b5b600061402e85828601613b4b565b925050602061403f85828601613c00565b9150509250929050565b61405281613a0f565b811461405d57600080fd5b50565b60008135905061406f81614049565b92915050565b6000806040838503121561408c5761408b613980565b5b600061409a85828601613c00565b92505060206140ab85828601614060565b9150509250929050565b600067ffffffffffffffff8211156140d0576140cf613e39565b5b6140d982613ac8565b9050602081019050919050565b60006140f96140f4846140b5565b613e99565b90508281526020810184848401111561411557614114613e34565b5b614120848285613ee5565b509392505050565b600082601f83011261413d5761413c613e2f565b5b813561414d8482602086016140e6565b91505092915050565b600080600080608085870312156141705761416f613980565b5b600061417e87828801613c00565b945050602061418f87828801613c00565b93505060406141a087828801613b4b565b925050606085013567ffffffffffffffff8111156141c1576141c0613985565b5b6141cd87828801614128565b91505092959194509250565b600080604083850312156141f0576141ef613980565b5b60006141fe85828601613c00565b925050602061420f85828601613c00565b9150509250929050565b600060808201905081810360008301526142338187613ad9565b905081810360208301526142478186613ad9565b90506142566040830185613a4f565b6142636060830184613a4f565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142b357607f821691505b602082108114156142c7576142c661426c565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614329602d83613a84565b9150614334826142cd565b604082019050919050565b600060208201905081810360008301526143588161431c565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006143bb602283613a84565b91506143c68261435f565b604082019050919050565b600060208201905081810360008301526143ea816143ae565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061444d603983613a84565b9150614458826143f1565b604082019050919050565b6000602082019050818103600083015261447c81614440565b9050919050565b60006040820190506144986000830185613bbf565b6144a56020830184613bbf565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144e682613a45565b915060008214156144fa576144f96144ac565b5b600182039050919050565b600061451082613a45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614543576145426144ac565b5b600182019050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006145aa602283613a84565b91506145b58261454e565b604082019050919050565b600060208201905081810360008301526145d98161459d565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061463c602e83613a84565b9150614647826145e0565b604082019050919050565b6000602082019050818103600083015261466b8161462f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e6e6f7420696e74657261637420776974682061204c696c446567656e2060008201527f796f7520646f206e6f74206f776e000000000000000000000000000000000000602082015250565b60006146fd602e83613a84565b9150614708826146a1565b604082019050919050565b6000602082019050818103600083015261472c816146f0565b9050919050565b7f496e76616c6964206e616d65206c656e67746800000000000000000000000000600082015250565b6000614769601383613a84565b915061477482614733565b602082019050919050565b600060208201905081810360008301526147988161475c565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546147cc8161429b565b6147d6818661479f565b945060018216600081146147f1576001811461480257614835565b60ff19831686528186019350614835565b61480b856147aa565b60005b8381101561482d5781548189015260018201915060208101905061480e565b838801955050505b50505092915050565b600061484a82846147bf565b915081905092915050565b6000819050919050565b61486881614855565b811461487357600080fd5b50565b6000815190506148858161485f565b92915050565b6000602082840312156148a1576148a0613980565b5b60006148af84828501614876565b91505092915050565b600081519050919050565b60006148ce826148b8565b6148d8818561479f565b93506148e8818560208601613a95565b80840191505092915050565b600061490082846148c3565b915081905092915050565b7f4e65772062696f2069732073616d652061732063757272656e742062696f0000600082015250565b6000614941601e83613a84565b915061494c8261490b565b602082019050919050565b6000602082019050818103600083015261497081614934565b9050919050565b600060408201905061498c6000830185613bbf565b6149996020830184613a4f565b9392505050565b60006040820190506149b56000830185613a4f565b81810360208301526149c78184613ad9565b90509392505050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614a2c602383613a84565b9150614a37826149d0565b604082019050919050565b60006020820190508181036000830152614a5b81614a1f565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614abe602b83613a84565b9150614ac982614a62565b604082019050919050565b60006020820190508181036000830152614aed81614ab1565b9050919050565b6000614aff82613a45565b9150614b0a83613a45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b3f57614b3e6144ac565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204c696c446567656e7300000000000000000000000000000000000000602082015250565b6000614ba6602d83613a84565b9150614bb182614b4a565b604082019050919050565b60006020820190508181036000830152614bd581614b99565b9050919050565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b6000614c12601483613a84565b9150614c1d82614bdc565b602082019050919050565b60006020820190508181036000830152614c4181614c05565b9050919050565b7f4c696d6974206e756d626572206f66206d696e747320746f20616e20616d6f7560008201527f6e7420736574206f6e20636f6e747261637420636f6e66696775726174696f6e602082015250565b6000614ca4604083613a84565b9150614caf82614c48565b604082019050919050565b60006020820190508181036000830152614cd381614c97565b9050919050565b6000614ce582613a45565b9150614cf083613a45565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d2957614d286144ac565b5b828202905092915050565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b6000614d90602383613a84565b9150614d9b82614d34565b604082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614dfc601a83613a84565b9150614e0782614dc6565b602082019050919050565b60006020820190508181036000830152614e2b81614def565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614e8e603383613a84565b9150614e9982614e32565b604082019050919050565b60006020820190508181036000830152614ebd81614e81565b9050919050565b7f4e6577206e616d652069732073616d652061732063757272656e74206e616d65600082015250565b6000614efa602083613a84565b9150614f0582614ec4565b602082019050919050565b60006020820190508181036000830152614f2981614eed565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f8c602f83613a84565b9150614f9782614f30565b604082019050919050565b60006020820190508181036000830152614fbb81614f7f565b9050919050565b600081905092915050565b6000614fd882613a79565b614fe28185614fc2565b9350614ff2818560208601613a95565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000615034600583614fc2565b915061503f82614ffe565b600582019050919050565b60006150568285614fcd565b91506150628284614fcd565b915061506d82615027565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150d5602683613a84565b91506150e082615079565b604082019050919050565b60006020820190508181036000830152615104816150c8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615141602083613a84565b915061514c8261510b565b602082019050919050565b6000602082019050818103600083015261517081615134565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006151d3602a83613a84565b91506151de82615177565b604082019050919050565b60006020820190508181036000830152615202816151c6565b9050919050565b600061521482613a45565b915061521f83613a45565b925082821015615232576152316144ac565b5b828203905092915050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615299602f83613a84565b91506152a48261523d565b604082019050919050565b600060208201905081810360008301526152c88161528c565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061532b603283613a84565b9150615336826152cf565b604082019050919050565b6000602082019050818103600083015261535a8161531e565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006153bd602683613a84565b91506153c882615361565b604082019050919050565b600060208201905081810360008301526153ec816153b0565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061544f602583613a84565b915061545a826153f3565b604082019050919050565b6000602082019050818103600083015261547e81615442565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006154ac82615485565b91506154b783615485565b9250828210156154ca576154c96144ac565b5b828203905092915050565b60006154e082615485565b91506154eb83615485565b9250826fffffffffffffffffffffffffffffffff038211156155105761550f6144ac565b5b828201905092915050565b600082825260208201905092915050565b6000615537826148b8565b615541818561551b565b9350615551818560208601613a95565b61555a81613ac8565b840191505092915050565b600060808201905061557a6000830187613bbf565b6155876020830186613bbf565b6155946040830185613a4f565b81810360608301526155a6818461552c565b905095945050505050565b6000815190506155c0816139b6565b92915050565b6000602082840312156155dc576155db613980565b5b60006155ea848285016155b1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b600061567e603183613a84565b915061568982615622565b604082019050919050565b600060208201905081810360008301526156ad81615671565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006156ea601483613a84565b91506156f5826156b4565b602082019050919050565b60006020820190508181036000830152615719816156dd565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061577c602183613a84565b915061578782615720565b604082019050919050565b600060208201905081810360008301526157ab8161576f565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b60006157e8601d83613a84565b91506157f3826157b2565b602082019050919050565b60006020820190508181036000830152615817816157db565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600061587a602283613a84565b91506158858261581e565b604082019050919050565b600060208201905081810360008301526158a98161586d565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006158e6601083613a84565b91506158f1826158b0565b602082019050919050565b60006020820190508181036000830152615915816158d9565b905091905056fea26469706673582212204ec2147fd678a7b20bc7fef387926260dcc5d48dbb6ab4a8402ad26bc1df3fba64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000003c0a75e0b440000000000000000000000000000000000000000000000000000000000064713ea000000000000000000000000000000000000000000000000000000000000000094c696c446567656e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024c44000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c806383a076be11610144578063b88d4fde116100b6578063dc33e6811161007a578063dc33e681146108f7578063e33039eb14610934578063e6fd48bc1461095f578063e985e9c51461098a578063ee2e36ce146109c7578063f2fde38b14610a0757610267565b8063b88d4fde14610812578063c39cbef11461083b578063c87b56dd14610864578063d5abeb01146108a1578063d7224ba0146108cc57610267565b806391b7f5ed1161010857806391b7f5ed1461072557806395d89b411461074e578063a035b1fe14610779578063a0712d68146107a4578063a22cb465146107c0578063b8340c23146107e957610267565b806383a076be146106665780638456cb591461068f57806384a1b902146106a65780638bc35c2f146106cf5780638da5cb5b146106fa57610267565b806342842e0e116101dd57806355f804b3116101a157806355f804b3146105445780635c975abb1461056d5780636352211e1461059857806370a08231146105d5578063715018a6146106125780637ff768af1461062957610267565b806342842e0e1461044d578063438b6300146104765780634488ac39146104b35780634d426528146104de5780634f6ccce71461050757610267565b806318160ddd1161022f57806318160ddd1461036557806323b872dd146103905780632c0cb88e146103b95780632f745c59146103e25780633ccfd60b1461041f5780633f4ba83a1461043657610267565b806301ffc9a71461026c578063052962ce146102a957806306fdde03146102d4578063081812fc146102ff578063095ea7b31461033c575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906139e2565b610a30565b6040516102a09190613a2a565b60405180910390f35b3480156102b557600080fd5b506102be610b7a565b6040516102cb9190613a5e565b60405180910390f35b3480156102e057600080fd5b506102e9610b80565b6040516102f69190613b12565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190613b60565b610c12565b6040516103339190613bce565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190613c15565b610c97565b005b34801561037157600080fd5b5061037a610db0565b6040516103879190613a5e565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190613c55565b610db9565b005b3480156103c557600080fd5b506103e060048036038101906103db9190613ca8565b610f25565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613c15565b610f71565b6040516104169190613a5e565b60405180910390f35b34801561042b57600080fd5b5061043461116f565b005b34801561044257600080fd5b5061044b6111c6565b005b34801561045957600080fd5b50610474600480360381019061046f9190613c55565b6111d8565b005b34801561048257600080fd5b5061049d60048036038101906104989190613ca8565b6111f8565b6040516104aa9190613d93565b60405180910390f35b3480156104bf57600080fd5b506104c86112a6565b6040516104d59190613e14565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190613f64565b6112cc565b005b34801561051357600080fd5b5061052e60048036038101906105299190613b60565b61158a565b60405161053b9190613a5e565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190613fc0565b6115dd565b005b34801561057957600080fd5b506105826115ff565b60405161058f9190613a2a565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190613b60565b611616565b6040516105cc9190613bce565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613ca8565b61162c565b6040516106099190613a5e565b60405180910390f35b34801561061e57600080fd5b50610627611715565b005b34801561063557600080fd5b50610650600480360381019061064b9190613ca8565b611729565b60405161065d9190613a5e565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190614009565b611741565b005b34801561069b57600080fd5b506106a4611803565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190613b60565b611815565b005b3480156106db57600080fd5b506106e4611827565b6040516106f19190613a5e565b60405180910390f35b34801561070657600080fd5b5061070f61184b565b60405161071c9190613bce565b60405180910390f35b34801561073157600080fd5b5061074c60048036038101906107479190613b60565b611875565b005b34801561075a57600080fd5b50610763611887565b6040516107709190613b12565b60405180910390f35b34801561078557600080fd5b5061078e611919565b60405161079b9190613a5e565b60405180910390f35b6107be60048036038101906107b99190613b60565b61191f565b005b3480156107cc57600080fd5b506107e760048036038101906107e29190614075565b611aad565b005b3480156107f557600080fd5b50610810600480360381019061080b9190613b60565b611c2e565b005b34801561081e57600080fd5b5061083960048036038101906108349190614156565b611c40565b005b34801561084757600080fd5b50610862600480360381019061085d9190613f64565b611c9c565b005b34801561087057600080fd5b5061088b60048036038101906108869190613b60565b611f5a565b6040516108989190613b12565b60405180910390f35b3480156108ad57600080fd5b506108b6612001565b6040516108c39190613a5e565b60405180910390f35b3480156108d857600080fd5b506108e1612007565b6040516108ee9190613a5e565b60405180910390f35b34801561090357600080fd5b5061091e60048036038101906109199190613ca8565b61200d565b60405161092b9190613a5e565b60405180910390f35b34801561094057600080fd5b5061094961201f565b6040516109569190613a5e565b60405180910390f35b34801561096b57600080fd5b50610974612025565b6040516109819190613a5e565b60405180910390f35b34801561099657600080fd5b506109b160048036038101906109ac91906141d9565b61202b565b6040516109be9190613a2a565b60405180910390f35b3480156109d357600080fd5b506109ee60048036038101906109e99190613b60565b6120bf565b6040516109fe9493929190614219565b60405180910390f35b348015610a1357600080fd5b50610a2e6004803603810190610a299190613ca8565b6121ff565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b6357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b735750610b7282612283565b5b9050919050565b600d5481565b606060018054610b8f9061429b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbb9061429b565b8015610c085780601f10610bdd57610100808354040283529160200191610c08565b820191906000526020600020905b815481529060010190602001808311610beb57829003601f168201915b5050505050905090565b6000610c1d826122ed565b610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c539061433f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca282611616565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a906143d1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d326122fa565b73ffffffffffffffffffffffffffffffffffffffff161480610d615750610d6081610d5b6122fa565b61202b565b5b610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790614463565b60405180910390fd5b610dab838383612302565b505050565b60008054905090565b600b5481108015610dd6575060001515610dd2836123b4565b1515145b15610f1557601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a84846040518363ffffffff1660e01b8152600401610e38929190614483565b600060405180830381600087803b158015610e5257600080fd5b505af1158015610e66573d6000803e3d6000fd5b50505050601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610eba906144db565b9190505550601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f0f90614505565b91905055505b610f208383836123c7565b505050565b610f2d6123d7565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f7c8361162c565b8210610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb4906145c0565b60405180910390fd5b6000610fc7610db0565b905060008060005b8381101561112d576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110c157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611119578684141561110a578195505050505050611169565b838061111590614505565b9450505b50808061112590614505565b915050610fcf565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116090614652565b60405180910390fd5b92915050565b6111776123d7565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111c2573d6000803e3d6000fd5b5050565b6111ce6123d7565b6111d6612455565b565b6111f383838360405180602001604052806000815250611c40565b505050565b606060006112058361162c565b905060008167ffffffffffffffff81111561122357611222613e39565b5b6040519080825280602002602001820160405280156112515781602001602082028036833780820191505090505b50905060005b8281101561129b576112698582610f71565b82828151811061127c5761127b614672565b5b602002602001018181525050808061129390614505565b915050611257565b508092505050919050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b813373ffffffffffffffffffffffffffffffffffffffff166112ed82611616565b73ffffffffffffffffffffffffffffffffffffffff1614611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90614713565b60405180910390fd5b60008290506000815111801561135a575060fa8151105b611399576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113909061477f565b60405180910390fd5b6002601260008681526020019081526020016000206001016040516113be919061483e565b602060405180830381855afa1580156113db573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906113fe919061488b565b60028260405161140e91906148f4565b602060405180830381855afa15801561142b573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061144e919061488b565b141561148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690614957565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac33600d546040518363ffffffff1660e01b81526004016114ee929190614977565b600060405180830381600087803b15801561150857600080fd5b505af115801561151c573d6000803e3d6000fd5b505050508260126000868152602001908152602001600020600101908051906020019061154a929190613899565b507fb5d3e30019a90e2b35059d238ddbac8259a3d65d9a4f47395d713901d17cc112848460405161157c9291906149a0565b60405180910390a150505050565b6000611594610db0565b82106115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90614a42565b60405180910390fd5b819050919050565b6115e56123d7565b80600a90805190602001906115fb929190613899565b5050565b6000600860149054906101000a900460ff16905090565b6000611621826124b8565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169490614ad4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61171d6123d7565b61172760006126bb565b565b60106020528060005260406000206000915090505481565b6117496123d7565b600b5482611755610db0565b61175f9190614af4565b11156117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790614bbc565b60405180910390fd5b6117aa8183612781565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906117fa90614505565b91905055505050565b61180b6123d7565b61181361279f565b565b61181d6123d7565b80600d8190555050565b7f000000000000000000000000000000000000000000000000000000000000000381565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61187d6123d7565b80600c8190555050565b6060600280546118969061429b565b80601f01602080910402602001604051908101604052809291908181526020018280546118c29061429b565b801561190f5780601f106118e45761010080835404028352916020019161190f565b820191906000526020600020905b8154815290600101906020018083116118f257829003601f168201915b5050505050905090565b600c5481565b600f54421015611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b90614c28565b60405180910390fd5b600b5481611970610db0565b61197a9190614af4565b111561198557600080fd5b7f0000000000000000000000000000000000000000000000000000000000000003816119b03361200d565b6119ba9190614af4565b11156119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290614cba565b60405180910390fd5b80600c54611a099190614cda565b341015611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4290614da6565b60405180910390fd5b611a553382612781565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611aa590614505565b919050555050565b611ab56122fa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1a90614e12565b60405180910390fd5b8060066000611b306122fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bdd6122fa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c229190613a2a565b60405180910390a35050565b611c366123d7565b80600e8190555050565b611c4b848484612802565b611c5784848484612dbb565b611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d90614ea4565b60405180910390fd5b50505050565b813373ffffffffffffffffffffffffffffffffffffffff16611cbd82611616565b73ffffffffffffffffffffffffffffffffffffffff1614611d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0a90614713565b60405180910390fd5b600082905060008151118015611d2a575060198151105b611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d609061477f565b60405180910390fd5b600260126000868152602001908152602001600020600001604051611d8e919061483e565b602060405180830381855afa158015611dab573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611dce919061488b565b600282604051611dde91906148f4565b602060405180830381855afa158015611dfb573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611e1e919061488b565b1415611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690614f10565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac33600d546040518363ffffffff1660e01b8152600401611ebe929190614977565b600060405180830381600087803b158015611ed857600080fd5b505af1158015611eec573d6000803e3d6000fd5b5050505082601260008681526020019081526020016000206000019080519060200190611f1a929190613899565b507f8edfa912e70e283a8ef6d6f52cd1faef9690ff989eff2f11a134e8478ba7b28b8484604051611f4c9291906149a0565b60405180910390a150505050565b6060611f65826122ed565b611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b90614fa2565b60405180910390fd5b6000611fae612f52565b90506000815111611fce5760405180602001604052806000815250611ff9565b80611fd884612fe4565b604051602001611fe992919061504a565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b6000612018826130bc565b9050919050565b600e5481565b600f5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60126020528060005260406000206000915090508060000180546120e29061429b565b80601f016020809104026020016040519081016040528092919081815260200182805461210e9061429b565b801561215b5780601f106121305761010080835404028352916020019161215b565b820191906000526020600020905b81548152906001019060200180831161213e57829003601f168201915b5050505050908060010180546121709061429b565b80601f016020809104026020016040519081016040528092919081815260200182805461219c9061429b565b80156121e95780601f106121be576101008083540402835291602001916121e9565b820191906000526020600020905b8154815290600101906020018083116121cc57829003601f168201915b5050505050908060020154908060030154905084565b6122076123d7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e906150eb565b60405180910390fd5b612280816126bb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080823b905060008111915050919050565b6123d2838383612802565b505050565b6123df6122fa565b73ffffffffffffffffffffffffffffffffffffffff166123fd61184b565b73ffffffffffffffffffffffffffffffffffffffff1614612453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244a90615157565b60405180910390fd5b565b61245d6131a5565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6124a16122fa565b6040516124ae9190613bce565b60405180910390a1565b6124c061391f565b6124c9826122ed565b612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff906151e9565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000003831061256c5760017f00000000000000000000000000000000000000000000000000000000000000038461255f9190615209565b6125699190614af4565b90505b60008390505b81811061267a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612666578093505050506126b6565b508080612672906144db565b915050612572565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ad906152af565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61279b8282604051806020016040528060008152506131ee565b5050565b6127a76136cd565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127eb6122fa565b6040516127f89190613bce565b60405180910390a1565b600061280d826124b8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128346122fa565b73ffffffffffffffffffffffffffffffffffffffff16148061289057506128596122fa565b73ffffffffffffffffffffffffffffffffffffffff1661287884610c12565b73ffffffffffffffffffffffffffffffffffffffff16145b806128ac57506128ab82600001516128a66122fa565b61202b565b5b9050806128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590615341565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612957906153d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c790615465565b60405180910390fd5b6129dd8585856001613717565b6129ed6000848460000151612302565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612a5b91906154a1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612aff91906154d5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612c059190614af4565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d4b57612c7b816122ed565b15612d4a576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612db3868686600161371d565b505050505050565b6000612ddc8473ffffffffffffffffffffffffffffffffffffffff16613723565b15612f45578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e056122fa565b8786866040518563ffffffff1660e01b8152600401612e279493929190615565565b602060405180830381600087803b158015612e4157600080fd5b505af1925050508015612e7257506040513d601f19601f82011682018060405250810190612e6f91906155c6565b60015b612ef5573d8060008114612ea2576040519150601f19603f3d011682016040523d82523d6000602084013e612ea7565b606091505b50600081511415612eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee490614ea4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f4a565b600190505b949350505050565b6060600a8054612f619061429b565b80601f0160208091040260200160405190810160405280929190818152602001828054612f8d9061429b565b8015612fda5780601f10612faf57610100808354040283529160200191612fda565b820191906000526020600020905b815481529060010190602001808311612fbd57829003601f168201915b5050505050905090565b606060006001612ff384613746565b01905060008167ffffffffffffffff81111561301257613011613e39565b5b6040519080825280601f01601f1916602001820160405280156130445781602001600182028036833780820191505090505b509050600082602001820190505b6001156130b1578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161309b5761309a6155f3565b5b04945060008514156130ac576130b1565b613052565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561312d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312490615694565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6131ad6115ff565b6131ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e390615700565b60405180910390fd5b565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325b90615792565b60405180910390fd5b61326d816122ed565b156132ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a4906157fe565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000003831115613310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330790615890565b60405180910390fd5b61331d6000858386613717565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161341a91906154d5565b6fffffffffffffffffffffffffffffffff16815260200185836020015161344191906154d5565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156136b057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136506000888488612dbb565b61368f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368690614ea4565b60405180910390fd5b818061369a90614505565b92505080806136a890614505565b9150506135df565b50806000819055506136c5600087858861371d565b505050505050565b6136d56115ff565b15613715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370c906158fc565b60405180910390fd5b565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106137a4577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161379a576137996155f3565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106137e1576d04ee2d6d415b85acef810000000083816137d7576137d66155f3565b5b0492506020810190505b662386f26fc10000831061381057662386f26fc100008381613806576138056155f3565b5b0492506010810190505b6305f5e1008310613839576305f5e100838161382f5761382e6155f3565b5b0492506008810190505b612710831061385e576127108381613854576138536155f3565b5b0492506004810190505b606483106138815760648381613877576138766155f3565b5b0492506002810190505b600a8310613890576001810190505b80915050919050565b8280546138a59061429b565b90600052602060002090601f0160209004810192826138c7576000855561390e565b82601f106138e057805160ff191683800117855561390e565b8280016001018555821561390e579182015b8281111561390d5782518255916020019190600101906138f2565b5b50905061391b9190613959565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561397257600081600090555060010161395a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139bf8161398a565b81146139ca57600080fd5b50565b6000813590506139dc816139b6565b92915050565b6000602082840312156139f8576139f7613980565b5b6000613a06848285016139cd565b91505092915050565b60008115159050919050565b613a2481613a0f565b82525050565b6000602082019050613a3f6000830184613a1b565b92915050565b6000819050919050565b613a5881613a45565b82525050565b6000602082019050613a736000830184613a4f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ab3578082015181840152602081019050613a98565b83811115613ac2576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ae482613a79565b613aee8185613a84565b9350613afe818560208601613a95565b613b0781613ac8565b840191505092915050565b60006020820190508181036000830152613b2c8184613ad9565b905092915050565b613b3d81613a45565b8114613b4857600080fd5b50565b600081359050613b5a81613b34565b92915050565b600060208284031215613b7657613b75613980565b5b6000613b8484828501613b4b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bb882613b8d565b9050919050565b613bc881613bad565b82525050565b6000602082019050613be36000830184613bbf565b92915050565b613bf281613bad565b8114613bfd57600080fd5b50565b600081359050613c0f81613be9565b92915050565b60008060408385031215613c2c57613c2b613980565b5b6000613c3a85828601613c00565b9250506020613c4b85828601613b4b565b9150509250929050565b600080600060608486031215613c6e57613c6d613980565b5b6000613c7c86828701613c00565b9350506020613c8d86828701613c00565b9250506040613c9e86828701613b4b565b9150509250925092565b600060208284031215613cbe57613cbd613980565b5b6000613ccc84828501613c00565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d0a81613a45565b82525050565b6000613d1c8383613d01565b60208301905092915050565b6000602082019050919050565b6000613d4082613cd5565b613d4a8185613ce0565b9350613d5583613cf1565b8060005b83811015613d86578151613d6d8882613d10565b9750613d7883613d28565b925050600181019050613d59565b5085935050505092915050565b60006020820190508181036000830152613dad8184613d35565b905092915050565b6000819050919050565b6000613dda613dd5613dd084613b8d565b613db5565b613b8d565b9050919050565b6000613dec82613dbf565b9050919050565b6000613dfe82613de1565b9050919050565b613e0e81613df3565b82525050565b6000602082019050613e296000830184613e05565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e7182613ac8565b810181811067ffffffffffffffff82111715613e9057613e8f613e39565b5b80604052505050565b6000613ea3613976565b9050613eaf8282613e68565b919050565b600067ffffffffffffffff821115613ecf57613ece613e39565b5b613ed882613ac8565b9050602081019050919050565b82818337600083830152505050565b6000613f07613f0284613eb4565b613e99565b905082815260208101848484011115613f2357613f22613e34565b5b613f2e848285613ee5565b509392505050565b600082601f830112613f4b57613f4a613e2f565b5b8135613f5b848260208601613ef4565b91505092915050565b60008060408385031215613f7b57613f7a613980565b5b6000613f8985828601613b4b565b925050602083013567ffffffffffffffff811115613faa57613fa9613985565b5b613fb685828601613f36565b9150509250929050565b600060208284031215613fd657613fd5613980565b5b600082013567ffffffffffffffff811115613ff457613ff3613985565b5b61400084828501613f36565b91505092915050565b600080604083850312156140205761401f613980565b5b600061402e85828601613b4b565b925050602061403f85828601613c00565b9150509250929050565b61405281613a0f565b811461405d57600080fd5b50565b60008135905061406f81614049565b92915050565b6000806040838503121561408c5761408b613980565b5b600061409a85828601613c00565b92505060206140ab85828601614060565b9150509250929050565b600067ffffffffffffffff8211156140d0576140cf613e39565b5b6140d982613ac8565b9050602081019050919050565b60006140f96140f4846140b5565b613e99565b90508281526020810184848401111561411557614114613e34565b5b614120848285613ee5565b509392505050565b600082601f83011261413d5761413c613e2f565b5b813561414d8482602086016140e6565b91505092915050565b600080600080608085870312156141705761416f613980565b5b600061417e87828801613c00565b945050602061418f87828801613c00565b93505060406141a087828801613b4b565b925050606085013567ffffffffffffffff8111156141c1576141c0613985565b5b6141cd87828801614128565b91505092959194509250565b600080604083850312156141f0576141ef613980565b5b60006141fe85828601613c00565b925050602061420f85828601613c00565b9150509250929050565b600060808201905081810360008301526142338187613ad9565b905081810360208301526142478186613ad9565b90506142566040830185613a4f565b6142636060830184613a4f565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142b357607f821691505b602082108114156142c7576142c661426c565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614329602d83613a84565b9150614334826142cd565b604082019050919050565b600060208201905081810360008301526143588161431c565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006143bb602283613a84565b91506143c68261435f565b604082019050919050565b600060208201905081810360008301526143ea816143ae565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061444d603983613a84565b9150614458826143f1565b604082019050919050565b6000602082019050818103600083015261447c81614440565b9050919050565b60006040820190506144986000830185613bbf565b6144a56020830184613bbf565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144e682613a45565b915060008214156144fa576144f96144ac565b5b600182039050919050565b600061451082613a45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614543576145426144ac565b5b600182019050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006145aa602283613a84565b91506145b58261454e565b604082019050919050565b600060208201905081810360008301526145d98161459d565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061463c602e83613a84565b9150614647826145e0565b604082019050919050565b6000602082019050818103600083015261466b8161462f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e6e6f7420696e74657261637420776974682061204c696c446567656e2060008201527f796f7520646f206e6f74206f776e000000000000000000000000000000000000602082015250565b60006146fd602e83613a84565b9150614708826146a1565b604082019050919050565b6000602082019050818103600083015261472c816146f0565b9050919050565b7f496e76616c6964206e616d65206c656e67746800000000000000000000000000600082015250565b6000614769601383613a84565b915061477482614733565b602082019050919050565b600060208201905081810360008301526147988161475c565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546147cc8161429b565b6147d6818661479f565b945060018216600081146147f1576001811461480257614835565b60ff19831686528186019350614835565b61480b856147aa565b60005b8381101561482d5781548189015260018201915060208101905061480e565b838801955050505b50505092915050565b600061484a82846147bf565b915081905092915050565b6000819050919050565b61486881614855565b811461487357600080fd5b50565b6000815190506148858161485f565b92915050565b6000602082840312156148a1576148a0613980565b5b60006148af84828501614876565b91505092915050565b600081519050919050565b60006148ce826148b8565b6148d8818561479f565b93506148e8818560208601613a95565b80840191505092915050565b600061490082846148c3565b915081905092915050565b7f4e65772062696f2069732073616d652061732063757272656e742062696f0000600082015250565b6000614941601e83613a84565b915061494c8261490b565b602082019050919050565b6000602082019050818103600083015261497081614934565b9050919050565b600060408201905061498c6000830185613bbf565b6149996020830184613a4f565b9392505050565b60006040820190506149b56000830185613a4f565b81810360208301526149c78184613ad9565b90509392505050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614a2c602383613a84565b9150614a37826149d0565b604082019050919050565b60006020820190508181036000830152614a5b81614a1f565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614abe602b83613a84565b9150614ac982614a62565b604082019050919050565b60006020820190508181036000830152614aed81614ab1565b9050919050565b6000614aff82613a45565b9150614b0a83613a45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b3f57614b3e6144ac565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204c696c446567656e7300000000000000000000000000000000000000602082015250565b6000614ba6602d83613a84565b9150614bb182614b4a565b604082019050919050565b60006020820190508181036000830152614bd581614b99565b9050919050565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b6000614c12601483613a84565b9150614c1d82614bdc565b602082019050919050565b60006020820190508181036000830152614c4181614c05565b9050919050565b7f4c696d6974206e756d626572206f66206d696e747320746f20616e20616d6f7560008201527f6e7420736574206f6e20636f6e747261637420636f6e66696775726174696f6e602082015250565b6000614ca4604083613a84565b9150614caf82614c48565b604082019050919050565b60006020820190508181036000830152614cd381614c97565b9050919050565b6000614ce582613a45565b9150614cf083613a45565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d2957614d286144ac565b5b828202905092915050565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b6000614d90602383613a84565b9150614d9b82614d34565b604082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614dfc601a83613a84565b9150614e0782614dc6565b602082019050919050565b60006020820190508181036000830152614e2b81614def565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614e8e603383613a84565b9150614e9982614e32565b604082019050919050565b60006020820190508181036000830152614ebd81614e81565b9050919050565b7f4e6577206e616d652069732073616d652061732063757272656e74206e616d65600082015250565b6000614efa602083613a84565b9150614f0582614ec4565b602082019050919050565b60006020820190508181036000830152614f2981614eed565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f8c602f83613a84565b9150614f9782614f30565b604082019050919050565b60006020820190508181036000830152614fbb81614f7f565b9050919050565b600081905092915050565b6000614fd882613a79565b614fe28185614fc2565b9350614ff2818560208601613a95565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000615034600583614fc2565b915061503f82614ffe565b600582019050919050565b60006150568285614fcd565b91506150628284614fcd565b915061506d82615027565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150d5602683613a84565b91506150e082615079565b604082019050919050565b60006020820190508181036000830152615104816150c8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615141602083613a84565b915061514c8261510b565b602082019050919050565b6000602082019050818103600083015261517081615134565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006151d3602a83613a84565b91506151de82615177565b604082019050919050565b60006020820190508181036000830152615202816151c6565b9050919050565b600061521482613a45565b915061521f83613a45565b925082821015615232576152316144ac565b5b828203905092915050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615299602f83613a84565b91506152a48261523d565b604082019050919050565b600060208201905081810360008301526152c88161528c565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061532b603283613a84565b9150615336826152cf565b604082019050919050565b6000602082019050818103600083015261535a8161531e565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006153bd602683613a84565b91506153c882615361565b604082019050919050565b600060208201905081810360008301526153ec816153b0565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061544f602583613a84565b915061545a826153f3565b604082019050919050565b6000602082019050818103600083015261547e81615442565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006154ac82615485565b91506154b783615485565b9250828210156154ca576154c96144ac565b5b828203905092915050565b60006154e082615485565b91506154eb83615485565b9250826fffffffffffffffffffffffffffffffff038211156155105761550f6144ac565b5b828201905092915050565b600082825260208201905092915050565b6000615537826148b8565b615541818561551b565b9350615551818560208601613a95565b61555a81613ac8565b840191505092915050565b600060808201905061557a6000830187613bbf565b6155876020830186613bbf565b6155946040830185613a4f565b81810360608301526155a6818461552c565b905095945050505050565b6000815190506155c0816139b6565b92915050565b6000602082840312156155dc576155db613980565b5b60006155ea848285016155b1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b600061567e603183613a84565b915061568982615622565b604082019050919050565b600060208201905081810360008301526156ad81615671565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006156ea601483613a84565b91506156f5826156b4565b602082019050919050565b60006020820190508181036000830152615719816156dd565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061577c602183613a84565b915061578782615720565b604082019050919050565b600060208201905081810360008301526157ab8161576f565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b60006157e8601d83613a84565b91506157f3826157b2565b602082019050919050565b60006020820190508181036000830152615817816157db565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600061587a602283613a84565b91506158858261581e565b604082019050919050565b600060208201905081810360008301526158a98161586d565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006158e6601083613a84565b91506158f1826158b0565b602082019050919050565b60006020820190508181036000830152615915816158d9565b905091905056fea26469706673582212204ec2147fd678a7b20bc7fef387926260dcc5d48dbb6ab4a8402ad26bc1df3fba64736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000003c0a75e0b440000000000000000000000000000000000000000000000000000000000064713ea000000000000000000000000000000000000000000000000000000000000000094c696c446567656e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024c44000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): LilDegens
Arg [1] : symbol (string): LD
Arg [2] : maxBatchSize_ (uint256): 3
Arg [3] : mintPrice_ (uint256): 16900000000000000
Arg [4] : startTimestamp_ (uint256): 1685143200

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 000000000000000000000000000000000000000000000000003c0a75e0b44000
Arg [4] : 0000000000000000000000000000000000000000000000000000000064713ea0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 4c696c446567656e730000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [8] : 4c44000000000000000000000000000000000000000000000000000000000000


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.