ETH Price: $3,329.05 (+2.12%)
Gas: 2 Gwei

Token

r0gp0ll (r0gp0ll)
 

Overview

Max Total Supply

662 r0gp0ll

Holders

403

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 r0gp0ll
0x6BaFDA2192811B823fc3D4A2078E0A7024E9f73B
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:
r0gp0ll

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-18
*/

// 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 != 1 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")): "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        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 r0gp0ll 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("r0gp0ll", "r0gp0ll") {
        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 =
        0x0566f9478B4da178684b619609399D438E35C0e4;

    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"}]

60806040523480156200001157600080fd5b5060405162004531380380620045318339818101604052810190620000379190620003a7565b6040518060400160405280600781526020017f72306770306c6c000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f72306770306c6c000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb9291906200024b565b508060039080519060200190620000d49291906200024b565b50620000e56200017860201b60201c565b60008190555050506200010d620001016200017d60201b60201c565b6200018560201b60201c565b600160098190555086600a8190555085600b8190555084600c90805190602001906200013b9291906200024b565b5083600d8190555082600e8190555081600f60006101000a81548160ff021916908315150217905550806010819055505050505050505062000647565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002599062000524565b90600052602060002090601f0160209004810192826200027d5760008555620002c9565b82601f106200029857805160ff1916838001178555620002c9565b82800160010185558215620002c9579182015b82811115620002c8578251825591602001919060010190620002ab565b5b509050620002d89190620002dc565b5090565b5b80821115620002f7576000816000905550600101620002dd565b5090565b6000620003126200030c84620004a2565b62000479565b905082815260208101848484011115620003315762000330620005f3565b5b6200033e848285620004ee565b509392505050565b600081519050620003578162000613565b92915050565b600082601f830112620003755762000374620005ee565b5b815162000387848260208601620002fb565b91505092915050565b600081519050620003a1816200062d565b92915050565b600080600080600080600060e0888a031215620003c957620003c8620005fd565b5b6000620003d98a828b0162000390565b9750506020620003ec8a828b0162000390565b965050604088015167ffffffffffffffff81111562000410576200040f620005f8565b5b6200041e8a828b016200035d565b9550506060620004318a828b0162000390565b9450506080620004448a828b0162000390565b93505060a0620004578a828b0162000346565b92505060c06200046a8a828b0162000390565b91505092959891949750929550565b60006200048562000498565b90506200049382826200055a565b919050565b6000604051905090565b600067ffffffffffffffff821115620004c057620004bf620005bf565b5b620004cb8262000602565b9050602081019050919050565b60008115159050919050565b6000819050919050565b60005b838110156200050e578082015181840152602081019050620004f1565b838111156200051e576000848401525b50505050565b600060028204905060018216806200053d57607f821691505b6020821081141562000554576200055362000590565b5b50919050565b620005658262000602565b810181811067ffffffffffffffff82111715620005875762000586620005bf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200061e81620004d8565b81146200062a57600080fd5b50565b6200063881620004e4565b81146200064457600080fd5b50565b613eda80620006576000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638d859f3e116100e75780638d859f3e146105a05780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a0712d681461064a57610204565b8063715018a61461050c57806376d02b7114610523578063841718a61461054e5780638b85e43d1461057757610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906131b6565b6107ef565b60405161023d91906135c8565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b60405161026891906135e3565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613259565b610963565b6040516102a59190613561565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613149565b6109df565b005b3480156102e357600080fd5b506102ec610aea565b6040516102f99190613765565b60405180910390f35b34801561030e57600080fd5b50610317610af0565b6040516103249190613765565b60405180910390f35b34801561033957600080fd5b50610342610af6565b60405161034f9190613765565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613033565b610b0d565b005b34801561038d57600080fd5b50610396610b1d565b6040516103a39190613765565b60405180910390f35b3480156103b857600080fd5b506103c1610b23565b005b3480156103cf57600080fd5b506103d8610c27565b6040516103e59190613765565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613149565b610c2d565b005b34801561042357600080fd5b5061043e60048036038101906104399190613033565b610d5c565b005b34801561044c57600080fd5b5061046760048036038101906104629190613210565b610d7c565b005b34801561047557600080fd5b50610490600480360381019061048b9190613259565b610e62565b005b34801561049e57600080fd5b506104b960048036038101906104b49190613259565b610ee8565b6040516104c69190613561565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190612fc6565b610efe565b6040516105039190613765565b60405180910390f35b34801561051857600080fd5b50610521610fce565b005b34801561052f57600080fd5b50610538611056565b60405161054591906135c8565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190613189565b611069565b005b34801561058357600080fd5b5061059e60048036038101906105999190613259565b611102565b005b3480156105ac57600080fd5b506105b5611188565b6040516105c29190613765565b60405180910390f35b3480156105d757600080fd5b506105e061118e565b6040516105ed9190613561565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190613259565b6111b8565b005b34801561062b57600080fd5b5061063461123e565b60405161064191906135e3565b60405180910390f35b610664600480360381019061065f9190613259565b6112d0565b005b34801561067257600080fd5b5061068d60048036038101906106889190613109565b6114e7565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613259565b61165f565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613086565b6116e5565b005b3480156106ed57600080fd5b5061070860048036038101906107039190613259565b611761565b005b34801561071657600080fd5b50610731600480360381019061072c9190613259565b611870565b60405161073e91906135e3565b60405180910390f35b34801561075357600080fd5b5061075c61190f565b005b34801561076a57600080fd5b5061078560048036038101906107809190612ff3565b6119a8565b60405161079291906135c8565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190612fc6565b611a3c565b005b3480156107d057600080fd5b506107d9611b34565b6040516107e691906135c8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611b47565b5b9050919050565b6060600280546108e090613a20565b80601f016020809104026020016040519081016040528092919081815260200182805461090c90613a20565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611bb1565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610ee8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a52576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a71611bff565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa35750610aa181610a9c611bff565b6119a8565b155b15610ada576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae5838383611c07565b505050565b600e5481565b600d5481565b6000610b00611cb9565b6001546000540303905090565b610b18838383611cbe565b505050565b600b5481565b610b2b611bff565b73ffffffffffffffffffffffffffffffffffffffff16610b4961118e565b73ffffffffffffffffffffffffffffffffffffffff1614610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690613685565b60405180910390fd5b60026009541415610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90613725565b60405180910390fd5b60026009819055506000479050610c1c730566f9478b4da178684b619609399d438e35c0e4600183610c1791906138ab565b612174565b506001600981905550565b60105481565b80600081118015610c405750600e548111155b610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690613625565b60405180910390fd5b600b5481600054610c909190613855565b1115610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc890613705565b60405180910390fd5b610cd9611bff565b73ffffffffffffffffffffffffffffffffffffffff16610cf761118e565b73ffffffffffffffffffffffffffffffffffffffff1614610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490613685565b60405180910390fd5b610d578383612268565b505050565b610d77838383604051806020016040528060008152506116e5565b505050565b610d84611bff565b73ffffffffffffffffffffffffffffffffffffffff16610da261118e565b73ffffffffffffffffffffffffffffffffffffffff1614610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def90613685565b60405180910390fd5b601160009054906101000a900460ff1615610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f906136e5565b60405180910390fd5b80600c9080519060200190610e5e929190612d97565b5050565b610e6a611bff565b73ffffffffffffffffffffffffffffffffffffffff16610e8861118e565b73ffffffffffffffffffffffffffffffffffffffff1614610ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed590613685565b60405180910390fd5b80600e8190555050565b6000610ef382612286565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f66576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fd6611bff565b73ffffffffffffffffffffffffffffffffffffffff16610ff461118e565b73ffffffffffffffffffffffffffffffffffffffff161461104a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104190613685565b60405180910390fd5b6110546000612515565b565b600f60009054906101000a900460ff1681565b611071611bff565b73ffffffffffffffffffffffffffffffffffffffff1661108f61118e565b73ffffffffffffffffffffffffffffffffffffffff16146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90613685565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b61110a611bff565b73ffffffffffffffffffffffffffffffffffffffff1661112861118e565b73ffffffffffffffffffffffffffffffffffffffff161461117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613685565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111c0611bff565b73ffffffffffffffffffffffffffffffffffffffff166111de61118e565b73ffffffffffffffffffffffffffffffffffffffff1614611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90613685565b60405180910390fd5b80600a8190555050565b60606003805461124d90613a20565b80601f016020809104026020016040519081016040528092919081815260200182805461127990613a20565b80156112c65780601f1061129b576101008083540402835291602001916112c6565b820191906000526020600020905b8154815290600101906020018083116112a957829003601f168201915b5050505050905090565b806000811180156112e35750600e548111155b611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613625565b60405180910390fd5b600b54816000546113339190613855565b1115611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90613705565b60405180910390fd5b600f60009054906101000a900460ff166113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba906136a5565b60405180910390fd5b600082600a546113d391906138dc565b90506010546000541015611495576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546114309190613936565b905060008111156114935780841061146c57600a548161145091906138dc565b8261145b9190613936565b915061146733826125db565b611492565b600a548461147a91906138dc565b826114859190613936565b915061149133856125db565b5b5b505b803410156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90613745565b60405180910390fd5b6114e23384612268565b505050565b6114ef611bff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611554576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611561611bff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661160e611bff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161165391906135c8565b60405180910390a35050565b611667611bff565b73ffffffffffffffffffffffffffffffffffffffff1661168561118e565b73ffffffffffffffffffffffffffffffffffffffff16146116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290613685565b60405180910390fd5b80600d8190555050565b6116f0848484611cbe565b61170f8373ffffffffffffffffffffffffffffffffffffffff16612635565b8015611724575061172284848484612658565b155b1561175b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611769611bff565b73ffffffffffffffffffffffffffffffffffffffff1661178761118e565b73ffffffffffffffffffffffffffffffffffffffff16146117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490613685565b60405180910390fd5b600b548110611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906136c5565b60405180910390fd5b600054811015611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d906136c5565b60405180910390fd5b80600b8190555050565b606061187b82611bb1565b6118b1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118bb6127b8565b90506001815114156118dc5760405180602001604052806000815250611907565b806118e68461284a565b6040516020016118f792919061351d565b6040516020818303038152906040525b915050919050565b611917611bff565b73ffffffffffffffffffffffffffffffffffffffff1661193561118e565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613685565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a44611bff565b73ffffffffffffffffffffffffffffffffffffffff16611a6261118e565b73ffffffffffffffffffffffffffffffffffffffff1614611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613685565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90613605565b60405180910390fd5b611b3181612515565b50565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611bbc611cb9565b11158015611bcb575060005482105b8015611bf8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cc982612286565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d34576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d55611bff565b73ffffffffffffffffffffffffffffffffffffffff161480611d845750611d8385611d7e611bff565b6119a8565b5b80611dc95750611d92611bff565b73ffffffffffffffffffffffffffffffffffffffff16611db184610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e02576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e69576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e7685858560016129ab565b611e8260008487611c07565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561210257600054821461210157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461216d85858560016129b1565b5050505050565b804710156121b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ae90613665565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121dd9061354c565b60006040518083038185875af1925050503d806000811461221a576040519150601f19603f3d011682016040523d82523d6000602084013e61221f565b606091505b5050905080612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a90613645565b60405180910390fd5b505050565b6122828282604051806020016040528060008152506129b7565b5050565b61228e612e1d565b60008290508061229c611cb9565b111580156122ab575060005481105b156124de576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124dc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123c0578092505050612510565b5b6001156124db57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124d6578092505050612510565b6123c1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461262a9190613855565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261267e611bff565b8786866040518563ffffffff1660e01b81526004016126a0949392919061357c565b602060405180830381600087803b1580156126ba57600080fd5b505af19250505080156126eb57506040513d601f19601f820116820180604052508101906126e891906131e3565b60015b612765573d806000811461271b576040519150601f19603f3d011682016040523d82523d6000602084013e612720565b606091505b5060008151141561275d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546127c790613a20565b80601f01602080910402602001604051908101604052809291908181526020018280546127f390613a20565b80156128405780601f1061281557610100808354040283529160200191612840565b820191906000526020600020905b81548152906001019060200180831161282357829003601f168201915b5050505050905090565b60606000821415612892576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129a6565b600082905060005b600082146128c45780806128ad90613a83565b915050600a826128bd91906138ab565b915061289a565b60008167ffffffffffffffff8111156128e0576128df613bb9565b5b6040519080825280601f01601f1916602001820160405280156129125781602001600182028036833780820191505090505b5090505b6000851461299f5760018261292b9190613936565b9150600a8561293a9190613acc565b60306129469190613855565b60f81b81838151811061295c5761295b613b8a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561299891906138ab565b9450612916565b8093505050505b919050565b50505050565b50505050565b6129c483838360016129c9565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a36576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a71576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a7e60008683876129ab565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c485750612c478773ffffffffffffffffffffffffffffffffffffffff16612635565b5b15612d0e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cbd6000888480600101955088612658565b612cf3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612c4e578260005414612d0957600080fd5b612d7a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612d0f575b816000819055505050612d9060008683876129b1565b5050505050565b828054612da390613a20565b90600052602060002090601f016020900481019282612dc55760008555612e0c565b82601f10612dde57805160ff1916838001178555612e0c565b82800160010185558215612e0c579182015b82811115612e0b578251825591602001919060010190612df0565b5b509050612e199190612e60565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e79576000816000905550600101612e61565b5090565b6000612e90612e8b846137a5565b613780565b905082815260208101848484011115612eac57612eab613bed565b5b612eb78482856139de565b509392505050565b6000612ed2612ecd846137d6565b613780565b905082815260208101848484011115612eee57612eed613bed565b5b612ef98482856139de565b509392505050565b600081359050612f1081613e48565b92915050565b600081359050612f2581613e5f565b92915050565b600081359050612f3a81613e76565b92915050565b600081519050612f4f81613e76565b92915050565b600082601f830112612f6a57612f69613be8565b5b8135612f7a848260208601612e7d565b91505092915050565b600082601f830112612f9857612f97613be8565b5b8135612fa8848260208601612ebf565b91505092915050565b600081359050612fc081613e8d565b92915050565b600060208284031215612fdc57612fdb613bf7565b5b6000612fea84828501612f01565b91505092915050565b6000806040838503121561300a57613009613bf7565b5b600061301885828601612f01565b925050602061302985828601612f01565b9150509250929050565b60008060006060848603121561304c5761304b613bf7565b5b600061305a86828701612f01565b935050602061306b86828701612f01565b925050604061307c86828701612fb1565b9150509250925092565b600080600080608085870312156130a05761309f613bf7565b5b60006130ae87828801612f01565b94505060206130bf87828801612f01565b93505060406130d087828801612fb1565b925050606085013567ffffffffffffffff8111156130f1576130f0613bf2565b5b6130fd87828801612f55565b91505092959194509250565b600080604083850312156131205761311f613bf7565b5b600061312e85828601612f01565b925050602061313f85828601612f16565b9150509250929050565b600080604083850312156131605761315f613bf7565b5b600061316e85828601612f01565b925050602061317f85828601612fb1565b9150509250929050565b60006020828403121561319f5761319e613bf7565b5b60006131ad84828501612f16565b91505092915050565b6000602082840312156131cc576131cb613bf7565b5b60006131da84828501612f2b565b91505092915050565b6000602082840312156131f9576131f8613bf7565b5b600061320784828501612f40565b91505092915050565b60006020828403121561322657613225613bf7565b5b600082013567ffffffffffffffff81111561324457613243613bf2565b5b61325084828501612f83565b91505092915050565b60006020828403121561326f5761326e613bf7565b5b600061327d84828501612fb1565b91505092915050565b61328f8161396a565b82525050565b61329e8161397c565b82525050565b60006132af82613807565b6132b9818561381d565b93506132c98185602086016139ed565b6132d281613bfc565b840191505092915050565b60006132e882613812565b6132f28185613839565b93506133028185602086016139ed565b61330b81613bfc565b840191505092915050565b600061332182613812565b61332b818561384a565b935061333b8185602086016139ed565b80840191505092915050565b6000613354602683613839565b915061335f82613c0d565b604082019050919050565b6000613377601483613839565b915061338282613c5c565b602082019050919050565b600061339a603a83613839565b91506133a582613c85565b604082019050919050565b60006133bd601d83613839565b91506133c882613cd4565b602082019050919050565b60006133e060058361384a565b91506133eb82613cfd565b600582019050919050565b6000613403602083613839565b915061340e82613d26565b602082019050919050565b6000613426601383613839565b915061343182613d4f565b602082019050919050565b6000613449601683613839565b915061345482613d78565b602082019050919050565b600061346c601083613839565b915061347782613da1565b602082019050919050565b600061348f60008361382e565b915061349a82613dca565b600082019050919050565b60006134b2601483613839565b91506134bd82613dcd565b602082019050919050565b60006134d5601f83613839565b91506134e082613df6565b602082019050919050565b60006134f8601383613839565b915061350382613e1f565b602082019050919050565b613517816139d4565b82525050565b60006135298285613316565b91506135358284613316565b9150613540826133d3565b91508190509392505050565b600061355782613482565b9150819050919050565b60006020820190506135766000830184613286565b92915050565b60006080820190506135916000830187613286565b61359e6020830186613286565b6135ab604083018561350e565b81810360608301526135bd81846132a4565b905095945050505050565b60006020820190506135dd6000830184613295565b92915050565b600060208201905081810360008301526135fd81846132dd565b905092915050565b6000602082019050818103600083015261361e81613347565b9050919050565b6000602082019050818103600083015261363e8161336a565b9050919050565b6000602082019050818103600083015261365e8161338d565b9050919050565b6000602082019050818103600083015261367e816133b0565b9050919050565b6000602082019050818103600083015261369e816133f6565b9050919050565b600060208201905081810360008301526136be81613419565b9050919050565b600060208201905081810360008301526136de8161343c565b9050919050565b600060208201905081810360008301526136fe8161345f565b9050919050565b6000602082019050818103600083015261371e816134a5565b9050919050565b6000602082019050818103600083015261373e816134c8565b9050919050565b6000602082019050818103600083015261375e816134eb565b9050919050565b600060208201905061377a600083018461350e565b92915050565b600061378a61379b565b90506137968282613a52565b919050565b6000604051905090565b600067ffffffffffffffff8211156137c0576137bf613bb9565b5b6137c982613bfc565b9050602081019050919050565b600067ffffffffffffffff8211156137f1576137f0613bb9565b5b6137fa82613bfc565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613860826139d4565b915061386b836139d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138a05761389f613afd565b5b828201905092915050565b60006138b6826139d4565b91506138c1836139d4565b9250826138d1576138d0613b2c565b5b828204905092915050565b60006138e7826139d4565b91506138f2836139d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392b5761392a613afd565b5b828202905092915050565b6000613941826139d4565b915061394c836139d4565b92508282101561395f5761395e613afd565b5b828203905092915050565b6000613975826139b4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a0b5780820151818401526020810190506139f0565b83811115613a1a576000848401525b50505050565b60006002820490506001821680613a3857607f821691505b60208210811415613a4c57613a4b613b5b565b5b50919050565b613a5b82613bfc565b810181811067ffffffffffffffff82111715613a7a57613a79613bb9565b5b80604052505050565b6000613a8e826139d4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ac157613ac0613afd565b5b600182019050919050565b6000613ad7826139d4565b9150613ae2836139d4565b925082613af257613af1613b2c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613e518161396a565b8114613e5c57600080fd5b50565b613e688161397c565b8114613e7357600080fd5b50565b613e7f81613988565b8114613e8a57600080fd5b50565b613e96816139d4565b8114613ea157600080fd5b5056fea26469706673582212200ec1bbf1771e265e523e73f5a43dd97dbcc9f13d3e3de916eb690948648bb43c64736f6c634300080700330000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569636c796377366e6a786667693370706176357265796b6468757561657576716b6933376364777835357368373766326e6d7836342f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638d859f3e116100e75780638d859f3e146105a05780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a0712d681461064a57610204565b8063715018a61461050c57806376d02b7114610523578063841718a61461054e5780638b85e43d1461057757610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906131b6565b6107ef565b60405161023d91906135c8565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b60405161026891906135e3565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613259565b610963565b6040516102a59190613561565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613149565b6109df565b005b3480156102e357600080fd5b506102ec610aea565b6040516102f99190613765565b60405180910390f35b34801561030e57600080fd5b50610317610af0565b6040516103249190613765565b60405180910390f35b34801561033957600080fd5b50610342610af6565b60405161034f9190613765565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613033565b610b0d565b005b34801561038d57600080fd5b50610396610b1d565b6040516103a39190613765565b60405180910390f35b3480156103b857600080fd5b506103c1610b23565b005b3480156103cf57600080fd5b506103d8610c27565b6040516103e59190613765565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613149565b610c2d565b005b34801561042357600080fd5b5061043e60048036038101906104399190613033565b610d5c565b005b34801561044c57600080fd5b5061046760048036038101906104629190613210565b610d7c565b005b34801561047557600080fd5b50610490600480360381019061048b9190613259565b610e62565b005b34801561049e57600080fd5b506104b960048036038101906104b49190613259565b610ee8565b6040516104c69190613561565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190612fc6565b610efe565b6040516105039190613765565b60405180910390f35b34801561051857600080fd5b50610521610fce565b005b34801561052f57600080fd5b50610538611056565b60405161054591906135c8565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190613189565b611069565b005b34801561058357600080fd5b5061059e60048036038101906105999190613259565b611102565b005b3480156105ac57600080fd5b506105b5611188565b6040516105c29190613765565b60405180910390f35b3480156105d757600080fd5b506105e061118e565b6040516105ed9190613561565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190613259565b6111b8565b005b34801561062b57600080fd5b5061063461123e565b60405161064191906135e3565b60405180910390f35b610664600480360381019061065f9190613259565b6112d0565b005b34801561067257600080fd5b5061068d60048036038101906106889190613109565b6114e7565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613259565b61165f565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613086565b6116e5565b005b3480156106ed57600080fd5b5061070860048036038101906107039190613259565b611761565b005b34801561071657600080fd5b50610731600480360381019061072c9190613259565b611870565b60405161073e91906135e3565b60405180910390f35b34801561075357600080fd5b5061075c61190f565b005b34801561076a57600080fd5b5061078560048036038101906107809190612ff3565b6119a8565b60405161079291906135c8565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190612fc6565b611a3c565b005b3480156107d057600080fd5b506107d9611b34565b6040516107e691906135c8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611b47565b5b9050919050565b6060600280546108e090613a20565b80601f016020809104026020016040519081016040528092919081815260200182805461090c90613a20565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611bb1565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610ee8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a52576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a71611bff565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa35750610aa181610a9c611bff565b6119a8565b155b15610ada576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae5838383611c07565b505050565b600e5481565b600d5481565b6000610b00611cb9565b6001546000540303905090565b610b18838383611cbe565b505050565b600b5481565b610b2b611bff565b73ffffffffffffffffffffffffffffffffffffffff16610b4961118e565b73ffffffffffffffffffffffffffffffffffffffff1614610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690613685565b60405180910390fd5b60026009541415610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90613725565b60405180910390fd5b60026009819055506000479050610c1c730566f9478b4da178684b619609399d438e35c0e4600183610c1791906138ab565b612174565b506001600981905550565b60105481565b80600081118015610c405750600e548111155b610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690613625565b60405180910390fd5b600b5481600054610c909190613855565b1115610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc890613705565b60405180910390fd5b610cd9611bff565b73ffffffffffffffffffffffffffffffffffffffff16610cf761118e565b73ffffffffffffffffffffffffffffffffffffffff1614610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490613685565b60405180910390fd5b610d578383612268565b505050565b610d77838383604051806020016040528060008152506116e5565b505050565b610d84611bff565b73ffffffffffffffffffffffffffffffffffffffff16610da261118e565b73ffffffffffffffffffffffffffffffffffffffff1614610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def90613685565b60405180910390fd5b601160009054906101000a900460ff1615610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f906136e5565b60405180910390fd5b80600c9080519060200190610e5e929190612d97565b5050565b610e6a611bff565b73ffffffffffffffffffffffffffffffffffffffff16610e8861118e565b73ffffffffffffffffffffffffffffffffffffffff1614610ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed590613685565b60405180910390fd5b80600e8190555050565b6000610ef382612286565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f66576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fd6611bff565b73ffffffffffffffffffffffffffffffffffffffff16610ff461118e565b73ffffffffffffffffffffffffffffffffffffffff161461104a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104190613685565b60405180910390fd5b6110546000612515565b565b600f60009054906101000a900460ff1681565b611071611bff565b73ffffffffffffffffffffffffffffffffffffffff1661108f61118e565b73ffffffffffffffffffffffffffffffffffffffff16146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90613685565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b61110a611bff565b73ffffffffffffffffffffffffffffffffffffffff1661112861118e565b73ffffffffffffffffffffffffffffffffffffffff161461117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613685565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111c0611bff565b73ffffffffffffffffffffffffffffffffffffffff166111de61118e565b73ffffffffffffffffffffffffffffffffffffffff1614611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90613685565b60405180910390fd5b80600a8190555050565b60606003805461124d90613a20565b80601f016020809104026020016040519081016040528092919081815260200182805461127990613a20565b80156112c65780601f1061129b576101008083540402835291602001916112c6565b820191906000526020600020905b8154815290600101906020018083116112a957829003601f168201915b5050505050905090565b806000811180156112e35750600e548111155b611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613625565b60405180910390fd5b600b54816000546113339190613855565b1115611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90613705565b60405180910390fd5b600f60009054906101000a900460ff166113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba906136a5565b60405180910390fd5b600082600a546113d391906138dc565b90506010546000541015611495576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546114309190613936565b905060008111156114935780841061146c57600a548161145091906138dc565b8261145b9190613936565b915061146733826125db565b611492565b600a548461147a91906138dc565b826114859190613936565b915061149133856125db565b5b5b505b803410156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90613745565b60405180910390fd5b6114e23384612268565b505050565b6114ef611bff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611554576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611561611bff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661160e611bff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161165391906135c8565b60405180910390a35050565b611667611bff565b73ffffffffffffffffffffffffffffffffffffffff1661168561118e565b73ffffffffffffffffffffffffffffffffffffffff16146116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290613685565b60405180910390fd5b80600d8190555050565b6116f0848484611cbe565b61170f8373ffffffffffffffffffffffffffffffffffffffff16612635565b8015611724575061172284848484612658565b155b1561175b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611769611bff565b73ffffffffffffffffffffffffffffffffffffffff1661178761118e565b73ffffffffffffffffffffffffffffffffffffffff16146117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490613685565b60405180910390fd5b600b548110611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906136c5565b60405180910390fd5b600054811015611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d906136c5565b60405180910390fd5b80600b8190555050565b606061187b82611bb1565b6118b1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118bb6127b8565b90506001815114156118dc5760405180602001604052806000815250611907565b806118e68461284a565b6040516020016118f792919061351d565b6040516020818303038152906040525b915050919050565b611917611bff565b73ffffffffffffffffffffffffffffffffffffffff1661193561118e565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613685565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a44611bff565b73ffffffffffffffffffffffffffffffffffffffff16611a6261118e565b73ffffffffffffffffffffffffffffffffffffffff1614611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613685565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90613605565b60405180910390fd5b611b3181612515565b50565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611bbc611cb9565b11158015611bcb575060005482105b8015611bf8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cc982612286565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d34576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d55611bff565b73ffffffffffffffffffffffffffffffffffffffff161480611d845750611d8385611d7e611bff565b6119a8565b5b80611dc95750611d92611bff565b73ffffffffffffffffffffffffffffffffffffffff16611db184610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e02576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e69576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e7685858560016129ab565b611e8260008487611c07565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561210257600054821461210157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461216d85858560016129b1565b5050505050565b804710156121b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ae90613665565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121dd9061354c565b60006040518083038185875af1925050503d806000811461221a576040519150601f19603f3d011682016040523d82523d6000602084013e61221f565b606091505b5050905080612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a90613645565b60405180910390fd5b505050565b6122828282604051806020016040528060008152506129b7565b5050565b61228e612e1d565b60008290508061229c611cb9565b111580156122ab575060005481105b156124de576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124dc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123c0578092505050612510565b5b6001156124db57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124d6578092505050612510565b6123c1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461262a9190613855565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261267e611bff565b8786866040518563ffffffff1660e01b81526004016126a0949392919061357c565b602060405180830381600087803b1580156126ba57600080fd5b505af19250505080156126eb57506040513d601f19601f820116820180604052508101906126e891906131e3565b60015b612765573d806000811461271b576040519150601f19603f3d011682016040523d82523d6000602084013e612720565b606091505b5060008151141561275d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546127c790613a20565b80601f01602080910402602001604051908101604052809291908181526020018280546127f390613a20565b80156128405780601f1061281557610100808354040283529160200191612840565b820191906000526020600020905b81548152906001019060200180831161282357829003601f168201915b5050505050905090565b60606000821415612892576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129a6565b600082905060005b600082146128c45780806128ad90613a83565b915050600a826128bd91906138ab565b915061289a565b60008167ffffffffffffffff8111156128e0576128df613bb9565b5b6040519080825280601f01601f1916602001820160405280156129125781602001600182028036833780820191505090505b5090505b6000851461299f5760018261292b9190613936565b9150600a8561293a9190613acc565b60306129469190613855565b60f81b81838151811061295c5761295b613b8a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561299891906138ab565b9450612916565b8093505050505b919050565b50505050565b50505050565b6129c483838360016129c9565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a36576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a71576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a7e60008683876129ab565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c485750612c478773ffffffffffffffffffffffffffffffffffffffff16612635565b5b15612d0e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cbd6000888480600101955088612658565b612cf3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612c4e578260005414612d0957600080fd5b612d7a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612d0f575b816000819055505050612d9060008683876129b1565b5050505050565b828054612da390613a20565b90600052602060002090601f016020900481019282612dc55760008555612e0c565b82601f10612dde57805160ff1916838001178555612e0c565b82800160010185558215612e0c579182015b82811115612e0b578251825591602001919060010190612df0565b5b509050612e199190612e60565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e79576000816000905550600101612e61565b5090565b6000612e90612e8b846137a5565b613780565b905082815260208101848484011115612eac57612eab613bed565b5b612eb78482856139de565b509392505050565b6000612ed2612ecd846137d6565b613780565b905082815260208101848484011115612eee57612eed613bed565b5b612ef98482856139de565b509392505050565b600081359050612f1081613e48565b92915050565b600081359050612f2581613e5f565b92915050565b600081359050612f3a81613e76565b92915050565b600081519050612f4f81613e76565b92915050565b600082601f830112612f6a57612f69613be8565b5b8135612f7a848260208601612e7d565b91505092915050565b600082601f830112612f9857612f97613be8565b5b8135612fa8848260208601612ebf565b91505092915050565b600081359050612fc081613e8d565b92915050565b600060208284031215612fdc57612fdb613bf7565b5b6000612fea84828501612f01565b91505092915050565b6000806040838503121561300a57613009613bf7565b5b600061301885828601612f01565b925050602061302985828601612f01565b9150509250929050565b60008060006060848603121561304c5761304b613bf7565b5b600061305a86828701612f01565b935050602061306b86828701612f01565b925050604061307c86828701612fb1565b9150509250925092565b600080600080608085870312156130a05761309f613bf7565b5b60006130ae87828801612f01565b94505060206130bf87828801612f01565b93505060406130d087828801612fb1565b925050606085013567ffffffffffffffff8111156130f1576130f0613bf2565b5b6130fd87828801612f55565b91505092959194509250565b600080604083850312156131205761311f613bf7565b5b600061312e85828601612f01565b925050602061313f85828601612f16565b9150509250929050565b600080604083850312156131605761315f613bf7565b5b600061316e85828601612f01565b925050602061317f85828601612fb1565b9150509250929050565b60006020828403121561319f5761319e613bf7565b5b60006131ad84828501612f16565b91505092915050565b6000602082840312156131cc576131cb613bf7565b5b60006131da84828501612f2b565b91505092915050565b6000602082840312156131f9576131f8613bf7565b5b600061320784828501612f40565b91505092915050565b60006020828403121561322657613225613bf7565b5b600082013567ffffffffffffffff81111561324457613243613bf2565b5b61325084828501612f83565b91505092915050565b60006020828403121561326f5761326e613bf7565b5b600061327d84828501612fb1565b91505092915050565b61328f8161396a565b82525050565b61329e8161397c565b82525050565b60006132af82613807565b6132b9818561381d565b93506132c98185602086016139ed565b6132d281613bfc565b840191505092915050565b60006132e882613812565b6132f28185613839565b93506133028185602086016139ed565b61330b81613bfc565b840191505092915050565b600061332182613812565b61332b818561384a565b935061333b8185602086016139ed565b80840191505092915050565b6000613354602683613839565b915061335f82613c0d565b604082019050919050565b6000613377601483613839565b915061338282613c5c565b602082019050919050565b600061339a603a83613839565b91506133a582613c85565b604082019050919050565b60006133bd601d83613839565b91506133c882613cd4565b602082019050919050565b60006133e060058361384a565b91506133eb82613cfd565b600582019050919050565b6000613403602083613839565b915061340e82613d26565b602082019050919050565b6000613426601383613839565b915061343182613d4f565b602082019050919050565b6000613449601683613839565b915061345482613d78565b602082019050919050565b600061346c601083613839565b915061347782613da1565b602082019050919050565b600061348f60008361382e565b915061349a82613dca565b600082019050919050565b60006134b2601483613839565b91506134bd82613dcd565b602082019050919050565b60006134d5601f83613839565b91506134e082613df6565b602082019050919050565b60006134f8601383613839565b915061350382613e1f565b602082019050919050565b613517816139d4565b82525050565b60006135298285613316565b91506135358284613316565b9150613540826133d3565b91508190509392505050565b600061355782613482565b9150819050919050565b60006020820190506135766000830184613286565b92915050565b60006080820190506135916000830187613286565b61359e6020830186613286565b6135ab604083018561350e565b81810360608301526135bd81846132a4565b905095945050505050565b60006020820190506135dd6000830184613295565b92915050565b600060208201905081810360008301526135fd81846132dd565b905092915050565b6000602082019050818103600083015261361e81613347565b9050919050565b6000602082019050818103600083015261363e8161336a565b9050919050565b6000602082019050818103600083015261365e8161338d565b9050919050565b6000602082019050818103600083015261367e816133b0565b9050919050565b6000602082019050818103600083015261369e816133f6565b9050919050565b600060208201905081810360008301526136be81613419565b9050919050565b600060208201905081810360008301526136de8161343c565b9050919050565b600060208201905081810360008301526136fe8161345f565b9050919050565b6000602082019050818103600083015261371e816134a5565b9050919050565b6000602082019050818103600083015261373e816134c8565b9050919050565b6000602082019050818103600083015261375e816134eb565b9050919050565b600060208201905061377a600083018461350e565b92915050565b600061378a61379b565b90506137968282613a52565b919050565b6000604051905090565b600067ffffffffffffffff8211156137c0576137bf613bb9565b5b6137c982613bfc565b9050602081019050919050565b600067ffffffffffffffff8211156137f1576137f0613bb9565b5b6137fa82613bfc565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613860826139d4565b915061386b836139d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138a05761389f613afd565b5b828201905092915050565b60006138b6826139d4565b91506138c1836139d4565b9250826138d1576138d0613b2c565b5b828204905092915050565b60006138e7826139d4565b91506138f2836139d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392b5761392a613afd565b5b828202905092915050565b6000613941826139d4565b915061394c836139d4565b92508282101561395f5761395e613afd565b5b828203905092915050565b6000613975826139b4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a0b5780820151818401526020810190506139f0565b83811115613a1a576000848401525b50505050565b60006002820490506001821680613a3857607f821691505b60208210811415613a4c57613a4b613b5b565b5b50919050565b613a5b82613bfc565b810181811067ffffffffffffffff82111715613a7a57613a79613bb9565b5b80604052505050565b6000613a8e826139d4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ac157613ac0613afd565b5b600182019050919050565b6000613ad7826139d4565b9150613ae2836139d4565b925082613af257613af1613b2c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613e518161396a565b8114613e5c57600080fd5b50565b613e688161397c565b8114613e7357600080fd5b50565b613e7f81613988565b8114613e8a57600080fd5b50565b613e96816139d4565b8114613ea157600080fd5b5056fea26469706673582212200ec1bbf1771e265e523e73f5a43dd97dbcc9f13d3e3de916eb690948648bb43c64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569636c796377366e6a786667693370706176357265796b6468757561657576716b6933376364777835357368373766326e6d7836342f0000000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000011c37937e08000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f62616679626569636c796377366e6a78666769337070617635
Arg [9] : 7265796b6468757561657576716b6933376364777835357368373766326e6d78
Arg [10] : 36342f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47596:4364:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29764:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32877:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34388:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33951:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47828:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47780:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29013:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35253:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47718:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51783:174;;;;;;;;;;;;;:::i;:::-;;47905:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51475:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35494:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49311:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49660:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32685:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30133:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:103;;;;;;;;;;;;;:::i;:::-;;47872:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49790:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49907:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47691:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48944:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33046:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50538:929;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34664:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49488:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35750:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49048:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33221:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50092:86;;;;;;;;;;;;;:::i;:::-;;35022:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47953:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29764:305;29866:4;29918:25;29903:40;;;:11;:40;;;;:105;;;;29975:33;29960:48;;;:11;:48;;;;29903:105;:158;;;;30025:36;30049:11;30025:23;:36::i;:::-;29903:158;29883:178;;29764:305;;;:::o;32877:100::-;32931:13;32964:5;32957:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32877:100;:::o;34388:204::-;34456:7;34481:16;34489:7;34481;:16::i;:::-;34476:64;;34506:34;;;;;;;;;;;;;;34476:64;34560:15;:24;34576:7;34560:24;;;;;;;;;;;;;;;;;;;;;34553:31;;34388:204;;;:::o;33951:371::-;34024:13;34040:24;34056:7;34040:15;:24::i;:::-;34024:40;;34085:5;34079:11;;:2;:11;;;34075:48;;;34099:24;;;;;;;;;;;;;;34075:48;34156:5;34140:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34166:37;34183:5;34190:12;:10;:12::i;:::-;34166:16;:37::i;:::-;34165:38;34140:63;34136:138;;;34227:35;;;;;;;;;;;;;;34136:138;34286:28;34295:2;34299:7;34308:5;34286:8;:28::i;:::-;34013:309;33951:371;;:::o;47828:37::-;;;;:::o;47780:41::-;;;;:::o;29013:303::-;29057:7;29282:15;:13;:15::i;:::-;29267:12;;29251:13;;:28;:46;29244:53;;29013:303;:::o;35253:170::-;35387:28;35397:4;35403:2;35407:7;35387:9;:28::i;:::-;35253:170;;;:::o;47718:25::-;;;;:::o;51783:174::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;51844:15:::2;51862:21;51844:39;;51894:55;51732:42;51947:1;51937:7;:11;;;;:::i;:::-;51894:17;:55::i;:::-;51833:124;1801:1:::1;2755:7;:22;;;;51783:174::o:0;47905:41::-;;;;:::o;51475:176::-;51568:11;50298:1;50284:11;:15;:56;;;;;50318:22;;50303:11;:37;;50284:56;50262:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;50452:10;;50437:11;50421:13;;:27;;;;:::i;:::-;:41;;50399:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;7102:12:::1;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51616:27:::2;51626:3;51631:11;51616:9;:27::i;:::-;51475:176:::0;;;:::o;35494:185::-;35632:39;35649:4;35655:2;35659:7;35632:39;;;;;;;;;;;;:16;:39::i;:::-;35494:185;;;:::o;49311:169::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49400:15:::1;;;;;;;;;;;49399:16;49391:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49458:14;49447:8;:25;;;;;;;;;;;;:::i;:::-;;49311:169:::0;:::o;49660:122::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49762:12:::1;49737:22;:37;;;;49660:122:::0;:::o;32685:125::-;32749:7;32776:21;32789:7;32776:12;:21::i;:::-;:26;;;32769:33;;32685:125;;;:::o;30133:206::-;30197:7;30238:1;30221:19;;:5;:19;;;30217:60;;;30249:28;;;;;;;;;;;;;;30217:60;30303:12;:19;30316:5;30303:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30295:36;;30288:43;;30133:206;;;:::o;7522:103::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;47872:26::-;;;;;;;;;;;;;:::o;49790:109::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49879:12:::1;49862:14;;:29;;;;;;;;;;;;;;;;;;49790:109:::0;:::o;49907:177::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50054:22:::1;50025:26;:51;;;;49907:177:::0;:::o;47691:20::-;;;;:::o;6871:87::-;6917:7;6944:6;;;;;;;;;;;6937:13;;6871:87;:::o;48944:96::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49021:11:::1;49013:5;:19;;;;48944:96:::0;:::o;33046:104::-;33102:13;33135:7;33128:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33046:104;:::o;50538:929::-;50630:11;50298:1;50284:11;:15;:56;;;;;50318:22;;50303:11;:37;;50284:56;50262:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;50452:10;;50437:11;50421:13;;:27;;;;:::i;:::-;:41;;50399:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;50667:14:::1;;;;;;;;;;;50659:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;50718:13;50742:11;50734:5;;:19;;;;:::i;:::-;50718:35;;50786:26;;50770:13;;:42;50766:584;;;50829:25;50903:16;:28;50920:10;50903:28;;;;;;;;;;;;;;;;50857:26;;:74;;;;:::i;:::-;50829:102;;50970:1;50950:17;:21;50946:393;;;51011:17;50996:11;:32;50992:332;;51082:5;;51062:17;:25;;;;:::i;:::-;51053:34;;;;;:::i;:::-;;;51110:50;51130:10;51142:17;51110:19;:50::i;:::-;50992:332;;;51232:5;;51218:11;:19;;;;:::i;:::-;51209:28;;;;;:::i;:::-;;;51260:44;51280:10;51292:11;51260:19;:44::i;:::-;50992:332;50946:393;50814:536;50766:584;51383:5;51370:9;:18;;51362:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;51425:34;51435:10;51447:11;51425:9;:34::i;:::-;50648:819;50538:929:::0;;:::o;34664:287::-;34775:12;:10;:12::i;:::-;34763:24;;:8;:24;;;34759:54;;;34796:17;;;;;;;;;;;;;;34759:54;34871:8;34826:18;:32;34845:12;:10;:12::i;:::-;34826:32;;;;;;;;;;;;;;;:42;34859:8;34826:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34924:8;34895:48;;34910:12;:10;:12::i;:::-;34895:48;;;34934:8;34895:48;;;;;;:::i;:::-;;;;;;;;34664:287;;:::o;49488:164::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49627:17:::1;49598:26;:46;;;;49488:164:::0;:::o;35750:369::-;35917:28;35927:4;35933:2;35937:7;35917:9;:28::i;:::-;35960:15;:2;:13;;;:15::i;:::-;:76;;;;;35980:56;36011:4;36017:2;36021:7;36030:5;35980:30;:56::i;:::-;35979:57;35960:76;35956:156;;;36060:40;;;;;;;;;;;;;;35956:156;35750:369;;;;:::o;49048:255::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49147:10:::1;;49132:12;:25;49124:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;49219:13;;49203:12;:29;;49195:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49283:12;49270:10;:25;;;;49048:255:::0;:::o;33221:326::-;33294:13;33325:16;33333:7;33325;:16::i;:::-;33320:59;;33350:29;;;;;;;;;;;;;;33320:59;33392:21;33416:10;:8;:10::i;:::-;33392:34;;33469:1;33450:7;33444:21;:26;;:95;;;;;;;;;;;;;;;;;33497:7;33506:18;:7;:16;:18::i;:::-;33480:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33444:95;33437:102;;;33221:326;;;:::o;50092:86::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50166:4:::1;50148:15;;:22;;;;;;;;;;;;;;;;;;50092:86::o:0;35022:164::-;35119:4;35143:18;:25;35162:5;35143:25;;;;;;;;;;;;;;;:35;35169:8;35143:35;;;;;;;;;;;;;;;;;;;;;;;;;35136:42;;35022:164;;;;:::o;7780:201::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7889:1:::1;7869:22;;:8;:22;;;;7861:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;47953:27::-;;;;;;;;;;;;;:::o;19655:157::-;19740:4;19779:25;19764:40;;;:11;:40;;;;19757:47;;19655:157;;;:::o;36374:174::-;36431:4;36474:7;36455:15;:13;:15::i;:::-;:26;;:53;;;;;36495:13;;36485:7;:23;36455:53;:85;;;;;36513:11;:20;36525:7;36513:20;;;;;;;;;;;:27;;;;;;;;;;;;36512:28;36455:85;36448:92;;36374:174;;;:::o;5595:98::-;5648:7;5675:10;5668:17;;5595:98;:::o;44531:196::-;44673:2;44646:15;:24;44662:7;44646:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44711:7;44707:2;44691:28;;44700:5;44691:28;;;;;;;;;;;;44531:196;;;:::o;28787:92::-;28843:7;28787:92;:::o;39474:2130::-;39589:35;39627:21;39640:7;39627:12;:21::i;:::-;39589:59;;39687:4;39665:26;;:13;:18;;;:26;;;39661:67;;39700:28;;;;;;;;;;;;;;39661:67;39741:22;39783:4;39767:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39804:36;39821:4;39827:12;:10;:12::i;:::-;39804:16;:36::i;:::-;39767:73;:126;;;;39881:12;:10;:12::i;:::-;39857:36;;:20;39869:7;39857:11;:20::i;:::-;:36;;;39767:126;39741:153;;39912:17;39907:66;;39938:35;;;;;;;;;;;;;;39907:66;40002:1;39988:16;;:2;:16;;;39984:52;;;40013:23;;;;;;;;;;;;;;39984:52;40049:43;40071:4;40077:2;40081:7;40090:1;40049:21;:43::i;:::-;40157:35;40174:1;40178:7;40187:4;40157:8;:35::i;:::-;40518:1;40488:12;:18;40501:4;40488:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40562:1;40534:12;:16;40547:2;40534:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40580:31;40614:11;:20;40626:7;40614:20;;;;;;;;;;;40580:54;;40665:2;40649:8;:13;;;:18;;;;;;;;;;;;;;;;;;40715:15;40682:8;:23;;;:49;;;;;;;;;;;;;;;;;;40983:19;41015:1;41005:7;:11;40983:33;;41031:31;41065:11;:24;41077:11;41065:24;;;;;;;;;;;41031:58;;41133:1;41108:27;;:8;:13;;;;;;;;;;;;:27;;;41104:384;;;41318:13;;41303:11;:28;41299:174;;41372:4;41356:8;:13;;;:20;;;;;;;;;;;;;;;;;;41425:13;:28;;;41399:8;:23;;;:54;;;;;;;;;;;;;;;;;;41299:174;41104:384;40463:1036;;;41535:7;41531:2;41516:27;;41525:4;41516:27;;;;;;;;;;;;41554:42;41575:4;41581:2;41585:7;41594:1;41554:20;:42::i;:::-;39578:2026;;39474:2130;;;:::o;10833:317::-;10948:6;10923:21;:31;;10915:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11002:12;11020:9;:14;;11042:6;11020:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:52;;;11072:7;11064:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10904:246;10833:317;;:::o;36556:104::-;36625:27;36635:2;36639:8;36625:27;;;;;;;;;;;;:9;:27::i;:::-;36556:104;;:::o;31514:1109::-;31576:21;;:::i;:::-;31610:12;31625:7;31610:22;;31693:4;31674:15;:13;:15::i;:::-;:23;;:47;;;;;31708:13;;31701:4;:20;31674:47;31670:886;;;31742:31;31776:11;:17;31788:4;31776:17;;;;;;;;;;;31742:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31817:9;:16;;;31812:729;;31888:1;31862:28;;:9;:14;;;:28;;;31858:101;;31926:9;31919:16;;;;;;31858:101;32261:261;32268:4;32261:261;;;32301:6;;;;;;;;32346:11;:17;32358:4;32346:17;;;;;;;;;;;32334:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32420:1;32394:28;;:9;:14;;;:28;;;32390:109;;32462:9;32455:16;;;;;;32390:109;32261:261;;;31812:729;31723:833;31670:886;32584:31;;;;;;;;;;;;;;31514:1109;;;;:::o;8141:191::-;8215:16;8234:6;;;;;;;;;;;8215:25;;8260:8;8251:6;;:17;;;;;;;;;;;;;;;;;;8315:8;8284:40;;8305:8;8284:40;;;;;;;;;;;;8204:128;8141:191;:::o;48653:120::-;48760:5;48732:16;:24;48749:6;48732:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;48653:120;;:::o;9572:326::-;9632:4;9889:1;9867:7;:19;;;:23;9860:30;;9572:326;;;:::o;45219:667::-;45382:4;45419:2;45403:36;;;45440:12;:10;:12::i;:::-;45454:4;45460:7;45469:5;45403:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45399:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45654:1;45637:6;:13;:18;45633:235;;;45683:40;;;;;;;;;;;;;;45633:235;45826:6;45820:13;45811:6;45807:2;45803:15;45796:38;45399:480;45532:45;;;45522:55;;;:6;:55;;;;45515:62;;;45219:667;;;;;;:::o;48804:109::-;48864:13;48897:8;48890:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48804:109;:::o;3157:723::-;3213:13;3443:1;3434:5;:10;3430:53;;;3461:10;;;;;;;;;;;;;;;;;;;;;3430:53;3493:12;3508:5;3493:20;;3524:14;3549:78;3564:1;3556:4;:9;3549:78;;3582:8;;;;;:::i;:::-;;;;3613:2;3605:10;;;;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3637:39;;3687:154;3703:1;3694:5;:10;3687:154;;3731:1;3721:11;;;;;:::i;:::-;;;3798:2;3790:5;:10;;;;:::i;:::-;3777:2;:24;;;;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3827:2;3818:11;;;;;:::i;:::-;;;3687:154;;;3865:6;3851:21;;;;;3157:723;;;;:::o;46534:159::-;;;;;:::o;47352:158::-;;;;;:::o;37023:163::-;37146:32;37152:2;37156:8;37166:5;37173:4;37146:5;:32::i;:::-;37023:163;;;:::o;37445:1775::-;37584:20;37607:13;;37584:36;;37649:1;37635:16;;:2;:16;;;37631:48;;;37660:19;;;;;;;;;;;;;;37631:48;37706:1;37694:8;:13;37690:44;;;37716:18;;;;;;;;;;;;;;37690:44;37747:61;37777:1;37781:2;37785:12;37799:8;37747:21;:61::i;:::-;38120:8;38085:12;:16;38098:2;38085:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38184:8;38144:12;:16;38157:2;38144:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38243:2;38210:11;:25;38222:12;38210:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38310:15;38260:11;:25;38272:12;38260:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38343:20;38366:12;38343:35;;38393:11;38422:8;38407:12;:23;38393:37;;38451:4;:23;;;;;38459:15;:2;:13;;;:15::i;:::-;38451:23;38447:641;;;38495:314;38551:12;38547:2;38526:38;;38543:1;38526:38;;;;;;;;;;;;38592:69;38631:1;38635:2;38639:14;;;;;;38655:5;38592:30;:69::i;:::-;38587:174;;38697:40;;;;;;;;;;;;;;38587:174;38804:3;38788:12;:19;;38495:314;;38890:12;38873:13;;:29;38869:43;;38904:8;;;38869:43;38447:641;;;38953:120;39009:14;;;;;;39005:2;38984:40;;39001:1;38984:40;;;;;;;;;;;;39068:3;39052:12;:19;;38953:120;;38447:641;39118:12;39102:13;:28;;;;38060:1082;;39152:60;39181:1;39185:2;39189:12;39203:8;39152:20;:60::i;:::-;37573:1647;37445:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:400::-;10493:3;10514:84;10596:1;10591:3;10514:84;:::i;:::-;10507:91;;10607:93;10696:3;10607:93;:::i;:::-;10725:1;10720:3;10716:11;10709:18;;10333:400;;;:::o;10739:366::-;10881:3;10902:67;10966:2;10961:3;10902:67;:::i;:::-;10895:74;;10978:93;11067:3;10978:93;:::i;:::-;11096:2;11091:3;11087:12;11080:19;;10739:366;;;:::o;11111:::-;11253:3;11274:67;11338:2;11333:3;11274:67;:::i;:::-;11267:74;;11350:93;11439:3;11350:93;:::i;:::-;11468:2;11463:3;11459:12;11452:19;;11111:366;;;:::o;11483:::-;11625:3;11646:67;11710:2;11705:3;11646:67;:::i;:::-;11639:74;;11722:93;11811:3;11722:93;:::i;:::-;11840:2;11835:3;11831:12;11824:19;;11483:366;;;:::o;11855:::-;11997:3;12018:67;12082:2;12077:3;12018:67;:::i;:::-;12011:74;;12094:93;12183:3;12094:93;:::i;:::-;12212:2;12207:3;12203:12;12196:19;;11855:366;;;:::o;12227:398::-;12386:3;12407:83;12488:1;12483:3;12407:83;:::i;:::-;12400:90;;12499:93;12588:3;12499:93;:::i;:::-;12617:1;12612:3;12608:11;12601:18;;12227:398;;;:::o;12631:366::-;12773:3;12794:67;12858:2;12853:3;12794:67;:::i;:::-;12787:74;;12870:93;12959:3;12870:93;:::i;:::-;12988:2;12983:3;12979:12;12972:19;;12631:366;;;:::o;13003:::-;13145:3;13166:67;13230:2;13225:3;13166:67;:::i;:::-;13159:74;;13242:93;13331:3;13242:93;:::i;:::-;13360:2;13355:3;13351:12;13344:19;;13003:366;;;:::o;13375:::-;13517:3;13538:67;13602:2;13597:3;13538:67;:::i;:::-;13531:74;;13614:93;13703:3;13614:93;:::i;:::-;13732:2;13727:3;13723:12;13716:19;;13375:366;;;:::o;13747:118::-;13834:24;13852:5;13834:24;:::i;:::-;13829:3;13822:37;13747:118;;:::o;13871:701::-;14152:3;14174:95;14265:3;14256:6;14174:95;:::i;:::-;14167:102;;14286:95;14377:3;14368:6;14286:95;:::i;:::-;14279:102;;14398:148;14542:3;14398:148;:::i;:::-;14391:155;;14563:3;14556:10;;13871:701;;;;;:::o;14578:379::-;14762:3;14784:147;14927:3;14784:147;:::i;:::-;14777:154;;14948:3;14941:10;;14578:379;;;:::o;14963:222::-;15056:4;15094:2;15083:9;15079:18;15071:26;;15107:71;15175:1;15164:9;15160:17;15151:6;15107:71;:::i;:::-;14963:222;;;;:::o;15191:640::-;15386:4;15424:3;15413:9;15409:19;15401:27;;15438:71;15506:1;15495:9;15491:17;15482:6;15438:71;:::i;:::-;15519:72;15587:2;15576:9;15572:18;15563:6;15519:72;:::i;:::-;15601;15669:2;15658:9;15654:18;15645:6;15601:72;:::i;:::-;15720:9;15714:4;15710:20;15705:2;15694:9;15690:18;15683:48;15748:76;15819:4;15810:6;15748:76;:::i;:::-;15740:84;;15191:640;;;;;;;:::o;15837:210::-;15924:4;15962:2;15951:9;15947:18;15939:26;;15975:65;16037:1;16026:9;16022:17;16013:6;15975:65;:::i;:::-;15837:210;;;;:::o;16053:313::-;16166:4;16204:2;16193:9;16189:18;16181:26;;16253:9;16247:4;16243:20;16239:1;16228:9;16224:17;16217:47;16281:78;16354:4;16345:6;16281:78;:::i;:::-;16273:86;;16053:313;;;;:::o;16372:419::-;16538:4;16576:2;16565:9;16561:18;16553:26;;16625:9;16619:4;16615:20;16611:1;16600:9;16596:17;16589:47;16653:131;16779:4;16653:131;:::i;:::-;16645:139;;16372:419;;;:::o;16797:::-;16963:4;17001:2;16990:9;16986:18;16978:26;;17050:9;17044:4;17040:20;17036:1;17025:9;17021:17;17014:47;17078:131;17204:4;17078:131;:::i;:::-;17070:139;;16797:419;;;:::o;17222:::-;17388:4;17426:2;17415:9;17411:18;17403:26;;17475:9;17469:4;17465:20;17461:1;17450:9;17446:17;17439:47;17503:131;17629:4;17503:131;:::i;:::-;17495:139;;17222:419;;;:::o;17647:::-;17813:4;17851:2;17840:9;17836:18;17828:26;;17900:9;17894:4;17890:20;17886:1;17875:9;17871:17;17864:47;17928:131;18054:4;17928:131;:::i;:::-;17920:139;;17647:419;;;:::o;18072:::-;18238:4;18276:2;18265:9;18261:18;18253:26;;18325:9;18319:4;18315:20;18311:1;18300:9;18296:17;18289:47;18353:131;18479:4;18353:131;:::i;:::-;18345:139;;18072:419;;;:::o;18497:::-;18663:4;18701:2;18690:9;18686:18;18678:26;;18750:9;18744:4;18740:20;18736:1;18725:9;18721:17;18714:47;18778:131;18904:4;18778:131;:::i;:::-;18770:139;;18497:419;;;:::o;18922:::-;19088:4;19126:2;19115:9;19111:18;19103:26;;19175:9;19169:4;19165:20;19161:1;19150:9;19146:17;19139:47;19203:131;19329:4;19203:131;:::i;:::-;19195:139;;18922:419;;;:::o;19347:::-;19513:4;19551:2;19540:9;19536:18;19528:26;;19600:9;19594:4;19590:20;19586:1;19575:9;19571:17;19564:47;19628:131;19754:4;19628:131;:::i;:::-;19620:139;;19347:419;;;:::o;19772:::-;19938:4;19976:2;19965:9;19961:18;19953:26;;20025:9;20019:4;20015:20;20011:1;20000:9;19996:17;19989:47;20053:131;20179:4;20053:131;:::i;:::-;20045:139;;19772:419;;;:::o;20197:::-;20363:4;20401:2;20390:9;20386:18;20378:26;;20450:9;20444:4;20440:20;20436:1;20425:9;20421:17;20414:47;20478:131;20604:4;20478:131;:::i;:::-;20470:139;;20197:419;;;:::o;20622:::-;20788:4;20826:2;20815:9;20811:18;20803:26;;20875:9;20869:4;20865:20;20861:1;20850:9;20846:17;20839:47;20903:131;21029:4;20903:131;:::i;:::-;20895:139;;20622:419;;;:::o;21047:222::-;21140:4;21178:2;21167:9;21163:18;21155:26;;21191:71;21259:1;21248:9;21244:17;21235:6;21191:71;:::i;:::-;21047:222;;;;:::o;21275:129::-;21309:6;21336:20;;:::i;:::-;21326:30;;21365:33;21393:4;21385:6;21365:33;:::i;:::-;21275:129;;;:::o;21410:75::-;21443:6;21476:2;21470:9;21460:19;;21410:75;:::o;21491:307::-;21552:4;21642:18;21634:6;21631:30;21628:56;;;21664:18;;:::i;:::-;21628:56;21702:29;21724:6;21702:29;:::i;:::-;21694:37;;21786:4;21780;21776:15;21768:23;;21491:307;;;:::o;21804:308::-;21866:4;21956:18;21948:6;21945:30;21942:56;;;21978:18;;:::i;:::-;21942:56;22016:29;22038:6;22016:29;:::i;:::-;22008:37;;22100:4;22094;22090:15;22082:23;;21804:308;;;:::o;22118:98::-;22169:6;22203:5;22197:12;22187:22;;22118:98;;;:::o;22222:99::-;22274:6;22308:5;22302:12;22292:22;;22222:99;;;:::o;22327:168::-;22410:11;22444:6;22439:3;22432:19;22484:4;22479:3;22475:14;22460:29;;22327:168;;;;:::o;22501:147::-;22602:11;22639:3;22624:18;;22501:147;;;;:::o;22654:169::-;22738:11;22772:6;22767:3;22760:19;22812:4;22807:3;22803:14;22788:29;;22654:169;;;;:::o;22829:148::-;22931:11;22968:3;22953:18;;22829:148;;;;:::o;22983:305::-;23023:3;23042:20;23060:1;23042:20;:::i;:::-;23037:25;;23076:20;23094:1;23076:20;:::i;:::-;23071:25;;23230:1;23162:66;23158:74;23155:1;23152:81;23149:107;;;23236:18;;:::i;:::-;23149:107;23280:1;23277;23273:9;23266:16;;22983:305;;;;:::o;23294:185::-;23334:1;23351:20;23369:1;23351:20;:::i;:::-;23346:25;;23385:20;23403:1;23385:20;:::i;:::-;23380:25;;23424:1;23414:35;;23429:18;;:::i;:::-;23414:35;23471:1;23468;23464:9;23459:14;;23294:185;;;;:::o;23485:348::-;23525:7;23548:20;23566:1;23548:20;:::i;:::-;23543:25;;23582:20;23600:1;23582:20;:::i;:::-;23577:25;;23770:1;23702:66;23698:74;23695:1;23692:81;23687:1;23680:9;23673:17;23669:105;23666:131;;;23777:18;;:::i;:::-;23666:131;23825:1;23822;23818:9;23807:20;;23485:348;;;;:::o;23839:191::-;23879:4;23899:20;23917:1;23899:20;:::i;:::-;23894:25;;23933:20;23951:1;23933:20;:::i;:::-;23928:25;;23972:1;23969;23966:8;23963:34;;;23977:18;;:::i;:::-;23963:34;24022:1;24019;24015:9;24007:17;;23839:191;;;;:::o;24036:96::-;24073:7;24102:24;24120:5;24102:24;:::i;:::-;24091:35;;24036:96;;;:::o;24138:90::-;24172:7;24215:5;24208:13;24201:21;24190:32;;24138:90;;;:::o;24234:149::-;24270:7;24310:66;24303:5;24299:78;24288:89;;24234:149;;;:::o;24389:126::-;24426:7;24466:42;24459:5;24455:54;24444:65;;24389:126;;;:::o;24521:77::-;24558:7;24587:5;24576:16;;24521:77;;;:::o;24604:154::-;24688:6;24683:3;24678;24665:30;24750:1;24741:6;24736:3;24732:16;24725:27;24604:154;;;:::o;24764:307::-;24832:1;24842:113;24856:6;24853:1;24850:13;24842:113;;;24941:1;24936:3;24932:11;24926:18;24922:1;24917:3;24913:11;24906:39;24878:2;24875:1;24871:10;24866:15;;24842:113;;;24973:6;24970:1;24967:13;24964:101;;;25053:1;25044:6;25039:3;25035:16;25028:27;24964:101;24813:258;24764:307;;;:::o;25077:320::-;25121:6;25158:1;25152:4;25148:12;25138:22;;25205:1;25199:4;25195:12;25226:18;25216:81;;25282:4;25274:6;25270:17;25260:27;;25216:81;25344:2;25336:6;25333:14;25313:18;25310:38;25307:84;;;25363:18;;:::i;:::-;25307:84;25128:269;25077:320;;;:::o;25403:281::-;25486:27;25508:4;25486:27;:::i;:::-;25478:6;25474:40;25616:6;25604:10;25601:22;25580:18;25568:10;25565:34;25562:62;25559:88;;;25627:18;;:::i;:::-;25559:88;25667:10;25663:2;25656:22;25446:238;25403:281;;:::o;25690:233::-;25729:3;25752:24;25770:5;25752:24;:::i;:::-;25743:33;;25798:66;25791:5;25788:77;25785:103;;;25868:18;;:::i;:::-;25785:103;25915:1;25908:5;25904:13;25897:20;;25690:233;;;:::o;25929:176::-;25961:1;25978:20;25996:1;25978:20;:::i;:::-;25973:25;;26012:20;26030:1;26012:20;:::i;:::-;26007:25;;26051:1;26041:35;;26056:18;;:::i;:::-;26041:35;26097:1;26094;26090:9;26085:14;;25929:176;;;;:::o;26111:180::-;26159:77;26156:1;26149:88;26256:4;26253:1;26246:15;26280:4;26277:1;26270:15;26297:180;26345:77;26342:1;26335:88;26442:4;26439:1;26432:15;26466:4;26463:1;26456:15;26483:180;26531:77;26528:1;26521:88;26628:4;26625:1;26618:15;26652:4;26649:1;26642:15;26669:180;26717:77;26714:1;26707:88;26814:4;26811:1;26804:15;26838:4;26835:1;26828:15;26855:180;26903:77;26900:1;26893:88;27000:4;26997:1;26990:15;27024:4;27021:1;27014:15;27041:117;27150:1;27147;27140:12;27164:117;27273:1;27270;27263:12;27287:117;27396:1;27393;27386:12;27410:117;27519:1;27516;27509:12;27533:102;27574:6;27625:2;27621:7;27616:2;27609:5;27605:14;27601:28;27591:38;;27533:102;;;:::o;27641:225::-;27781:34;27777:1;27769:6;27765:14;27758:58;27850:8;27845:2;27837:6;27833:15;27826:33;27641:225;:::o;27872:170::-;28012:22;28008:1;28000:6;27996:14;27989:46;27872:170;:::o;28048:245::-;28188:34;28184:1;28176:6;28172:14;28165:58;28257:28;28252:2;28244:6;28240:15;28233:53;28048:245;:::o;28299:179::-;28439:31;28435:1;28427:6;28423:14;28416:55;28299:179;:::o;28484:155::-;28624:7;28620:1;28612:6;28608:14;28601:31;28484:155;:::o;28645:182::-;28785:34;28781:1;28773:6;28769:14;28762:58;28645:182;:::o;28833:169::-;28973:21;28969:1;28961:6;28957:14;28950:45;28833:169;:::o;29008:172::-;29148:24;29144:1;29136:6;29132:14;29125:48;29008:172;:::o;29186:166::-;29326:18;29322:1;29314:6;29310:14;29303:42;29186:166;:::o;29358:114::-;;:::o;29478:170::-;29618:22;29614:1;29606:6;29602:14;29595:46;29478:170;:::o;29654:181::-;29794:33;29790:1;29782:6;29778:14;29771:57;29654:181;:::o;29841:169::-;29981:21;29977:1;29969:6;29965:14;29958:45;29841:169;:::o;30016:122::-;30089:24;30107:5;30089:24;:::i;:::-;30082:5;30079:35;30069:63;;30128:1;30125;30118:12;30069:63;30016:122;:::o;30144:116::-;30214:21;30229:5;30214:21;:::i;:::-;30207:5;30204:32;30194:60;;30250:1;30247;30240:12;30194:60;30144:116;:::o;30266:120::-;30338:23;30355:5;30338:23;:::i;:::-;30331:5;30328:34;30318:62;;30376:1;30373;30366:12;30318:62;30266:120;:::o;30392:122::-;30465:24;30483:5;30465:24;:::i;:::-;30458:5;30455:35;30445:63;;30504:1;30501;30494:12;30445:63;30392:122;:::o

Swarm Source

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