ETH Price: $2,942.97 (-6.79%)
Gas: 7 Gwei

Token

LittlePunk (LP)
 

Overview

Max Total Supply

2,515 LP

Holders

2,324

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LP
0x7facfe3dc5d8c086868cacdf494e11475876c658
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:
LittlePunk

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//*********************************************************************//
//*********************************************************************//
//
//  /$$       /$$   /$$       /$$     /$$                 /$$$$$$$                      /$$             /$$   /$$ /$$$$$$$$ /$$$$$$$$
// | $$      |__/  | $$      | $$    | $$                | $$__  $$                    | $$            | $$$ | $$| $$_____/|__  $$__/
// | $$       /$$ /$$$$$$   /$$$$$$  | $$  /$$$$$$       | $$  \ $$ /$$   /$$ /$$$$$$$ | $$   /$$      | $$$$| $$| $$         | $$   
// | $$      | $$|_  $$_/  |_  $$_/  | $$ /$$__  $$      | $$$$$$$/| $$  | $$| $$__  $$| $$  /$$/      | $$ $$ $$| $$$$$      | $$   
// | $$      | $$  | $$      | $$    | $$| $$$$$$$$      | $$____/ | $$  | $$| $$  \ $$| $$$$$$/       | $$  $$$$| $$__/      | $$   
// | $$      | $$  | $$ /$$  | $$ /$$| $$| $$_____/      | $$      | $$  | $$| $$  | $$| $$_  $$       | $$\  $$$| $$         | $$   
// | $$$$$$$$| $$  |  $$$$/  |  $$$$/| $$|  $$$$$$$      | $$      |  $$$$$$/| $$  | $$| $$ \  $$      | $$ \  $$| $$         | $$   
// |________/|__/   \___/     \___/  |__/ \_______/      |__/       \______/ |__/  |__/|__/  \__/      |__/  \__/|__/         |__/ 
//
//*********************************************************************//
//*********************************************************************//

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/TheMoonPenguins.sol



pragma solidity ^0.8.4;




contract LittlePunk is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    uint256 public PRICE;
    uint256 public MAX_SUPPLY;
    string private BASE_URI;
    uint256 public FREE_MINT_LIMIT_PER_WALLET;
    uint256 public MAX_MINT_AMOUNT_PER_TX;
    bool public IS_SALE_ACTIVE;
    uint256 public FREE_MINT_IS_ALLOWED_UNTIL;
    bool public METADATA_FROZEN;

    mapping(address => uint256) private freeMintCountMap;

    constructor(
        uint256 price,
        uint256 maxSupply,
        string memory baseUri,
        uint256 freeMintAllowance,
        uint256 maxMintPerTx,
        bool isSaleActive,
        uint256 freeMintIsAllowedUntil
    ) ERC721A("LittlePunk", "LP") {
        PRICE = price;
        MAX_SUPPLY = maxSupply;
        BASE_URI = baseUri;
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
        IS_SALE_ACTIVE = isSaleActive;
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    /** FREE MINT **/

    function updateFreeMintCount(address minter, uint256 count) private {
        freeMintCountMap[minter] += count;
    }

    /** GETTERS **/

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

    /** SETTERS **/

    function setPrice(uint256 customPrice) external onlyOwner {
        PRICE = customPrice;
    }

    function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner {
        require(newMaxSupply < MAX_SUPPLY, "Invalid new max supply");
        require(newMaxSupply >= _currentIndex, "Invalid new max supply");
        MAX_SUPPLY = newMaxSupply;
    }

    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        require(!METADATA_FROZEN, "Metadata frozen!");
        BASE_URI = customBaseURI_;
    }

    function setFreeMintAllowance(uint256 freeMintAllowance)
        external
        onlyOwner
    {
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
    }

    function setMaxMintPerTx(uint256 maxMintPerTx) external onlyOwner {
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
    }

    function setSaleActive(bool saleIsActive) external onlyOwner {
        IS_SALE_ACTIVE = saleIsActive;
    }

    function setFreeMintAllowedUntil(uint256 freeMintIsAllowedUntil)
        external
        onlyOwner
    {
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    function freezeMetadata() external onlyOwner {
        METADATA_FROZEN = true;
    }

    /** MINT **/

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX,
            "Invalid mint amount!"
        );
        require(
            _currentIndex + _mintAmount <= MAX_SUPPLY,
            "Max supply exceeded!"
        );
        _;
    }

    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(IS_SALE_ACTIVE, "Sale is not active!");

        uint256 price = PRICE * _mintAmount;

        if (_currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) {
            uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET -
                freeMintCountMap[msg.sender];
            if (remainingFreeMint > 0) {
                if (_mintAmount >= remainingFreeMint) {
                    price -= remainingFreeMint * PRICE;
                    updateFreeMintCount(msg.sender, remainingFreeMint);
                } else {
                    price -= _mintAmount * PRICE;
                    updateFreeMintCount(msg.sender, _mintAmount);
                }
            }
        }

        require(msg.value >= price, "Insufficient funds!");

        _safeMint(msg.sender, _mintAmount);
    }

    function mintOwner(address _to, uint256 _mintAmount)
        public
        mintCompliance(_mintAmount)
        onlyOwner
    {
        _safeMint(_to, _mintAmount);
    }

    /** PAYOUT **/

    address private constant payoutAddress1 =
        0xE7e3d961402C306A8c8e7A10a57931E714125F5B;

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(payoutAddress1), balance / 1);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200484038038062004840833981810160405281019062000037919062000441565b6040518060400160405280600a81526020017f4c6974746c6550756e6b000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4c500000000000000000000000000000000000000000000000000000000000008152508160029081620000b4919062000754565b508060039081620000c6919062000754565b50620000d76200016360201b60201c565b6000819055505050620000ff620000f36200016860201b60201c565b6200017060201b60201c565b600160098190555086600a8190555085600b8190555084600c908162000126919062000754565b5083600d8190555082600e8190555081600f60006101000a81548160ff02191690831515021790555080601081905550505050505050506200083b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6200025f816200024a565b81146200026b57600080fd5b50565b6000815190506200027f8162000254565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002da826200028f565b810181811067ffffffffffffffff82111715620002fc57620002fb620002a0565b5b80604052505050565b60006200031162000236565b90506200031f8282620002cf565b919050565b600067ffffffffffffffff821115620003425762000341620002a0565b5b6200034d826200028f565b9050602081019050919050565b60005b838110156200037a5780820151818401526020810190506200035d565b60008484015250505050565b60006200039d620003978462000324565b62000305565b905082815260208101848484011115620003bc57620003bb6200028a565b5b620003c98482856200035a565b509392505050565b600082601f830112620003e957620003e862000285565b5b8151620003fb84826020860162000386565b91505092915050565b60008115159050919050565b6200041b8162000404565b81146200042757600080fd5b50565b6000815190506200043b8162000410565b92915050565b600080600080600080600060e0888a03121562000463576200046262000240565b5b6000620004738a828b016200026e565b9750506020620004868a828b016200026e565b965050604088015167ffffffffffffffff811115620004aa57620004a962000245565b5b620004b88a828b01620003d1565b9550506060620004cb8a828b016200026e565b9450506080620004de8a828b016200026e565b93505060a0620004f18a828b016200042a565b92505060c0620005048a828b016200026e565b91505092959891949750929550565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056657607f821691505b6020821081036200057c576200057b6200051e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005e67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005a7565b620005f28683620005a7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006356200062f62000629846200024a565b6200060a565b6200024a565b9050919050565b6000819050919050565b620006518362000614565b6200066962000660826200063c565b848454620005b4565b825550505050565b600090565b6200068062000671565b6200068d81848462000646565b505050565b5b81811015620006b557620006a960008262000676565b60018101905062000693565b5050565b601f8211156200070457620006ce8162000582565b620006d98462000597565b81016020851015620006e9578190505b62000701620006f88562000597565b83018262000692565b50505b505050565b600082821c905092915050565b6000620007296000198460080262000709565b1980831691505092915050565b600062000744838362000716565b9150826002028217905092915050565b6200075f8262000513565b67ffffffffffffffff8111156200077b576200077a620002a0565b5b6200078782546200054d565b62000794828285620006b9565b600060209050601f831160018114620007cc5760008415620007b7578287015190505b620007c3858262000736565b86555062000833565b601f198416620007dc8662000582565b60005b828110156200080657848901518255600182019150602085019450602081019050620007df565b8683101562000826578489015162000822601f89168262000716565b8355505b6001600288020188555050505b505050505050565b613ff5806200084b6000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638d859f3e116100e75780638d859f3e146105a05780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a0712d681461064a57610204565b8063715018a61461050c57806376d02b7114610523578063841718a61461054e5780638b85e43d1461057757610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612e22565b6107ef565b60405161023d9190612e6a565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b6040516102689190612f15565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612f6d565b610963565b6040516102a59190612fdb565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613022565b6109df565b005b3480156102e357600080fd5b506102ec610ae9565b6040516102f99190613071565b60405180910390f35b34801561030e57600080fd5b50610317610aef565b6040516103249190613071565b60405180910390f35b34801561033957600080fd5b50610342610af5565b60405161034f9190613071565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a919061308c565b610b0c565b005b34801561038d57600080fd5b50610396610b1c565b6040516103a39190613071565b60405180910390f35b3480156103b857600080fd5b506103c1610b22565b005b3480156103cf57600080fd5b506103d8610c25565b6040516103e59190613071565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613022565b610c2b565b005b34801561042357600080fd5b5061043e6004803603810190610439919061308c565b610d5a565b005b34801561044c57600080fd5b5061046760048036038101906104629190613214565b610d7a565b005b34801561047557600080fd5b50610490600480360381019061048b9190612f6d565b610e59565b005b34801561049e57600080fd5b506104b960048036038101906104b49190612f6d565b610edf565b6040516104c69190612fdb565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f1919061325d565b610ef5565b6040516105039190613071565b60405180910390f35b34801561051857600080fd5b50610521610fc4565b005b34801561052f57600080fd5b5061053861104c565b6040516105459190612e6a565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906132b6565b61105f565b005b34801561058357600080fd5b5061059e60048036038101906105999190612f6d565b6110f8565b005b3480156105ac57600080fd5b506105b561117e565b6040516105c29190613071565b60405180910390f35b3480156105d757600080fd5b506105e0611184565b6040516105ed9190612fdb565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612f6d565b6111ae565b005b34801561062b57600080fd5b50610634611234565b6040516106419190612f15565b60405180910390f35b610664600480360381019061065f9190612f6d565b6112c6565b005b34801561067257600080fd5b5061068d600480360381019061068891906132e3565b6114dd565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612f6d565b611654565b005b3480156106c457600080fd5b506106df60048036038101906106da91906133c4565b6116da565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612f6d565b611756565b005b34801561071657600080fd5b50610731600480360381019061072c9190612f6d565b611865565b60405161073e9190612f15565b60405180910390f35b34801561075357600080fd5b5061075c611903565b005b34801561076a57600080fd5b5061078560048036038101906107809190613447565b61199c565b6040516107929190612e6a565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd919061325d565b611a30565b005b3480156107d057600080fd5b506107d9611b27565b6040516107e69190612e6a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611b3a565b5b9050919050565b6060600280546108e0906134b6565b80601f016020809104026020016040519081016040528092919081815260200182805461090c906134b6565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611ba4565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610edf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611bf2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa25750610aa081610a9b611bf2565b61199c565b155b15610ad9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae4838383611bfa565b505050565b600e5481565b600d5481565b6000610aff611cac565b6001546000540303905090565b610b17838383611cb1565b505050565b600b5481565b610b2a611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610b48611184565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590613533565b60405180910390fd5b600260095403610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda9061359f565b60405180910390fd5b60026009819055506000479050610c1a73e7e3d961402c306a8c8e7a10a57931e714125f5b600183610c15919061361d565b612165565b506001600981905550565b60105481565b80600081118015610c3e5750600e548111155b610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c749061369a565b60405180910390fd5b600b5481600054610c8e91906136ba565b1115610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc69061373a565b60405180910390fd5b610cd7611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610cf5611184565b73ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613533565b60405180910390fd5b610d558383612259565b505050565b610d75838383604051806020016040528060008152506116da565b505050565b610d82611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610da0611184565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613533565b60405180910390fd5b601160009054906101000a900460ff1615610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d906137a6565b60405180910390fd5b80600c9081610e559190613972565b5050565b610e61611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610e7f611184565b73ffffffffffffffffffffffffffffffffffffffff1614610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90613533565b60405180910390fd5b80600e8190555050565b6000610eea82612277565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fcc611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610fea611184565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790613533565b60405180910390fd5b61104a6000612506565b565b600f60009054906101000a900460ff1681565b611067611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611085611184565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290613533565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611100611bf2565b73ffffffffffffffffffffffffffffffffffffffff1661111e611184565b73ffffffffffffffffffffffffffffffffffffffff1614611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90613533565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111b6611bf2565b73ffffffffffffffffffffffffffffffffffffffff166111d4611184565b73ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190613533565b60405180910390fd5b80600a8190555050565b606060038054611243906134b6565b80601f016020809104026020016040519081016040528092919081815260200182805461126f906134b6565b80156112bc5780601f10611291576101008083540402835291602001916112bc565b820191906000526020600020905b81548152906001019060200180831161129f57829003601f168201915b5050505050905090565b806000811180156112d95750600e548111155b611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f9061369a565b60405180910390fd5b600b548160005461132991906136ba565b111561136a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113619061373a565b60405180910390fd5b600f60009054906101000a900460ff166113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090613a90565b60405180910390fd5b600082600a546113c99190613ab0565b9050601054600054101561148b576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546114269190613af2565b905060008111156114895780841061146257600a54816114469190613ab0565b826114519190613af2565b915061145d33826125cc565b611488565b600a54846114709190613ab0565b8261147b9190613af2565b915061148733856125cc565b5b5b505b803410156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613b72565b60405180910390fd5b6114d83384612259565b505050565b6114e5611bf2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611549576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611556611bf2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611603611bf2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116489190612e6a565b60405180910390a35050565b61165c611bf2565b73ffffffffffffffffffffffffffffffffffffffff1661167a611184565b73ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790613533565b60405180910390fd5b80600d8190555050565b6116e5848484611cb1565b6117048373ffffffffffffffffffffffffffffffffffffffff16612626565b8015611719575061171784848484612649565b155b15611750576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61175e611bf2565b73ffffffffffffffffffffffffffffffffffffffff1661177c611184565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990613533565b60405180910390fd5b600b548110611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90613bde565b60405180910390fd5b60005481101561185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290613bde565b60405180910390fd5b80600b8190555050565b606061187082611ba4565b6118a6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118b0612799565b905060008151036118d057604051806020016040528060008152506118fb565b806118da8461282b565b6040516020016118eb929190613c3a565b6040516020818303038152906040525b915050919050565b61190b611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611929611184565b73ffffffffffffffffffffffffffffffffffffffff161461197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690613533565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a38611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611a56611184565b73ffffffffffffffffffffffffffffffffffffffff1614611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613533565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290613cd0565b60405180910390fd5b611b2481612506565b50565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611baf611cac565b11158015611bbe575060005482105b8015611beb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cbc82612277565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d27576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d48611bf2565b73ffffffffffffffffffffffffffffffffffffffff161480611d775750611d7685611d71611bf2565b61199c565b5b80611dbc5750611d85611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611da484610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611df5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e5b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e68858585600161298b565b611e7460008487611bfa565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120f35760005482146120f257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461215e8585856001612991565b5050505050565b804710156121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90613d3c565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121ce90613d8d565b60006040518083038185875af1925050503d806000811461220b576040519150601f19603f3d011682016040523d82523d6000602084013e612210565b606091505b5050905080612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b90613e14565b60405180910390fd5b505050565b612273828260405180602001604052806000815250612997565b5050565b61227f612d73565b60008290508061228d611cac565b1115801561229c575060005481105b156124cf576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124cd57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123b1578092505050612501565b5b6001156124cc57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124c7578092505050612501565b6123b2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461261b91906136ba565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261266f611bf2565b8786866040518563ffffffff1660e01b81526004016126919493929190613e89565b6020604051808303816000875af19250505080156126cd57506040513d601f19601f820116820180604052508101906126ca9190613eea565b60015b612746573d80600081146126fd576040519150601f19603f3d011682016040523d82523d6000602084013e612702565b606091505b50600081510361273e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546127a8906134b6565b80601f01602080910402602001604051908101604052809291908181526020018280546127d4906134b6565b80156128215780601f106127f657610100808354040283529160200191612821565b820191906000526020600020905b81548152906001019060200180831161280457829003601f168201915b5050505050905090565b606060008203612872576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612986565b600082905060005b600082146128a457808061288d90613f17565b915050600a8261289d919061361d565b915061287a565b60008167ffffffffffffffff8111156128c0576128bf6130e9565b5b6040519080825280601f01601f1916602001820160405280156128f25781602001600182028036833780820191505090505b5090505b6000851461297f5760018261290b9190613af2565b9150600a8561291a9190613f5f565b603061292691906136ba565b60f81b81838151811061293c5761293b613f90565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612978919061361d565b94506128f6565b8093505050505b919050565b50505050565b50505050565b6129a483838360016129a9565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612a15576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612a4f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a5c600086838761298b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c265750612c258773ffffffffffffffffffffffffffffffffffffffff16612626565b5b15612ceb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c9b6000888480600101955088612649565b612cd1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612c2c578260005414612ce657600080fd5b612d56565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612cec575b816000819055505050612d6c6000868387612991565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612dff81612dca565b8114612e0a57600080fd5b50565b600081359050612e1c81612df6565b92915050565b600060208284031215612e3857612e37612dc0565b5b6000612e4684828501612e0d565b91505092915050565b60008115159050919050565b612e6481612e4f565b82525050565b6000602082019050612e7f6000830184612e5b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ebf578082015181840152602081019050612ea4565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ee782612e85565b612ef18185612e90565b9350612f01818560208601612ea1565b612f0a81612ecb565b840191505092915050565b60006020820190508181036000830152612f2f8184612edc565b905092915050565b6000819050919050565b612f4a81612f37565b8114612f5557600080fd5b50565b600081359050612f6781612f41565b92915050565b600060208284031215612f8357612f82612dc0565b5b6000612f9184828501612f58565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fc582612f9a565b9050919050565b612fd581612fba565b82525050565b6000602082019050612ff06000830184612fcc565b92915050565b612fff81612fba565b811461300a57600080fd5b50565b60008135905061301c81612ff6565b92915050565b6000806040838503121561303957613038612dc0565b5b60006130478582860161300d565b925050602061305885828601612f58565b9150509250929050565b61306b81612f37565b82525050565b60006020820190506130866000830184613062565b92915050565b6000806000606084860312156130a5576130a4612dc0565b5b60006130b38682870161300d565b93505060206130c48682870161300d565b92505060406130d586828701612f58565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61312182612ecb565b810181811067ffffffffffffffff821117156131405761313f6130e9565b5b80604052505050565b6000613153612db6565b905061315f8282613118565b919050565b600067ffffffffffffffff82111561317f5761317e6130e9565b5b61318882612ecb565b9050602081019050919050565b82818337600083830152505050565b60006131b76131b284613164565b613149565b9050828152602081018484840111156131d3576131d26130e4565b5b6131de848285613195565b509392505050565b600082601f8301126131fb576131fa6130df565b5b813561320b8482602086016131a4565b91505092915050565b60006020828403121561322a57613229612dc0565b5b600082013567ffffffffffffffff81111561324857613247612dc5565b5b613254848285016131e6565b91505092915050565b60006020828403121561327357613272612dc0565b5b60006132818482850161300d565b91505092915050565b61329381612e4f565b811461329e57600080fd5b50565b6000813590506132b08161328a565b92915050565b6000602082840312156132cc576132cb612dc0565b5b60006132da848285016132a1565b91505092915050565b600080604083850312156132fa576132f9612dc0565b5b60006133088582860161300d565b9250506020613319858286016132a1565b9150509250929050565b600067ffffffffffffffff82111561333e5761333d6130e9565b5b61334782612ecb565b9050602081019050919050565b600061336761336284613323565b613149565b905082815260208101848484011115613383576133826130e4565b5b61338e848285613195565b509392505050565b600082601f8301126133ab576133aa6130df565b5b81356133bb848260208601613354565b91505092915050565b600080600080608085870312156133de576133dd612dc0565b5b60006133ec8782880161300d565b94505060206133fd8782880161300d565b935050604061340e87828801612f58565b925050606085013567ffffffffffffffff81111561342f5761342e612dc5565b5b61343b87828801613396565b91505092959194509250565b6000806040838503121561345e5761345d612dc0565b5b600061346c8582860161300d565b925050602061347d8582860161300d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134ce57607f821691505b6020821081036134e1576134e0613487565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061351d602083612e90565b9150613528826134e7565b602082019050919050565b6000602082019050818103600083015261354c81613510565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613589601f83612e90565b915061359482613553565b602082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061362882612f37565b915061363383612f37565b925082613643576136426135bf565b5b828204905092915050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613684601483612e90565b915061368f8261364e565b602082019050919050565b600060208201905081810360008301526136b381613677565b9050919050565b60006136c582612f37565b91506136d083612f37565b92508282019050808211156136e8576136e76135ee565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613724601483612e90565b915061372f826136ee565b602082019050919050565b6000602082019050818103600083015261375381613717565b9050919050565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b6000613790601083612e90565b915061379b8261375a565b602082019050919050565b600060208201905081810360008301526137bf81613783565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026138287fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137eb565b61383286836137eb565b95508019841693508086168417925050509392505050565b6000819050919050565b600061386f61386a61386584612f37565b61384a565b612f37565b9050919050565b6000819050919050565b61388983613854565b61389d61389582613876565b8484546137f8565b825550505050565b600090565b6138b26138a5565b6138bd818484613880565b505050565b5b818110156138e1576138d66000826138aa565b6001810190506138c3565b5050565b601f821115613926576138f7816137c6565b613900846137db565b8101602085101561390f578190505b61392361391b856137db565b8301826138c2565b50505b505050565b600082821c905092915050565b60006139496000198460080261392b565b1980831691505092915050565b60006139628383613938565b9150826002028217905092915050565b61397b82612e85565b67ffffffffffffffff811115613994576139936130e9565b5b61399e82546134b6565b6139a98282856138e5565b600060209050601f8311600181146139dc57600084156139ca578287015190505b6139d48582613956565b865550613a3c565b601f1984166139ea866137c6565b60005b82811015613a12578489015182556001820191506020850194506020810190506139ed565b86831015613a2f5784890151613a2b601f891682613938565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b6000613a7a601383612e90565b9150613a8582613a44565b602082019050919050565b60006020820190508181036000830152613aa981613a6d565b9050919050565b6000613abb82612f37565b9150613ac683612f37565b9250828202613ad481612f37565b91508282048414831517613aeb57613aea6135ee565b5b5092915050565b6000613afd82612f37565b9150613b0883612f37565b9250828203905081811115613b2057613b1f6135ee565b5b92915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613b5c601383612e90565b9150613b6782613b26565b602082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613bc8601683612e90565b9150613bd382613b92565b602082019050919050565b60006020820190508181036000830152613bf781613bbb565b9050919050565b600081905092915050565b6000613c1482612e85565b613c1e8185613bfe565b9350613c2e818560208601612ea1565b80840191505092915050565b6000613c468285613c09565b9150613c528284613c09565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613cba602683612e90565b9150613cc582613c5e565b604082019050919050565b60006020820190508181036000830152613ce981613cad565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613d26601d83612e90565b9150613d3182613cf0565b602082019050919050565b60006020820190508181036000830152613d5581613d19565b9050919050565b600081905092915050565b50565b6000613d77600083613d5c565b9150613d8282613d67565b600082019050919050565b6000613d9882613d6a565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613dfe603a83612e90565b9150613e0982613da2565b604082019050919050565b60006020820190508181036000830152613e2d81613df1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e5b82613e34565b613e658185613e3f565b9350613e75818560208601612ea1565b613e7e81612ecb565b840191505092915050565b6000608082019050613e9e6000830187612fcc565b613eab6020830186612fcc565b613eb86040830185613062565b8181036060830152613eca8184613e50565b905095945050505050565b600081519050613ee481612df6565b92915050565b600060208284031215613f0057613eff612dc0565b5b6000613f0e84828501613ed5565b91505092915050565b6000613f2282612f37565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f5457613f536135ee565b5b600182019050919050565b6000613f6a82612f37565b9150613f7583612f37565b925082613f8557613f846135bf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212206cc21ac7b6213b41b8d8d8467936bb3e91d11c109e03c4ba34f80055b580999764736f6c63430008110033000000000000000000000000000000000000000000000000000c6f3b40b6c0000000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56707137524d706758554553783770756352417874336d7438514a75744e467777486a76523833714e4838472f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638d859f3e116100e75780638d859f3e146105a05780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a0712d681461064a57610204565b8063715018a61461050c57806376d02b7114610523578063841718a61461054e5780638b85e43d1461057757610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612e22565b6107ef565b60405161023d9190612e6a565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b6040516102689190612f15565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612f6d565b610963565b6040516102a59190612fdb565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613022565b6109df565b005b3480156102e357600080fd5b506102ec610ae9565b6040516102f99190613071565b60405180910390f35b34801561030e57600080fd5b50610317610aef565b6040516103249190613071565b60405180910390f35b34801561033957600080fd5b50610342610af5565b60405161034f9190613071565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a919061308c565b610b0c565b005b34801561038d57600080fd5b50610396610b1c565b6040516103a39190613071565b60405180910390f35b3480156103b857600080fd5b506103c1610b22565b005b3480156103cf57600080fd5b506103d8610c25565b6040516103e59190613071565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613022565b610c2b565b005b34801561042357600080fd5b5061043e6004803603810190610439919061308c565b610d5a565b005b34801561044c57600080fd5b5061046760048036038101906104629190613214565b610d7a565b005b34801561047557600080fd5b50610490600480360381019061048b9190612f6d565b610e59565b005b34801561049e57600080fd5b506104b960048036038101906104b49190612f6d565b610edf565b6040516104c69190612fdb565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f1919061325d565b610ef5565b6040516105039190613071565b60405180910390f35b34801561051857600080fd5b50610521610fc4565b005b34801561052f57600080fd5b5061053861104c565b6040516105459190612e6a565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906132b6565b61105f565b005b34801561058357600080fd5b5061059e60048036038101906105999190612f6d565b6110f8565b005b3480156105ac57600080fd5b506105b561117e565b6040516105c29190613071565b60405180910390f35b3480156105d757600080fd5b506105e0611184565b6040516105ed9190612fdb565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612f6d565b6111ae565b005b34801561062b57600080fd5b50610634611234565b6040516106419190612f15565b60405180910390f35b610664600480360381019061065f9190612f6d565b6112c6565b005b34801561067257600080fd5b5061068d600480360381019061068891906132e3565b6114dd565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612f6d565b611654565b005b3480156106c457600080fd5b506106df60048036038101906106da91906133c4565b6116da565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612f6d565b611756565b005b34801561071657600080fd5b50610731600480360381019061072c9190612f6d565b611865565b60405161073e9190612f15565b60405180910390f35b34801561075357600080fd5b5061075c611903565b005b34801561076a57600080fd5b5061078560048036038101906107809190613447565b61199c565b6040516107929190612e6a565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd919061325d565b611a30565b005b3480156107d057600080fd5b506107d9611b27565b6040516107e69190612e6a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611b3a565b5b9050919050565b6060600280546108e0906134b6565b80601f016020809104026020016040519081016040528092919081815260200182805461090c906134b6565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611ba4565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610edf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611bf2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa25750610aa081610a9b611bf2565b61199c565b155b15610ad9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae4838383611bfa565b505050565b600e5481565b600d5481565b6000610aff611cac565b6001546000540303905090565b610b17838383611cb1565b505050565b600b5481565b610b2a611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610b48611184565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590613533565b60405180910390fd5b600260095403610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda9061359f565b60405180910390fd5b60026009819055506000479050610c1a73e7e3d961402c306a8c8e7a10a57931e714125f5b600183610c15919061361d565b612165565b506001600981905550565b60105481565b80600081118015610c3e5750600e548111155b610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c749061369a565b60405180910390fd5b600b5481600054610c8e91906136ba565b1115610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc69061373a565b60405180910390fd5b610cd7611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610cf5611184565b73ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613533565b60405180910390fd5b610d558383612259565b505050565b610d75838383604051806020016040528060008152506116da565b505050565b610d82611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610da0611184565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613533565b60405180910390fd5b601160009054906101000a900460ff1615610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d906137a6565b60405180910390fd5b80600c9081610e559190613972565b5050565b610e61611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610e7f611184565b73ffffffffffffffffffffffffffffffffffffffff1614610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90613533565b60405180910390fd5b80600e8190555050565b6000610eea82612277565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fcc611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610fea611184565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790613533565b60405180910390fd5b61104a6000612506565b565b600f60009054906101000a900460ff1681565b611067611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611085611184565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290613533565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611100611bf2565b73ffffffffffffffffffffffffffffffffffffffff1661111e611184565b73ffffffffffffffffffffffffffffffffffffffff1614611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90613533565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111b6611bf2565b73ffffffffffffffffffffffffffffffffffffffff166111d4611184565b73ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190613533565b60405180910390fd5b80600a8190555050565b606060038054611243906134b6565b80601f016020809104026020016040519081016040528092919081815260200182805461126f906134b6565b80156112bc5780601f10611291576101008083540402835291602001916112bc565b820191906000526020600020905b81548152906001019060200180831161129f57829003601f168201915b5050505050905090565b806000811180156112d95750600e548111155b611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f9061369a565b60405180910390fd5b600b548160005461132991906136ba565b111561136a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113619061373a565b60405180910390fd5b600f60009054906101000a900460ff166113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090613a90565b60405180910390fd5b600082600a546113c99190613ab0565b9050601054600054101561148b576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546114269190613af2565b905060008111156114895780841061146257600a54816114469190613ab0565b826114519190613af2565b915061145d33826125cc565b611488565b600a54846114709190613ab0565b8261147b9190613af2565b915061148733856125cc565b5b5b505b803410156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613b72565b60405180910390fd5b6114d83384612259565b505050565b6114e5611bf2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611549576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611556611bf2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611603611bf2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116489190612e6a565b60405180910390a35050565b61165c611bf2565b73ffffffffffffffffffffffffffffffffffffffff1661167a611184565b73ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790613533565b60405180910390fd5b80600d8190555050565b6116e5848484611cb1565b6117048373ffffffffffffffffffffffffffffffffffffffff16612626565b8015611719575061171784848484612649565b155b15611750576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61175e611bf2565b73ffffffffffffffffffffffffffffffffffffffff1661177c611184565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990613533565b60405180910390fd5b600b548110611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90613bde565b60405180910390fd5b60005481101561185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290613bde565b60405180910390fd5b80600b8190555050565b606061187082611ba4565b6118a6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118b0612799565b905060008151036118d057604051806020016040528060008152506118fb565b806118da8461282b565b6040516020016118eb929190613c3a565b6040516020818303038152906040525b915050919050565b61190b611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611929611184565b73ffffffffffffffffffffffffffffffffffffffff161461197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690613533565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a38611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611a56611184565b73ffffffffffffffffffffffffffffffffffffffff1614611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613533565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290613cd0565b60405180910390fd5b611b2481612506565b50565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611baf611cac565b11158015611bbe575060005482105b8015611beb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cbc82612277565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d27576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d48611bf2565b73ffffffffffffffffffffffffffffffffffffffff161480611d775750611d7685611d71611bf2565b61199c565b5b80611dbc5750611d85611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611da484610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611df5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e5b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e68858585600161298b565b611e7460008487611bfa565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120f35760005482146120f257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461215e8585856001612991565b5050505050565b804710156121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90613d3c565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121ce90613d8d565b60006040518083038185875af1925050503d806000811461220b576040519150601f19603f3d011682016040523d82523d6000602084013e612210565b606091505b5050905080612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b90613e14565b60405180910390fd5b505050565b612273828260405180602001604052806000815250612997565b5050565b61227f612d73565b60008290508061228d611cac565b1115801561229c575060005481105b156124cf576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124cd57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123b1578092505050612501565b5b6001156124cc57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124c7578092505050612501565b6123b2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461261b91906136ba565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261266f611bf2565b8786866040518563ffffffff1660e01b81526004016126919493929190613e89565b6020604051808303816000875af19250505080156126cd57506040513d601f19601f820116820180604052508101906126ca9190613eea565b60015b612746573d80600081146126fd576040519150601f19603f3d011682016040523d82523d6000602084013e612702565b606091505b50600081510361273e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546127a8906134b6565b80601f01602080910402602001604051908101604052809291908181526020018280546127d4906134b6565b80156128215780601f106127f657610100808354040283529160200191612821565b820191906000526020600020905b81548152906001019060200180831161280457829003601f168201915b5050505050905090565b606060008203612872576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612986565b600082905060005b600082146128a457808061288d90613f17565b915050600a8261289d919061361d565b915061287a565b60008167ffffffffffffffff8111156128c0576128bf6130e9565b5b6040519080825280601f01601f1916602001820160405280156128f25781602001600182028036833780820191505090505b5090505b6000851461297f5760018261290b9190613af2565b9150600a8561291a9190613f5f565b603061292691906136ba565b60f81b81838151811061293c5761293b613f90565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612978919061361d565b94506128f6565b8093505050505b919050565b50505050565b50505050565b6129a483838360016129a9565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612a15576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612a4f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a5c600086838761298b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c265750612c258773ffffffffffffffffffffffffffffffffffffffff16612626565b5b15612ceb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c9b6000888480600101955088612649565b612cd1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612c2c578260005414612ce657600080fd5b612d56565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612cec575b816000819055505050612d6c6000868387612991565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612dff81612dca565b8114612e0a57600080fd5b50565b600081359050612e1c81612df6565b92915050565b600060208284031215612e3857612e37612dc0565b5b6000612e4684828501612e0d565b91505092915050565b60008115159050919050565b612e6481612e4f565b82525050565b6000602082019050612e7f6000830184612e5b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ebf578082015181840152602081019050612ea4565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ee782612e85565b612ef18185612e90565b9350612f01818560208601612ea1565b612f0a81612ecb565b840191505092915050565b60006020820190508181036000830152612f2f8184612edc565b905092915050565b6000819050919050565b612f4a81612f37565b8114612f5557600080fd5b50565b600081359050612f6781612f41565b92915050565b600060208284031215612f8357612f82612dc0565b5b6000612f9184828501612f58565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fc582612f9a565b9050919050565b612fd581612fba565b82525050565b6000602082019050612ff06000830184612fcc565b92915050565b612fff81612fba565b811461300a57600080fd5b50565b60008135905061301c81612ff6565b92915050565b6000806040838503121561303957613038612dc0565b5b60006130478582860161300d565b925050602061305885828601612f58565b9150509250929050565b61306b81612f37565b82525050565b60006020820190506130866000830184613062565b92915050565b6000806000606084860312156130a5576130a4612dc0565b5b60006130b38682870161300d565b93505060206130c48682870161300d565b92505060406130d586828701612f58565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61312182612ecb565b810181811067ffffffffffffffff821117156131405761313f6130e9565b5b80604052505050565b6000613153612db6565b905061315f8282613118565b919050565b600067ffffffffffffffff82111561317f5761317e6130e9565b5b61318882612ecb565b9050602081019050919050565b82818337600083830152505050565b60006131b76131b284613164565b613149565b9050828152602081018484840111156131d3576131d26130e4565b5b6131de848285613195565b509392505050565b600082601f8301126131fb576131fa6130df565b5b813561320b8482602086016131a4565b91505092915050565b60006020828403121561322a57613229612dc0565b5b600082013567ffffffffffffffff81111561324857613247612dc5565b5b613254848285016131e6565b91505092915050565b60006020828403121561327357613272612dc0565b5b60006132818482850161300d565b91505092915050565b61329381612e4f565b811461329e57600080fd5b50565b6000813590506132b08161328a565b92915050565b6000602082840312156132cc576132cb612dc0565b5b60006132da848285016132a1565b91505092915050565b600080604083850312156132fa576132f9612dc0565b5b60006133088582860161300d565b9250506020613319858286016132a1565b9150509250929050565b600067ffffffffffffffff82111561333e5761333d6130e9565b5b61334782612ecb565b9050602081019050919050565b600061336761336284613323565b613149565b905082815260208101848484011115613383576133826130e4565b5b61338e848285613195565b509392505050565b600082601f8301126133ab576133aa6130df565b5b81356133bb848260208601613354565b91505092915050565b600080600080608085870312156133de576133dd612dc0565b5b60006133ec8782880161300d565b94505060206133fd8782880161300d565b935050604061340e87828801612f58565b925050606085013567ffffffffffffffff81111561342f5761342e612dc5565b5b61343b87828801613396565b91505092959194509250565b6000806040838503121561345e5761345d612dc0565b5b600061346c8582860161300d565b925050602061347d8582860161300d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134ce57607f821691505b6020821081036134e1576134e0613487565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061351d602083612e90565b9150613528826134e7565b602082019050919050565b6000602082019050818103600083015261354c81613510565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613589601f83612e90565b915061359482613553565b602082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061362882612f37565b915061363383612f37565b925082613643576136426135bf565b5b828204905092915050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613684601483612e90565b915061368f8261364e565b602082019050919050565b600060208201905081810360008301526136b381613677565b9050919050565b60006136c582612f37565b91506136d083612f37565b92508282019050808211156136e8576136e76135ee565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613724601483612e90565b915061372f826136ee565b602082019050919050565b6000602082019050818103600083015261375381613717565b9050919050565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b6000613790601083612e90565b915061379b8261375a565b602082019050919050565b600060208201905081810360008301526137bf81613783565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026138287fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137eb565b61383286836137eb565b95508019841693508086168417925050509392505050565b6000819050919050565b600061386f61386a61386584612f37565b61384a565b612f37565b9050919050565b6000819050919050565b61388983613854565b61389d61389582613876565b8484546137f8565b825550505050565b600090565b6138b26138a5565b6138bd818484613880565b505050565b5b818110156138e1576138d66000826138aa565b6001810190506138c3565b5050565b601f821115613926576138f7816137c6565b613900846137db565b8101602085101561390f578190505b61392361391b856137db565b8301826138c2565b50505b505050565b600082821c905092915050565b60006139496000198460080261392b565b1980831691505092915050565b60006139628383613938565b9150826002028217905092915050565b61397b82612e85565b67ffffffffffffffff811115613994576139936130e9565b5b61399e82546134b6565b6139a98282856138e5565b600060209050601f8311600181146139dc57600084156139ca578287015190505b6139d48582613956565b865550613a3c565b601f1984166139ea866137c6565b60005b82811015613a12578489015182556001820191506020850194506020810190506139ed565b86831015613a2f5784890151613a2b601f891682613938565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b6000613a7a601383612e90565b9150613a8582613a44565b602082019050919050565b60006020820190508181036000830152613aa981613a6d565b9050919050565b6000613abb82612f37565b9150613ac683612f37565b9250828202613ad481612f37565b91508282048414831517613aeb57613aea6135ee565b5b5092915050565b6000613afd82612f37565b9150613b0883612f37565b9250828203905081811115613b2057613b1f6135ee565b5b92915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613b5c601383612e90565b9150613b6782613b26565b602082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613bc8601683612e90565b9150613bd382613b92565b602082019050919050565b60006020820190508181036000830152613bf781613bbb565b9050919050565b600081905092915050565b6000613c1482612e85565b613c1e8185613bfe565b9350613c2e818560208601612ea1565b80840191505092915050565b6000613c468285613c09565b9150613c528284613c09565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613cba602683612e90565b9150613cc582613c5e565b604082019050919050565b60006020820190508181036000830152613ce981613cad565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613d26601d83612e90565b9150613d3182613cf0565b602082019050919050565b60006020820190508181036000830152613d5581613d19565b9050919050565b600081905092915050565b50565b6000613d77600083613d5c565b9150613d8282613d67565b600082019050919050565b6000613d9882613d6a565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613dfe603a83612e90565b9150613e0982613da2565b604082019050919050565b60006020820190508181036000830152613e2d81613df1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e5b82613e34565b613e658185613e3f565b9350613e75818560208601612ea1565b613e7e81612ecb565b840191505092915050565b6000608082019050613e9e6000830187612fcc565b613eab6020830186612fcc565b613eb86040830185613062565b8181036060830152613eca8184613e50565b905095945050505050565b600081519050613ee481612df6565b92915050565b600060208284031215613f0057613eff612dc0565b5b6000613f0e84828501613ed5565b91505092915050565b6000613f2282612f37565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f5457613f536135ee565b5b600182019050919050565b6000613f6a82612f37565b9150613f7583612f37565b925082613f8557613f846135bf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212206cc21ac7b6213b41b8d8d8467936bb3e91d11c109e03c4ba34f80055b580999764736f6c63430008110033

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

000000000000000000000000000000000000000000000000000c6f3b40b6c0000000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56707137524d706758554553783770756352417874336d7438514a75744e467777486a76523833714e4838472f00000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 3500000000000000
Arg [1] : maxSupply (uint256): 3000
Arg [2] : baseUri (string): ipfs://QmVpq7RMpgXUESx7pucRAxt3mt8QJutNFwwHjvR83qNH8G/
Arg [3] : freeMintAllowance (uint256): 1
Arg [4] : maxMintPerTx (uint256): 100
Arg [5] : isSaleActive (bool): True
Arg [6] : freeMintIsAllowedUntil (uint256): 1000

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000c6f3b40b6c000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d56707137524d706758554553783770756352417874336d
Arg [9] : 7438514a75744e467777486a76523833714e4838472f00000000000000000000


Deployed Bytecode Sourcemap

48976:4365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31152:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34265:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35768:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35331:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49211:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49163:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30401:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36633:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49101:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53164:174;;;;;;;;;;;;;:::i;:::-;;49288:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52856:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36874:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50692:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51041:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34073:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31521:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8910:103;;;;;;;;;;;;;:::i;:::-;;49255:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51171:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51288:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49074:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8259:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50325:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34434:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51919:929;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36044:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50869:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37130:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50429:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34609:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51473:86;;;;;;;;;;;;;:::i;:::-;;36402:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9168:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49336:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31152:305;31254:4;31306:25;31291:40;;;:11;:40;;;;:105;;;;31363:33;31348:48;;;:11;:48;;;;31291:105;:158;;;;31413:36;31437:11;31413:23;:36::i;:::-;31291:158;31271:178;;31152:305;;;:::o;34265:100::-;34319:13;34352:5;34345:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34265:100;:::o;35768:204::-;35836:7;35861:16;35869:7;35861;:16::i;:::-;35856:64;;35886:34;;;;;;;;;;;;;;35856:64;35940:15;:24;35956:7;35940:24;;;;;;;;;;;;;;;;;;;;;35933:31;;35768:204;;;:::o;35331:371::-;35404:13;35420:24;35436:7;35420:15;:24::i;:::-;35404:40;;35465:5;35459:11;;:2;:11;;;35455:48;;35479:24;;;;;;;;;;;;;;35455:48;35536:5;35520:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35546:37;35563:5;35570:12;:10;:12::i;:::-;35546:16;:37::i;:::-;35545:38;35520:63;35516:138;;;35607:35;;;;;;;;;;;;;;35516:138;35666:28;35675:2;35679:7;35688:5;35666:8;:28::i;:::-;35393:309;35331:371;;:::o;49211:37::-;;;;:::o;49163:41::-;;;;:::o;30401:303::-;30445:7;30670:15;:13;:15::i;:::-;30655:12;;30639:13;;:28;:46;30632:53;;30401:303;:::o;36633:170::-;36767:28;36777:4;36783:2;36787:7;36767:9;:28::i;:::-;36633:170;;;:::o;49101:25::-;;;;:::o;53164:174::-;8490:12;:10;:12::i;:::-;8479:23;;:7;:5;:7::i;:::-;:23;;;8471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3233:1:::1;3831:7;;:19:::0;3823:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3233:1;3964:7;:18;;;;53225:15:::2;53243:21;53225:39;;53275:55;53113:42;53328:1;53318:7;:11;;;;:::i;:::-;53275:17;:55::i;:::-;53214:124;3189:1:::1;4143:7;:22;;;;53164:174::o:0;49288:41::-;;;;:::o;52856:176::-;52949:11;51679:1;51665:11;:15;:56;;;;;51699:22;;51684:11;:37;;51665:56;51643:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;51833:10;;51818:11;51802:13;;:27;;;;:::i;:::-;:41;;51780:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;8490:12:::1;:10;:12::i;:::-;8479:23;;:7;:5;:7::i;:::-;:23;;;8471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52997:27:::2;53007:3;53012:11;52997:9;:27::i;:::-;52856:176:::0;;;:::o;36874:185::-;37012:39;37029:4;37035:2;37039:7;37012:39;;;;;;;;;;;;:16;:39::i;:::-;36874:185;;;:::o;50692:169::-;8490:12;:10;:12::i;:::-;8479:23;;:7;:5;:7::i;:::-;:23;;;8471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50781:15:::1;;;;;;;;;;;50780:16;50772:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;50839:14;50828:8;:25;;;;;;:::i;:::-;;50692:169:::0;:::o;51041:122::-;8490:12;:10;:12::i;:::-;8479:23;;:7;:5;:7::i;:::-;:23;;;8471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51143:12:::1;51118:22;:37;;;;51041:122:::0;:::o;34073:125::-;34137:7;34164:21;34177:7;34164:12;:21::i;:::-;:26;;;34157:33;;34073:125;;;:::o;31521:206::-;31585:7;31626:1;31609:19;;:5;:19;;;31605:60;;31637:28;;;;;;;;;;;;;;31605:60;31691:12;:19;31704:5;31691:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31683:36;;31676:43;;31521:206;;;:::o;8910:103::-;8490:12;:10;:12::i;:::-;8479:23;;:7;:5;:7::i;:::-;:23;;;8471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8975:30:::1;9002:1;8975:18;:30::i;:::-;8910:103::o:0;49255:26::-;;;;;;;;;;;;;:::o;51171:109::-;8490:12;:10;:12::i;:::-;8479:23;;:7;:5;:7::i;:::-;:23;;;8471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51260:12:::1;51243:14;;:29;;;;;;;;;;;;;;;;;;51171:109:::0;:::o;51288:177::-;8490:12;:10;:12::i;:::-;8479:23;;:7;:5;:7::i;:::-;:23;;;8471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51435:22:::1;51406:26;:51;;;;51288:177:::0;:::o;49074:20::-;;;;:::o;8259:87::-;8305:7;8332:6;;;;;;;;;;;8325:13;;8259:87;:::o;50325:96::-;8490:12;:10;:12::i;:::-;8479:23;;:7;:5;:7::i;:::-;:23;;;8471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50402:11:::1;50394:5;:19;;;;50325:96:::0;:::o;34434:104::-;34490:13;34523:7;34516:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34434:104;:::o;51919:929::-;52011:11;51679:1;51665:11;:15;:56;;;;;51699:22;;51684:11;:37;;51665:56;51643:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;51833:10;;51818:11;51802:13;;:27;;;;:::i;:::-;:41;;51780:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;52048:14:::1;;;;;;;;;;;52040:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;52099:13;52123:11;52115:5;;:19;;;;:::i;:::-;52099:35;;52167:26;;52151:13;;:42;52147:584;;;52210:25;52284:16;:28;52301:10;52284:28;;;;;;;;;;;;;;;;52238:26;;:74;;;;:::i;:::-;52210:102;;52351:1;52331:17;:21;52327:393;;;52392:17;52377:11;:32;52373:332;;52463:5;;52443:17;:25;;;;:::i;:::-;52434:34;;;;;:::i;:::-;;;52491:50;52511:10;52523:17;52491:19;:50::i;:::-;52373:332;;;52613:5;;52599:11;:19;;;;:::i;:::-;52590:28;;;;;:::i;:::-;;;52641:44;52661:10;52673:11;52641:19;:44::i;:::-;52373:332;52327:393;52195:536;52147:584;52764:5;52751:9;:18;;52743:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;52806:34;52816:10;52828:11;52806:9;:34::i;:::-;52029:819;51919:929:::0;;:::o;36044:287::-;36155:12;:10;:12::i;:::-;36143:24;;:8;:24;;;36139:54;;36176:17;;;;;;;;;;;;;;36139:54;36251:8;36206:18;:32;36225:12;:10;:12::i;:::-;36206:32;;;;;;;;;;;;;;;:42;36239:8;36206:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36304:8;36275:48;;36290:12;:10;:12::i;:::-;36275:48;;;36314:8;36275:48;;;;;;:::i;:::-;;;;;;;;36044:287;;:::o;50869:164::-;8490:12;:10;:12::i;:::-;8479:23;;:7;:5;:7::i;:::-;:23;;;8471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51008:17:::1;50979:26;:46;;;;50869:164:::0;:::o;37130:369::-;37297:28;37307:4;37313:2;37317:7;37297:9;:28::i;:::-;37340:15;:2;:13;;;:15::i;:::-;:76;;;;;37360:56;37391:4;37397:2;37401:7;37410:5;37360:30;:56::i;:::-;37359:57;37340:76;37336:156;;;37440:40;;;;;;;;;;;;;;37336:156;37130:369;;;;:::o;50429:255::-;8490:12;:10;:12::i;:::-;8479:23;;:7;:5;:7::i;:::-;:23;;;8471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50528:10:::1;;50513:12;:25;50505:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;50600:13;;50584:12;:29;;50576:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;50664:12;50651:10;:25;;;;50429:255:::0;:::o;34609:318::-;34682:13;34713:16;34721:7;34713;:16::i;:::-;34708:59;;34738:29;;;;;;;;;;;;;;34708:59;34780:21;34804:10;:8;:10::i;:::-;34780:34;;34857:1;34838:7;34832:21;:26;:87;;;;;;;;;;;;;;;;;34885:7;34894:18;:7;:16;:18::i;:::-;34868:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34832:87;34825:94;;;34609:318;;;:::o;51473:86::-;8490:12;:10;:12::i;:::-;8479:23;;:7;:5;:7::i;:::-;:23;;;8471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51547:4:::1;51529:15;;:22;;;;;;;;;;;;;;;;;;51473:86::o:0;36402:164::-;36499:4;36523:18;:25;36542:5;36523:25;;;;;;;;;;;;;;;:35;36549:8;36523:35;;;;;;;;;;;;;;;;;;;;;;;;;36516:42;;36402:164;;;;:::o;9168:201::-;8490:12;:10;:12::i;:::-;8479:23;;:7;:5;:7::i;:::-;:23;;;8471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9277:1:::1;9257:22;;:8;:22;;::::0;9249:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;9333:28;9352:8;9333:18;:28::i;:::-;9168:201:::0;:::o;49336:27::-;;;;;;;;;;;;;:::o;21043:157::-;21128:4;21167:25;21152:40;;;:11;:40;;;;21145:47;;21043:157;;;:::o;37754:174::-;37811:4;37854:7;37835:15;:13;:15::i;:::-;:26;;:53;;;;;37875:13;;37865:7;:23;37835:53;:85;;;;;37893:11;:20;37905:7;37893:20;;;;;;;;;;;:27;;;;;;;;;;;;37892:28;37835:85;37828:92;;37754:174;;;:::o;6983:98::-;7036:7;7063:10;7056:17;;6983:98;:::o;45911:196::-;46053:2;46026:15;:24;46042:7;46026:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46091:7;46087:2;46071:28;;46080:5;46071:28;;;;;;;;;;;;45911:196;;;:::o;30175:92::-;30231:7;30175:92;:::o;40854:2130::-;40969:35;41007:21;41020:7;41007:12;:21::i;:::-;40969:59;;41067:4;41045:26;;:13;:18;;;:26;;;41041:67;;41080:28;;;;;;;;;;;;;;41041:67;41121:22;41163:4;41147:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;41184:36;41201:4;41207:12;:10;:12::i;:::-;41184:16;:36::i;:::-;41147:73;:126;;;;41261:12;:10;:12::i;:::-;41237:36;;:20;41249:7;41237:11;:20::i;:::-;:36;;;41147:126;41121:153;;41292:17;41287:66;;41318:35;;;;;;;;;;;;;;41287:66;41382:1;41368:16;;:2;:16;;;41364:52;;41393:23;;;;;;;;;;;;;;41364:52;41429:43;41451:4;41457:2;41461:7;41470:1;41429:21;:43::i;:::-;41537:35;41554:1;41558:7;41567:4;41537:8;:35::i;:::-;41898:1;41868:12;:18;41881:4;41868:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41942:1;41914:12;:16;41927:2;41914:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41960:31;41994:11;:20;42006:7;41994:20;;;;;;;;;;;41960:54;;42045:2;42029:8;:13;;;:18;;;;;;;;;;;;;;;;;;42095:15;42062:8;:23;;;:49;;;;;;;;;;;;;;;;;;42363:19;42395:1;42385:7;:11;42363:33;;42411:31;42445:11;:24;42457:11;42445:24;;;;;;;;;;;42411:58;;42513:1;42488:27;;:8;:13;;;;;;;;;;;;:27;;;42484:384;;42698:13;;42683:11;:28;42679:174;;42752:4;42736:8;:13;;;:20;;;;;;;;;;;;;;;;;;42805:13;:28;;;42779:8;:23;;;:54;;;;;;;;;;;;;;;;;;42679:174;42484:384;41843:1036;;;42915:7;42911:2;42896:27;;42905:4;42896:27;;;;;;;;;;;;42934:42;42955:4;42961:2;42965:7;42974:1;42934:20;:42::i;:::-;40958:2026;;40854:2130;;;:::o;12221:317::-;12336:6;12311:21;:31;;12303:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12390:12;12408:9;:14;;12430:6;12408:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12389:52;;;12460:7;12452:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;12292:246;12221:317;;:::o;37936:104::-;38005:27;38015:2;38019:8;38005:27;;;;;;;;;;;;:9;:27::i;:::-;37936:104;;:::o;32902:1109::-;32964:21;;:::i;:::-;32998:12;33013:7;32998:22;;33081:4;33062:15;:13;:15::i;:::-;:23;;:47;;;;;33096:13;;33089:4;:20;33062:47;33058:886;;;33130:31;33164:11;:17;33176:4;33164:17;;;;;;;;;;;33130:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33205:9;:16;;;33200:729;;33276:1;33250:28;;:9;:14;;;:28;;;33246:101;;33314:9;33307:16;;;;;;33246:101;33649:261;33656:4;33649:261;;;33689:6;;;;;;;;33734:11;:17;33746:4;33734:17;;;;;;;;;;;33722:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33808:1;33782:28;;:9;:14;;;:28;;;33778:109;;33850:9;33843:16;;;;;;33778:109;33649:261;;;33200:729;33111:833;33058:886;33972:31;;;;;;;;;;;;;;32902:1109;;;;:::o;9529:191::-;9603:16;9622:6;;;;;;;;;;;9603:25;;9648:8;9639:6;;:17;;;;;;;;;;;;;;;;;;9703:8;9672:40;;9693:8;9672:40;;;;;;;;;;;;9592:128;9529:191;:::o;50034:120::-;50141:5;50113:16;:24;50130:6;50113:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;50034:120;;:::o;10960:326::-;11020:4;11277:1;11255:7;:19;;;:23;11248:30;;10960:326;;;:::o;46599:667::-;46762:4;46799:2;46783:36;;;46820:12;:10;:12::i;:::-;46834:4;46840:7;46849:5;46783:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46779:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47034:1;47017:6;:13;:18;47013:235;;47063:40;;;;;;;;;;;;;;47013:235;47206:6;47200:13;47191:6;47187:2;47183:15;47176:38;46779:480;46912:45;;;46902:55;;;:6;:55;;;;46895:62;;;46599:667;;;;;;:::o;50185:109::-;50245:13;50278:8;50271:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50185:109;:::o;4545:723::-;4601:13;4831:1;4822:5;:10;4818:53;;4849:10;;;;;;;;;;;;;;;;;;;;;4818:53;4881:12;4896:5;4881:20;;4912:14;4937:78;4952:1;4944:4;:9;4937:78;;4970:8;;;;;:::i;:::-;;;;5001:2;4993:10;;;;;:::i;:::-;;;4937:78;;;5025:19;5057:6;5047:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5025:39;;5075:154;5091:1;5082:5;:10;5075:154;;5119:1;5109:11;;;;;:::i;:::-;;;5186:2;5178:5;:10;;;;:::i;:::-;5165:2;:24;;;;:::i;:::-;5152:39;;5135:6;5142;5135:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;5215:2;5206:11;;;;;:::i;:::-;;;5075:154;;;5253:6;5239:21;;;;;4545:723;;;;:::o;47914:159::-;;;;;:::o;48732:158::-;;;;;:::o;38403:163::-;38526:32;38532:2;38536:8;38546:5;38553:4;38526:5;:32::i;:::-;38403:163;;;:::o;38825:1775::-;38964:20;38987:13;;38964:36;;39029:1;39015:16;;:2;:16;;;39011:48;;39040:19;;;;;;;;;;;;;;39011:48;39086:1;39074:8;:13;39070:44;;39096:18;;;;;;;;;;;;;;39070:44;39127:61;39157:1;39161:2;39165:12;39179:8;39127:21;:61::i;:::-;39500:8;39465:12;:16;39478:2;39465:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39564:8;39524:12;:16;39537:2;39524:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39623:2;39590:11;:25;39602:12;39590:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39690:15;39640:11;:25;39652:12;39640:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39723:20;39746:12;39723:35;;39773:11;39802:8;39787:12;:23;39773:37;;39831:4;:23;;;;;39839:15;:2;:13;;;:15::i;:::-;39831:23;39827:641;;;39875:314;39931:12;39927:2;39906:38;;39923:1;39906:38;;;;;;;;;;;;39972:69;40011:1;40015:2;40019:14;;;;;;40035:5;39972:30;:69::i;:::-;39967:174;;40077:40;;;;;;;;;;;;;;39967:174;40184:3;40168:12;:19;39875:314;;40270:12;40253:13;;:29;40249:43;;40284:8;;;40249:43;39827:641;;;40333:120;40389:14;;;;;;40385:2;40364:40;;40381:1;40364:40;;;;;;;;;;;;40448:3;40432:12;:19;40333:120;;39827:641;40498:12;40482:13;:28;;;;39440:1082;;40532:60;40561:1;40565:2;40569:12;40583:8;40532:20;:60::i;:::-;38953:1647;38825:1775;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:323::-;9145:6;9194:2;9182:9;9173:7;9169:23;9165:32;9162:119;;;9200:79;;:::i;:::-;9162:119;9320:1;9345:50;9387:7;9378:6;9367:9;9363:22;9345:50;:::i;:::-;9335:60;;9291:114;9089:323;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:180::-;12468:77;12465:1;12458:88;12565:4;12562:1;12555:15;12589:4;12586:1;12579:15;12606:320;12650:6;12687:1;12681:4;12677:12;12667:22;;12734:1;12728:4;12724:12;12755:18;12745:81;;12811:4;12803:6;12799:17;12789:27;;12745:81;12873:2;12865:6;12862:14;12842:18;12839:38;12836:84;;12892:18;;:::i;:::-;12836:84;12657:269;12606:320;;;:::o;12932:182::-;13072:34;13068:1;13060:6;13056:14;13049:58;12932:182;:::o;13120:366::-;13262:3;13283:67;13347:2;13342:3;13283:67;:::i;:::-;13276:74;;13359:93;13448:3;13359:93;:::i;:::-;13477:2;13472:3;13468:12;13461:19;;13120:366;;;:::o;13492:419::-;13658:4;13696:2;13685:9;13681:18;13673:26;;13745:9;13739:4;13735:20;13731:1;13720:9;13716:17;13709:47;13773:131;13899:4;13773:131;:::i;:::-;13765:139;;13492:419;;;:::o;13917:181::-;14057:33;14053:1;14045:6;14041:14;14034:57;13917:181;:::o;14104:366::-;14246:3;14267:67;14331:2;14326:3;14267:67;:::i;:::-;14260:74;;14343:93;14432:3;14343:93;:::i;:::-;14461:2;14456:3;14452:12;14445:19;;14104:366;;;:::o;14476:419::-;14642:4;14680:2;14669:9;14665:18;14657:26;;14729:9;14723:4;14719:20;14715:1;14704:9;14700:17;14693:47;14757:131;14883:4;14757:131;:::i;:::-;14749:139;;14476:419;;;:::o;14901:180::-;14949:77;14946:1;14939:88;15046:4;15043:1;15036:15;15070:4;15067:1;15060:15;15087:180;15135:77;15132:1;15125:88;15232:4;15229:1;15222:15;15256:4;15253:1;15246:15;15273:185;15313:1;15330:20;15348:1;15330:20;:::i;:::-;15325:25;;15364:20;15382:1;15364:20;:::i;:::-;15359:25;;15403:1;15393:35;;15408:18;;:::i;:::-;15393:35;15450:1;15447;15443:9;15438:14;;15273:185;;;;:::o;15464:170::-;15604:22;15600:1;15592:6;15588:14;15581:46;15464:170;:::o;15640:366::-;15782:3;15803:67;15867:2;15862:3;15803:67;:::i;:::-;15796:74;;15879:93;15968:3;15879:93;:::i;:::-;15997:2;15992:3;15988:12;15981:19;;15640:366;;;:::o;16012:419::-;16178:4;16216:2;16205:9;16201:18;16193:26;;16265:9;16259:4;16255:20;16251:1;16240:9;16236:17;16229:47;16293:131;16419:4;16293:131;:::i;:::-;16285:139;;16012:419;;;:::o;16437:191::-;16477:3;16496:20;16514:1;16496:20;:::i;:::-;16491:25;;16530:20;16548:1;16530:20;:::i;:::-;16525:25;;16573:1;16570;16566:9;16559:16;;16594:3;16591:1;16588:10;16585:36;;;16601:18;;:::i;:::-;16585:36;16437:191;;;;:::o;16634:170::-;16774:22;16770:1;16762:6;16758:14;16751:46;16634:170;:::o;16810:366::-;16952:3;16973:67;17037:2;17032:3;16973:67;:::i;:::-;16966:74;;17049:93;17138:3;17049:93;:::i;:::-;17167:2;17162:3;17158:12;17151:19;;16810:366;;;:::o;17182:419::-;17348:4;17386:2;17375:9;17371:18;17363:26;;17435:9;17429:4;17425:20;17421:1;17410:9;17406:17;17399:47;17463:131;17589:4;17463:131;:::i;:::-;17455:139;;17182:419;;;:::o;17607:166::-;17747:18;17743:1;17735:6;17731:14;17724:42;17607:166;:::o;17779:366::-;17921:3;17942:67;18006:2;18001:3;17942:67;:::i;:::-;17935:74;;18018:93;18107:3;18018:93;:::i;:::-;18136:2;18131:3;18127:12;18120:19;;17779:366;;;:::o;18151:419::-;18317:4;18355:2;18344:9;18340:18;18332:26;;18404:9;18398:4;18394:20;18390:1;18379:9;18375:17;18368:47;18432:131;18558:4;18432:131;:::i;:::-;18424:139;;18151:419;;;:::o;18576:141::-;18625:4;18648:3;18640:11;;18671:3;18668:1;18661:14;18705:4;18702:1;18692:18;18684:26;;18576:141;;;:::o;18723:93::-;18760:6;18807:2;18802;18795:5;18791:14;18787:23;18777:33;;18723:93;;;:::o;18822:107::-;18866:8;18916:5;18910:4;18906:16;18885:37;;18822:107;;;;:::o;18935:393::-;19004:6;19054:1;19042:10;19038:18;19077:97;19107:66;19096:9;19077:97;:::i;:::-;19195:39;19225:8;19214:9;19195:39;:::i;:::-;19183:51;;19267:4;19263:9;19256:5;19252:21;19243:30;;19316:4;19306:8;19302:19;19295:5;19292:30;19282:40;;19011:317;;18935:393;;;;;:::o;19334:60::-;19362:3;19383:5;19376:12;;19334:60;;;:::o;19400:142::-;19450:9;19483:53;19501:34;19510:24;19528:5;19510:24;:::i;:::-;19501:34;:::i;:::-;19483:53;:::i;:::-;19470:66;;19400:142;;;:::o;19548:75::-;19591:3;19612:5;19605:12;;19548:75;;;:::o;19629:269::-;19739:39;19770:7;19739:39;:::i;:::-;19800:91;19849:41;19873:16;19849:41;:::i;:::-;19841:6;19834:4;19828:11;19800:91;:::i;:::-;19794:4;19787:105;19705:193;19629:269;;;:::o;19904:73::-;19949:3;19904:73;:::o;19983:189::-;20060:32;;:::i;:::-;20101:65;20159:6;20151;20145:4;20101:65;:::i;:::-;20036:136;19983:189;;:::o;20178:186::-;20238:120;20255:3;20248:5;20245:14;20238:120;;;20309:39;20346:1;20339:5;20309:39;:::i;:::-;20282:1;20275:5;20271:13;20262:22;;20238:120;;;20178:186;;:::o;20370:543::-;20471:2;20466:3;20463:11;20460:446;;;20505:38;20537:5;20505:38;:::i;:::-;20589:29;20607:10;20589:29;:::i;:::-;20579:8;20575:44;20772:2;20760:10;20757:18;20754:49;;;20793:8;20778:23;;20754:49;20816:80;20872:22;20890:3;20872:22;:::i;:::-;20862:8;20858:37;20845:11;20816:80;:::i;:::-;20475:431;;20460:446;20370:543;;;:::o;20919:117::-;20973:8;21023:5;21017:4;21013:16;20992:37;;20919:117;;;;:::o;21042:169::-;21086:6;21119:51;21167:1;21163:6;21155:5;21152:1;21148:13;21119:51;:::i;:::-;21115:56;21200:4;21194;21190:15;21180:25;;21093:118;21042:169;;;;:::o;21216:295::-;21292:4;21438:29;21463:3;21457:4;21438:29;:::i;:::-;21430:37;;21500:3;21497:1;21493:11;21487:4;21484:21;21476:29;;21216:295;;;;:::o;21516:1395::-;21633:37;21666:3;21633:37;:::i;:::-;21735:18;21727:6;21724:30;21721:56;;;21757:18;;:::i;:::-;21721:56;21801:38;21833:4;21827:11;21801:38;:::i;:::-;21886:67;21946:6;21938;21932:4;21886:67;:::i;:::-;21980:1;22004:4;21991:17;;22036:2;22028:6;22025:14;22053:1;22048:618;;;;22710:1;22727:6;22724:77;;;22776:9;22771:3;22767:19;22761:26;22752:35;;22724:77;22827:67;22887:6;22880:5;22827:67;:::i;:::-;22821:4;22814:81;22683:222;22018:887;;22048:618;22100:4;22096:9;22088:6;22084:22;22134:37;22166:4;22134:37;:::i;:::-;22193:1;22207:208;22221:7;22218:1;22215:14;22207:208;;;22300:9;22295:3;22291:19;22285:26;22277:6;22270:42;22351:1;22343:6;22339:14;22329:24;;22398:2;22387:9;22383:18;22370:31;;22244:4;22241:1;22237:12;22232:17;;22207:208;;;22443:6;22434:7;22431:19;22428:179;;;22501:9;22496:3;22492:19;22486:26;22544:48;22586:4;22578:6;22574:17;22563:9;22544:48;:::i;:::-;22536:6;22529:64;22451:156;22428:179;22653:1;22649;22641:6;22637:14;22633:22;22627:4;22620:36;22055:611;;;22018:887;;21608:1303;;;21516:1395;;:::o;22917:169::-;23057:21;23053:1;23045:6;23041:14;23034:45;22917:169;:::o;23092:366::-;23234:3;23255:67;23319:2;23314:3;23255:67;:::i;:::-;23248:74;;23331:93;23420:3;23331:93;:::i;:::-;23449:2;23444:3;23440:12;23433:19;;23092:366;;;:::o;23464:419::-;23630:4;23668:2;23657:9;23653:18;23645:26;;23717:9;23711:4;23707:20;23703:1;23692:9;23688:17;23681:47;23745:131;23871:4;23745:131;:::i;:::-;23737:139;;23464:419;;;:::o;23889:410::-;23929:7;23952:20;23970:1;23952:20;:::i;:::-;23947:25;;23986:20;24004:1;23986:20;:::i;:::-;23981:25;;24041:1;24038;24034:9;24063:30;24081:11;24063:30;:::i;:::-;24052:41;;24242:1;24233:7;24229:15;24226:1;24223:22;24203:1;24196:9;24176:83;24153:139;;24272:18;;:::i;:::-;24153:139;23937:362;23889:410;;;;:::o;24305:194::-;24345:4;24365:20;24383:1;24365:20;:::i;:::-;24360:25;;24399:20;24417:1;24399:20;:::i;:::-;24394:25;;24443:1;24440;24436:9;24428:17;;24467:1;24461:4;24458:11;24455:37;;;24472:18;;:::i;:::-;24455:37;24305:194;;;;:::o;24505:169::-;24645:21;24641:1;24633:6;24629:14;24622:45;24505:169;:::o;24680:366::-;24822:3;24843:67;24907:2;24902:3;24843:67;:::i;:::-;24836:74;;24919:93;25008:3;24919:93;:::i;:::-;25037:2;25032:3;25028:12;25021:19;;24680:366;;;:::o;25052:419::-;25218:4;25256:2;25245:9;25241:18;25233:26;;25305:9;25299:4;25295:20;25291:1;25280:9;25276:17;25269:47;25333:131;25459:4;25333:131;:::i;:::-;25325:139;;25052:419;;;:::o;25477:172::-;25617:24;25613:1;25605:6;25601:14;25594:48;25477:172;:::o;25655:366::-;25797:3;25818:67;25882:2;25877:3;25818:67;:::i;:::-;25811:74;;25894:93;25983:3;25894:93;:::i;:::-;26012:2;26007:3;26003:12;25996:19;;25655:366;;;:::o;26027:419::-;26193:4;26231:2;26220:9;26216:18;26208:26;;26280:9;26274:4;26270:20;26266:1;26255:9;26251:17;26244:47;26308:131;26434:4;26308:131;:::i;:::-;26300:139;;26027:419;;;:::o;26452:148::-;26554:11;26591:3;26576:18;;26452:148;;;;:::o;26606:390::-;26712:3;26740:39;26773:5;26740:39;:::i;:::-;26795:89;26877:6;26872:3;26795:89;:::i;:::-;26788:96;;26893:65;26951:6;26946:3;26939:4;26932:5;26928:16;26893:65;:::i;:::-;26983:6;26978:3;26974:16;26967:23;;26716:280;26606:390;;;;:::o;27002:435::-;27182:3;27204:95;27295:3;27286:6;27204:95;:::i;:::-;27197:102;;27316:95;27407:3;27398:6;27316:95;:::i;:::-;27309:102;;27428:3;27421:10;;27002:435;;;;;:::o;27443:225::-;27583:34;27579:1;27571:6;27567:14;27560:58;27652:8;27647:2;27639:6;27635:15;27628:33;27443:225;:::o;27674:366::-;27816:3;27837:67;27901:2;27896:3;27837:67;:::i;:::-;27830:74;;27913:93;28002:3;27913:93;:::i;:::-;28031:2;28026:3;28022:12;28015:19;;27674:366;;;:::o;28046:419::-;28212:4;28250:2;28239:9;28235:18;28227:26;;28299:9;28293:4;28289:20;28285:1;28274:9;28270:17;28263:47;28327:131;28453:4;28327:131;:::i;:::-;28319:139;;28046:419;;;:::o;28471:179::-;28611:31;28607:1;28599:6;28595:14;28588:55;28471:179;:::o;28656:366::-;28798:3;28819:67;28883:2;28878:3;28819:67;:::i;:::-;28812:74;;28895:93;28984:3;28895:93;:::i;:::-;29013:2;29008:3;29004:12;28997:19;;28656:366;;;:::o;29028:419::-;29194:4;29232:2;29221:9;29217:18;29209:26;;29281:9;29275:4;29271:20;29267:1;29256:9;29252:17;29245:47;29309:131;29435:4;29309:131;:::i;:::-;29301:139;;29028:419;;;:::o;29453:147::-;29554:11;29591:3;29576:18;;29453:147;;;;:::o;29606:114::-;;:::o;29726:398::-;29885:3;29906:83;29987:1;29982:3;29906:83;:::i;:::-;29899:90;;29998:93;30087:3;29998:93;:::i;:::-;30116:1;30111:3;30107:11;30100:18;;29726:398;;;:::o;30130:379::-;30314:3;30336:147;30479:3;30336:147;:::i;:::-;30329:154;;30500:3;30493:10;;30130:379;;;:::o;30515:245::-;30655:34;30651:1;30643:6;30639:14;30632:58;30724:28;30719:2;30711:6;30707:15;30700:53;30515:245;:::o;30766:366::-;30908:3;30929:67;30993:2;30988:3;30929:67;:::i;:::-;30922:74;;31005:93;31094:3;31005:93;:::i;:::-;31123:2;31118:3;31114:12;31107:19;;30766:366;;;:::o;31138:419::-;31304:4;31342:2;31331:9;31327:18;31319:26;;31391:9;31385:4;31381:20;31377:1;31366:9;31362:17;31355:47;31419:131;31545:4;31419:131;:::i;:::-;31411:139;;31138:419;;;:::o;31563:98::-;31614:6;31648:5;31642:12;31632:22;;31563:98;;;:::o;31667:168::-;31750:11;31784:6;31779:3;31772:19;31824:4;31819:3;31815:14;31800:29;;31667:168;;;;:::o;31841:373::-;31927:3;31955:38;31987:5;31955:38;:::i;:::-;32009:70;32072:6;32067:3;32009:70;:::i;:::-;32002:77;;32088:65;32146:6;32141:3;32134:4;32127:5;32123:16;32088:65;:::i;:::-;32178:29;32200:6;32178:29;:::i;:::-;32173:3;32169:39;32162:46;;31931:283;31841:373;;;;:::o;32220:640::-;32415:4;32453:3;32442:9;32438:19;32430:27;;32467:71;32535:1;32524:9;32520:17;32511:6;32467:71;:::i;:::-;32548:72;32616:2;32605:9;32601:18;32592:6;32548:72;:::i;:::-;32630;32698:2;32687:9;32683:18;32674:6;32630:72;:::i;:::-;32749:9;32743:4;32739:20;32734:2;32723:9;32719:18;32712:48;32777:76;32848:4;32839:6;32777:76;:::i;:::-;32769:84;;32220:640;;;;;;;:::o;32866:141::-;32922:5;32953:6;32947:13;32938:22;;32969:32;32995:5;32969:32;:::i;:::-;32866:141;;;;:::o;33013:349::-;33082:6;33131:2;33119:9;33110:7;33106:23;33102:32;33099:119;;;33137:79;;:::i;:::-;33099:119;33257:1;33282:63;33337:7;33328:6;33317:9;33313:22;33282:63;:::i;:::-;33272:73;;33228:127;33013:349;;;;:::o;33368:233::-;33407:3;33430:24;33448:5;33430:24;:::i;:::-;33421:33;;33476:66;33469:5;33466:77;33463:103;;33546:18;;:::i;:::-;33463:103;33593:1;33586:5;33582:13;33575:20;;33368:233;;;:::o;33607:176::-;33639:1;33656:20;33674:1;33656:20;:::i;:::-;33651:25;;33690:20;33708:1;33690:20;:::i;:::-;33685:25;;33729:1;33719:35;;33734:18;;:::i;:::-;33719:35;33775:1;33772;33768:9;33763:14;;33607:176;;;;:::o;33789:180::-;33837:77;33834:1;33827:88;33934:4;33931:1;33924:15;33958:4;33955:1;33948:15

Swarm Source

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