ETH Price: $3,157.29 (-8.24%)
Gas: 4 Gwei

Token

Fond Luxet Jenal (FLJ)
 

Overview

Max Total Supply

600 FLJ

Holders

73

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
limeflash.eth
Balance
1 FLJ
0x489b552990876e3151f1ac08c1c6ecbc34b15289
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:
FondLuxetJenal

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT

// 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: 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 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.9;

    contract FondLuxetJenal is ERC721A, Ownable, ReentrancyGuard {

    using Address for address;
    using Strings for uint256;

    // ***Configuration***
   
    uint256 public publicCost = 8700000000000000; //wei
    uint256 public maxTotalSupply = 8000;
    uint256 public maxPerTXN = 5;
    uint256 public nftPerAddressLimit = 5;
    uint256 public freeNFTAlreadyMinted = 0;
    uint256 public numFreeMints = 500;
    uint256 public maxFreePerWallet = 1;
    bool public publicMintStart = false;
    bool public revealed = false;
    string public uriPrefix = "";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;

    constructor() ERC721A("Fond Luxet Jenal", "FLJ") {
        setHiddenMetadataUri("ipfs://QmQmByqLSiCnhExhpWrMsNEM5vHB7p6W4vSDDWBkVMoMko/hiddenmp.json");
    }

    // ***Mint***

    function mint(uint256 _amount) external payable nonReentrant {
    require(publicMintStart, "Public mint has not commenced yet");
    require(totalSupply() + _amount <= maxTotalSupply, "There is not enough Public supply left");
    require(_numberMinted(msg.sender) + _amount <= nftPerAddressLimit, "max NFT per address exceeded");
    if(freeNFTAlreadyMinted + _amount > numFreeMints){
        require(publicCost * _amount <= msg.value, "Insufficient funds!");
    } else {
        if (balanceOf(msg.sender) + _amount > maxFreePerWallet) {
        require(publicCost * _amount <= msg.value, "Insufficient funds!");
        require(_amount <= maxPerTXN, "You can not mint that much per one transaction");
        } else {
            require(_amount <= maxFreePerWallet, "max NFT per address exceeded");
            freeNFTAlreadyMinted += _amount;
        }
    }
    _safeMint(msg.sender, _amount);
    }

    // ***Functions***

    function mintForAddress(uint256 _amount, address _receiver) external onlyOwner {
    _safeMint(_receiver, _amount);
    }

    function setNumFreeMints(uint256 _numfreemints) external onlyOwner {
        numFreeMints = _numfreemints;
    }

    function setmaxFreePerWallet(uint256 _maxfreeperwallet) external onlyOwner {
    maxFreePerWallet = _maxfreeperwallet;
    }

    function setMaxTotalSupply(uint256 _supply) external onlyOwner {
        maxTotalSupply = _supply;
    }
    
    function setMaxPerTXN(uint256 _pertxn) external onlyOwner {
        maxPerTXN = _pertxn;
    }

    function startPublicMint(bool _state) external onlyOwner {
        publicMintStart = _state;
    }
        
    function setPublicCost(uint256 _cost) external onlyOwner {
        publicCost = _cost;
    }

    function setRevealed(bool _state) external onlyOwner {
    revealed = _state;
    }

    function setNftPerAddressLimit(uint256 _limit) external onlyOwner {
    nftPerAddressLimit = _limit;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) external onlyOwner {
    uriSuffix = _uriSuffix;
    }
    
    // ***Metadata***

    function _baseURI() internal view virtual override returns (string memory) {
    if (revealed == false) {
    return hiddenMetadataUri;
    }
    return uriPrefix;
    }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
    }

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

    function withdrawFunds() public onlyOwner nonReentrant {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[{"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":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pertxn","type":"uint256"}],"name":"setMaxPerTXN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxfreeperwallet","type":"uint256"}],"name":"setmaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"startPublicMint","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

661ee89a998bc000600a55611f40600b556005600c819055600d556000600e8190556101f4600f5560016010556011805461ffff1916905560a06040819052608082905262000052916012919062000208565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000819160139162000208565b503480156200008f57600080fd5b50604080518082018252601081526f119bdb9908131d5e195d0812995b985b60821b60208083019182528351808501909452600384526223262560e91b908401528151919291620000e39160029162000208565b508051620000f990600390602084019062000208565b50506001600055506200010c336200013e565b600160098190555062000138604051806080016040528060438152602001620025f36043913962000190565b620002eb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200020490601490602084019062000208565b5050565b8280546200021690620002ae565b90600052602060002090601f0160209004810192826200023a576000855562000285565b82601f106200025557805160ff191683800117855562000285565b8280016001018555821562000285579182015b828111156200028557825182559160200191906001019062000268565b506200029392915062000297565b5090565b5b8082111562000293576000815560010162000298565b600181811c90821680620002c357607f821691505b60208210811415620002e557634e487b7160e01b600052602260045260246000fd5b50919050565b6122f880620002fb6000396000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd1461069f578063d0eb26b0146106bf578063e0a80853146106df578063e985e9c5146106ff578063efbd73f414610748578063f2fde38b1461076857600080fd5b8063a22cb4651461061e578063a45ba8e71461063e578063a702735714610653578063b88d4fde14610669578063ba7d2c761461068957600080fd5b80638cfec4c0116101085780638cfec4c01461057e5780638da5cb5b146105985780639254d4f4146105b657806395d89b41146105d6578063a0712d68146105eb578063a0931011146105fe57600080fd5b806370a08231146104f3578063715018a6146105135780637ec4a65914610528578063811d2437146105485780638693da201461056857600080fd5b80631e60fb3b116101dd57806342842e0e116101a157806342842e0e1461044a5780634fdd43cb1461046a578063518302271461048a5780635503a0e8146104a957806362b99ad4146104be5780636352211e146104d357600080fd5b80631e60fb3b146103bf57806323b872dd146103df57806324600fc3146103ff5780632ab4d052146104145780633f3e4c111461042a57600080fd5b806316ba10e01161022457806316ba10e014610332578063172eb1b01461035257806318160ddd14610376578063193ad7b4146103935780631e4a6b10146103a957600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f05780630a00ae8314610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004611d27565b610788565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107da565b60405161028d9190611d9c565b3480156102c457600080fd5b506102d86102d3366004611daf565b61086c565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611de4565b6108b0565b005b34801561031e57600080fd5b5061031061032d366004611daf565b61093e565b34801561033e57600080fd5b5061031061034d366004611e9a565b610976565b34801561035e57600080fd5b50610368600f5481565b60405190815260200161028d565b34801561038257600080fd5b506001546000540360001901610368565b34801561039f57600080fd5b50610368600e5481565b3480156103b557600080fd5b50610368600c5481565b3480156103cb57600080fd5b506103106103da366004611ef3565b6109b7565b3480156103eb57600080fd5b506103106103fa366004611f0e565b6109f4565b34801561040b57600080fd5b506103106109ff565b34801561042057600080fd5b50610368600b5481565b34801561043657600080fd5b50610310610445366004611daf565b610ade565b34801561045657600080fd5b50610310610465366004611f0e565b610b0d565b34801561047657600080fd5b50610310610485366004611e9a565b610b28565b34801561049657600080fd5b5060115461028190610100900460ff1681565b3480156104b557600080fd5b506102ab610b65565b3480156104ca57600080fd5b506102ab610bf3565b3480156104df57600080fd5b506102d86104ee366004611daf565b610c00565b3480156104ff57600080fd5b5061036861050e366004611f4a565b610c12565b34801561051f57600080fd5b50610310610c61565b34801561053457600080fd5b50610310610543366004611e9a565b610c97565b34801561055457600080fd5b50610310610563366004611daf565b610cd4565b34801561057457600080fd5b50610368600a5481565b34801561058a57600080fd5b506011546102819060ff1681565b3480156105a457600080fd5b506008546001600160a01b03166102d8565b3480156105c257600080fd5b506103106105d1366004611daf565b610d03565b3480156105e257600080fd5b506102ab610d32565b6103106105f9366004611daf565b610d41565b34801561060a57600080fd5b50610310610619366004611daf565b6110a7565b34801561062a57600080fd5b50610310610639366004611f65565b6110d6565b34801561064a57600080fd5b506102ab61116c565b34801561065f57600080fd5b5061036860105481565b34801561067557600080fd5b50610310610684366004611f98565b611179565b34801561069557600080fd5b50610368600d5481565b3480156106ab57600080fd5b506102ab6106ba366004611daf565b6111ca565b3480156106cb57600080fd5b506103106106da366004611daf565b611339565b3480156106eb57600080fd5b506103106106fa366004611ef3565b611368565b34801561070b57600080fd5b5061028161071a366004612014565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075457600080fd5b5061031061076336600461203e565b6113ac565b34801561077457600080fd5b50610310610783366004611f4a565b6113e0565b60006001600160e01b031982166380ac58cd60e01b14806107b957506001600160e01b03198216635b5e139f60e01b145b806107d457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107e990612061565b80601f016020809104026020016040519081016040528092919081815260200182805461081590612061565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b60006108778261147b565b610894576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108bb82610c00565b9050806001600160a01b0316836001600160a01b031614156108f05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610910575061090e813361071a565b155b1561092e576040516367d9dca160e11b815260040160405180910390fd5b6109398383836114b4565b505050565b6008546001600160a01b031633146109715760405162461bcd60e51b81526004016109689061209c565b60405180910390fd5b600f55565b6008546001600160a01b031633146109a05760405162461bcd60e51b81526004016109689061209c565b80516109b3906013906020840190611c78565b5050565b6008546001600160a01b031633146109e15760405162461bcd60e51b81526004016109689061209c565b6011805460ff1916911515919091179055565b610939838383611510565b6008546001600160a01b03163314610a295760405162461bcd60e51b81526004016109689061209c565b60026009541415610a7c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610968565b6002600955604051600090339047908381818185875af1925050503d8060008114610ac3576040519150601f19603f3d011682016040523d82523d6000602084013e610ac8565b606091505b5050905080610ad657600080fd5b506001600955565b6008546001600160a01b03163314610b085760405162461bcd60e51b81526004016109689061209c565b600b55565b61093983838360405180602001604052806000815250611179565b6008546001600160a01b03163314610b525760405162461bcd60e51b81526004016109689061209c565b80516109b3906014906020840190611c78565b60138054610b7290612061565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9e90612061565b8015610beb5780601f10610bc057610100808354040283529160200191610beb565b820191906000526020600020905b815481529060010190602001808311610bce57829003601f168201915b505050505081565b60128054610b7290612061565b6000610c0b826116ff565b5192915050565b60006001600160a01b038216610c3b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c8b5760405162461bcd60e51b81526004016109689061209c565b610c956000611828565b565b6008546001600160a01b03163314610cc15760405162461bcd60e51b81526004016109689061209c565b80516109b3906012906020840190611c78565b6008546001600160a01b03163314610cfe5760405162461bcd60e51b81526004016109689061209c565b600a55565b6008546001600160a01b03163314610d2d5760405162461bcd60e51b81526004016109689061209c565b601055565b6060600380546107e990612061565b60026009541415610d945760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610968565b600260095560115460ff16610df55760405162461bcd60e51b815260206004820152602160248201527f5075626c6963206d696e7420686173206e6f7420636f6d6d656e6365642079656044820152601d60fa1b6064820152608401610968565b600b546001546000548391900360001901610e1091906120e7565b1115610e6d5760405162461bcd60e51b815260206004820152602660248201527f5468657265206973206e6f7420656e6f756768205075626c696320737570706c6044820152651e481b19599d60d21b6064820152608401610968565b600d54336000908152600560205260409020548290600160401b900467ffffffffffffffff16610e9d91906120e7565b1115610eeb5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610968565b600f5481600e54610efc91906120e7565b1115610f5a573481600a54610f1191906120ff565b1115610f555760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610968565b61109d565b60105481610f6733610c12565b610f7191906120e7565b1115611033573481600a54610f8691906120ff565b1115610fca5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610968565b600c54811115610f555760405162461bcd60e51b815260206004820152602e60248201527f596f752063616e206e6f74206d696e742074686174206d75636820706572206f60448201526d3732903a3930b739b0b1ba34b7b760911b6064820152608401610968565b6010548111156110855760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610968565b80600e600082825461109791906120e7565b90915550505b610ad6338261187a565b6008546001600160a01b031633146110d15760405162461bcd60e51b81526004016109689061209c565b600c55565b6001600160a01b0382163314156111005760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60148054610b7290612061565b611184848484611510565b6001600160a01b0383163b151580156111a657506111a484848484611894565b155b156111c4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606111d58261147b565b6112395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610968565b601154610100900460ff166112da576014805461125590612061565b80601f016020809104026020016040519081016040528092919081815260200182805461128190612061565b80156112ce5780601f106112a3576101008083540402835291602001916112ce565b820191906000526020600020905b8154815290600101906020018083116112b157829003601f168201915b50505050509050919050565b60006112e461198c565b905060008151116113045760405180602001604052806000815250611332565b8061130e846119b8565b60136040516020016113229392919061211e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113635760405162461bcd60e51b81526004016109689061209c565b600d55565b6008546001600160a01b031633146113925760405162461bcd60e51b81526004016109689061209c565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146113d65760405162461bcd60e51b81526004016109689061209c565b6109b3818361187a565b6008546001600160a01b0316331461140a5760405162461bcd60e51b81526004016109689061209c565b6001600160a01b03811661146f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610968565b61147881611828565b50565b60008160011115801561148f575060005482105b80156107d4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061151b826116ff565b9050836001600160a01b031681600001516001600160a01b0316146115525760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115705750611570853361071a565b8061158b5750336115808461086c565b6001600160a01b0316145b9050806115ab57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115d257604051633a954ecd60e21b815260040160405180910390fd5b6115de600084876114b4565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116b45760005482146116b4578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561172f575060005481105b1561180f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061180d5780516001600160a01b0316156117a3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611808579392505050565b6117a3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109b3828260405180602001604052806000815250611ab6565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118c99033908990889088906004016121e2565b602060405180830381600087803b1580156118e357600080fd5b505af1925050508015611913575060408051601f3d908101601f191682019092526119109181019061221f565b60015b61196e573d808015611941576040519150601f19603f3d011682016040523d82523d6000602084013e611946565b606091505b508051611966576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b601154606090610100900460ff166119ab57601480546107e990612061565b601280546107e990612061565b6060816119dc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0657806119f08161223c565b91506119ff9050600a8361226d565b91506119e0565b60008167ffffffffffffffff811115611a2157611a21611e0e565b6040519080825280601f01601f191660200182016040528015611a4b576020820181803683370190505b5090505b841561198457611a60600183612281565b9150611a6d600a86612298565b611a789060306120e7565b60f81b818381518110611a8d57611a8d6122ac565b60200101906001600160f81b031916908160001a905350611aaf600a8661226d565b9450611a4f565b6000546001600160a01b038416611adf57604051622e076360e81b815260040160405180910390fd5b82611afd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611c22575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bea6000878480600101955087611894565b611c07576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611b9f578260005414611c1d57600080fd5b611c68565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c23575b5060009081556111c49085838684565b828054611c8490612061565b90600052602060002090601f016020900481019282611ca65760008555611cec565b82601f10611cbf57805160ff1916838001178555611cec565b82800160010185558215611cec579182015b82811115611cec578251825591602001919060010190611cd1565b50611cf8929150611cfc565b5090565b5b80821115611cf85760008155600101611cfd565b6001600160e01b03198116811461147857600080fd5b600060208284031215611d3957600080fd5b813561133281611d11565b60005b83811015611d5f578181015183820152602001611d47565b838111156111c45750506000910152565b60008151808452611d88816020860160208601611d44565b601f01601f19169290920160200192915050565b6020815260006113326020830184611d70565b600060208284031215611dc157600080fd5b5035919050565b80356001600160a01b0381168114611ddf57600080fd5b919050565b60008060408385031215611df757600080fd5b611e0083611dc8565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e3f57611e3f611e0e565b604051601f8501601f19908116603f01168101908282118183101715611e6757611e67611e0e565b81604052809350858152868686011115611e8057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611eac57600080fd5b813567ffffffffffffffff811115611ec357600080fd5b8201601f81018413611ed457600080fd5b61198484823560208401611e24565b80358015158114611ddf57600080fd5b600060208284031215611f0557600080fd5b61133282611ee3565b600080600060608486031215611f2357600080fd5b611f2c84611dc8565b9250611f3a60208501611dc8565b9150604084013590509250925092565b600060208284031215611f5c57600080fd5b61133282611dc8565b60008060408385031215611f7857600080fd5b611f8183611dc8565b9150611f8f60208401611ee3565b90509250929050565b60008060008060808587031215611fae57600080fd5b611fb785611dc8565b9350611fc560208601611dc8565b925060408501359150606085013567ffffffffffffffff811115611fe857600080fd5b8501601f81018713611ff957600080fd5b61200887823560208401611e24565b91505092959194509250565b6000806040838503121561202757600080fd5b61203083611dc8565b9150611f8f60208401611dc8565b6000806040838503121561205157600080fd5b82359150611f8f60208401611dc8565b600181811c9082168061207557607f821691505b6020821081141561209657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156120fa576120fa6120d1565b500190565b6000816000190483118215151615612119576121196120d1565b500290565b6000845160206121318285838a01611d44565b8551918401916121448184848a01611d44565b8554920191600090600181811c908083168061216157607f831692505b85831081141561217f57634e487b7160e01b85526022600452602485fd5b80801561219357600181146121a4576121d1565b60ff198516885283880195506121d1565b60008b81526020902060005b858110156121c95781548a8201529084019088016121b0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061221590830184611d70565b9695505050505050565b60006020828403121561223157600080fd5b815161133281611d11565b6000600019821415612250576122506120d1565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261227c5761227c612257565b500490565b600082821015612293576122936120d1565b500390565b6000826122a7576122a7612257565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122044d987550222830f0f7a5273cd15e0545652ac58e35341bd427179715906a8e764736f6c63430008090033697066733a2f2f516d516d4279714c5369436e684578687057724d734e454d3576484237703657347653444457426b564d6f4d6b6f2f68696464656e6d702e6a736f6e

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806370a0823111610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd1461069f578063d0eb26b0146106bf578063e0a80853146106df578063e985e9c5146106ff578063efbd73f414610748578063f2fde38b1461076857600080fd5b8063a22cb4651461061e578063a45ba8e71461063e578063a702735714610653578063b88d4fde14610669578063ba7d2c761461068957600080fd5b80638cfec4c0116101085780638cfec4c01461057e5780638da5cb5b146105985780639254d4f4146105b657806395d89b41146105d6578063a0712d68146105eb578063a0931011146105fe57600080fd5b806370a08231146104f3578063715018a6146105135780637ec4a65914610528578063811d2437146105485780638693da201461056857600080fd5b80631e60fb3b116101dd57806342842e0e116101a157806342842e0e1461044a5780634fdd43cb1461046a578063518302271461048a5780635503a0e8146104a957806362b99ad4146104be5780636352211e146104d357600080fd5b80631e60fb3b146103bf57806323b872dd146103df57806324600fc3146103ff5780632ab4d052146104145780633f3e4c111461042a57600080fd5b806316ba10e01161022457806316ba10e014610332578063172eb1b01461035257806318160ddd14610376578063193ad7b4146103935780631e4a6b10146103a957600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f05780630a00ae8314610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004611d27565b610788565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107da565b60405161028d9190611d9c565b3480156102c457600080fd5b506102d86102d3366004611daf565b61086c565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611de4565b6108b0565b005b34801561031e57600080fd5b5061031061032d366004611daf565b61093e565b34801561033e57600080fd5b5061031061034d366004611e9a565b610976565b34801561035e57600080fd5b50610368600f5481565b60405190815260200161028d565b34801561038257600080fd5b506001546000540360001901610368565b34801561039f57600080fd5b50610368600e5481565b3480156103b557600080fd5b50610368600c5481565b3480156103cb57600080fd5b506103106103da366004611ef3565b6109b7565b3480156103eb57600080fd5b506103106103fa366004611f0e565b6109f4565b34801561040b57600080fd5b506103106109ff565b34801561042057600080fd5b50610368600b5481565b34801561043657600080fd5b50610310610445366004611daf565b610ade565b34801561045657600080fd5b50610310610465366004611f0e565b610b0d565b34801561047657600080fd5b50610310610485366004611e9a565b610b28565b34801561049657600080fd5b5060115461028190610100900460ff1681565b3480156104b557600080fd5b506102ab610b65565b3480156104ca57600080fd5b506102ab610bf3565b3480156104df57600080fd5b506102d86104ee366004611daf565b610c00565b3480156104ff57600080fd5b5061036861050e366004611f4a565b610c12565b34801561051f57600080fd5b50610310610c61565b34801561053457600080fd5b50610310610543366004611e9a565b610c97565b34801561055457600080fd5b50610310610563366004611daf565b610cd4565b34801561057457600080fd5b50610368600a5481565b34801561058a57600080fd5b506011546102819060ff1681565b3480156105a457600080fd5b506008546001600160a01b03166102d8565b3480156105c257600080fd5b506103106105d1366004611daf565b610d03565b3480156105e257600080fd5b506102ab610d32565b6103106105f9366004611daf565b610d41565b34801561060a57600080fd5b50610310610619366004611daf565b6110a7565b34801561062a57600080fd5b50610310610639366004611f65565b6110d6565b34801561064a57600080fd5b506102ab61116c565b34801561065f57600080fd5b5061036860105481565b34801561067557600080fd5b50610310610684366004611f98565b611179565b34801561069557600080fd5b50610368600d5481565b3480156106ab57600080fd5b506102ab6106ba366004611daf565b6111ca565b3480156106cb57600080fd5b506103106106da366004611daf565b611339565b3480156106eb57600080fd5b506103106106fa366004611ef3565b611368565b34801561070b57600080fd5b5061028161071a366004612014565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075457600080fd5b5061031061076336600461203e565b6113ac565b34801561077457600080fd5b50610310610783366004611f4a565b6113e0565b60006001600160e01b031982166380ac58cd60e01b14806107b957506001600160e01b03198216635b5e139f60e01b145b806107d457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107e990612061565b80601f016020809104026020016040519081016040528092919081815260200182805461081590612061565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b60006108778261147b565b610894576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108bb82610c00565b9050806001600160a01b0316836001600160a01b031614156108f05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610910575061090e813361071a565b155b1561092e576040516367d9dca160e11b815260040160405180910390fd5b6109398383836114b4565b505050565b6008546001600160a01b031633146109715760405162461bcd60e51b81526004016109689061209c565b60405180910390fd5b600f55565b6008546001600160a01b031633146109a05760405162461bcd60e51b81526004016109689061209c565b80516109b3906013906020840190611c78565b5050565b6008546001600160a01b031633146109e15760405162461bcd60e51b81526004016109689061209c565b6011805460ff1916911515919091179055565b610939838383611510565b6008546001600160a01b03163314610a295760405162461bcd60e51b81526004016109689061209c565b60026009541415610a7c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610968565b6002600955604051600090339047908381818185875af1925050503d8060008114610ac3576040519150601f19603f3d011682016040523d82523d6000602084013e610ac8565b606091505b5050905080610ad657600080fd5b506001600955565b6008546001600160a01b03163314610b085760405162461bcd60e51b81526004016109689061209c565b600b55565b61093983838360405180602001604052806000815250611179565b6008546001600160a01b03163314610b525760405162461bcd60e51b81526004016109689061209c565b80516109b3906014906020840190611c78565b60138054610b7290612061565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9e90612061565b8015610beb5780601f10610bc057610100808354040283529160200191610beb565b820191906000526020600020905b815481529060010190602001808311610bce57829003601f168201915b505050505081565b60128054610b7290612061565b6000610c0b826116ff565b5192915050565b60006001600160a01b038216610c3b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c8b5760405162461bcd60e51b81526004016109689061209c565b610c956000611828565b565b6008546001600160a01b03163314610cc15760405162461bcd60e51b81526004016109689061209c565b80516109b3906012906020840190611c78565b6008546001600160a01b03163314610cfe5760405162461bcd60e51b81526004016109689061209c565b600a55565b6008546001600160a01b03163314610d2d5760405162461bcd60e51b81526004016109689061209c565b601055565b6060600380546107e990612061565b60026009541415610d945760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610968565b600260095560115460ff16610df55760405162461bcd60e51b815260206004820152602160248201527f5075626c6963206d696e7420686173206e6f7420636f6d6d656e6365642079656044820152601d60fa1b6064820152608401610968565b600b546001546000548391900360001901610e1091906120e7565b1115610e6d5760405162461bcd60e51b815260206004820152602660248201527f5468657265206973206e6f7420656e6f756768205075626c696320737570706c6044820152651e481b19599d60d21b6064820152608401610968565b600d54336000908152600560205260409020548290600160401b900467ffffffffffffffff16610e9d91906120e7565b1115610eeb5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610968565b600f5481600e54610efc91906120e7565b1115610f5a573481600a54610f1191906120ff565b1115610f555760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610968565b61109d565b60105481610f6733610c12565b610f7191906120e7565b1115611033573481600a54610f8691906120ff565b1115610fca5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610968565b600c54811115610f555760405162461bcd60e51b815260206004820152602e60248201527f596f752063616e206e6f74206d696e742074686174206d75636820706572206f60448201526d3732903a3930b739b0b1ba34b7b760911b6064820152608401610968565b6010548111156110855760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610968565b80600e600082825461109791906120e7565b90915550505b610ad6338261187a565b6008546001600160a01b031633146110d15760405162461bcd60e51b81526004016109689061209c565b600c55565b6001600160a01b0382163314156111005760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60148054610b7290612061565b611184848484611510565b6001600160a01b0383163b151580156111a657506111a484848484611894565b155b156111c4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606111d58261147b565b6112395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610968565b601154610100900460ff166112da576014805461125590612061565b80601f016020809104026020016040519081016040528092919081815260200182805461128190612061565b80156112ce5780601f106112a3576101008083540402835291602001916112ce565b820191906000526020600020905b8154815290600101906020018083116112b157829003601f168201915b50505050509050919050565b60006112e461198c565b905060008151116113045760405180602001604052806000815250611332565b8061130e846119b8565b60136040516020016113229392919061211e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113635760405162461bcd60e51b81526004016109689061209c565b600d55565b6008546001600160a01b031633146113925760405162461bcd60e51b81526004016109689061209c565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146113d65760405162461bcd60e51b81526004016109689061209c565b6109b3818361187a565b6008546001600160a01b0316331461140a5760405162461bcd60e51b81526004016109689061209c565b6001600160a01b03811661146f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610968565b61147881611828565b50565b60008160011115801561148f575060005482105b80156107d4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061151b826116ff565b9050836001600160a01b031681600001516001600160a01b0316146115525760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115705750611570853361071a565b8061158b5750336115808461086c565b6001600160a01b0316145b9050806115ab57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115d257604051633a954ecd60e21b815260040160405180910390fd5b6115de600084876114b4565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116b45760005482146116b4578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561172f575060005481105b1561180f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061180d5780516001600160a01b0316156117a3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611808579392505050565b6117a3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109b3828260405180602001604052806000815250611ab6565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118c99033908990889088906004016121e2565b602060405180830381600087803b1580156118e357600080fd5b505af1925050508015611913575060408051601f3d908101601f191682019092526119109181019061221f565b60015b61196e573d808015611941576040519150601f19603f3d011682016040523d82523d6000602084013e611946565b606091505b508051611966576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b601154606090610100900460ff166119ab57601480546107e990612061565b601280546107e990612061565b6060816119dc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0657806119f08161223c565b91506119ff9050600a8361226d565b91506119e0565b60008167ffffffffffffffff811115611a2157611a21611e0e565b6040519080825280601f01601f191660200182016040528015611a4b576020820181803683370190505b5090505b841561198457611a60600183612281565b9150611a6d600a86612298565b611a789060306120e7565b60f81b818381518110611a8d57611a8d6122ac565b60200101906001600160f81b031916908160001a905350611aaf600a8661226d565b9450611a4f565b6000546001600160a01b038416611adf57604051622e076360e81b815260040160405180910390fd5b82611afd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611c22575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bea6000878480600101955087611894565b611c07576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611b9f578260005414611c1d57600080fd5b611c68565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c23575b5060009081556111c49085838684565b828054611c8490612061565b90600052602060002090601f016020900481019282611ca65760008555611cec565b82601f10611cbf57805160ff1916838001178555611cec565b82800160010185558215611cec579182015b82811115611cec578251825591602001919060010190611cd1565b50611cf8929150611cfc565b5090565b5b80821115611cf85760008155600101611cfd565b6001600160e01b03198116811461147857600080fd5b600060208284031215611d3957600080fd5b813561133281611d11565b60005b83811015611d5f578181015183820152602001611d47565b838111156111c45750506000910152565b60008151808452611d88816020860160208601611d44565b601f01601f19169290920160200192915050565b6020815260006113326020830184611d70565b600060208284031215611dc157600080fd5b5035919050565b80356001600160a01b0381168114611ddf57600080fd5b919050565b60008060408385031215611df757600080fd5b611e0083611dc8565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e3f57611e3f611e0e565b604051601f8501601f19908116603f01168101908282118183101715611e6757611e67611e0e565b81604052809350858152868686011115611e8057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611eac57600080fd5b813567ffffffffffffffff811115611ec357600080fd5b8201601f81018413611ed457600080fd5b61198484823560208401611e24565b80358015158114611ddf57600080fd5b600060208284031215611f0557600080fd5b61133282611ee3565b600080600060608486031215611f2357600080fd5b611f2c84611dc8565b9250611f3a60208501611dc8565b9150604084013590509250925092565b600060208284031215611f5c57600080fd5b61133282611dc8565b60008060408385031215611f7857600080fd5b611f8183611dc8565b9150611f8f60208401611ee3565b90509250929050565b60008060008060808587031215611fae57600080fd5b611fb785611dc8565b9350611fc560208601611dc8565b925060408501359150606085013567ffffffffffffffff811115611fe857600080fd5b8501601f81018713611ff957600080fd5b61200887823560208401611e24565b91505092959194509250565b6000806040838503121561202757600080fd5b61203083611dc8565b9150611f8f60208401611dc8565b6000806040838503121561205157600080fd5b82359150611f8f60208401611dc8565b600181811c9082168061207557607f821691505b6020821081141561209657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156120fa576120fa6120d1565b500190565b6000816000190483118215151615612119576121196120d1565b500290565b6000845160206121318285838a01611d44565b8551918401916121448184848a01611d44565b8554920191600090600181811c908083168061216157607f831692505b85831081141561217f57634e487b7160e01b85526022600452602485fd5b80801561219357600181146121a4576121d1565b60ff198516885283880195506121d1565b60008b81526020902060005b858110156121c95781548a8201529084019088016121b0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061221590830184611d70565b9695505050505050565b60006020828403121561223157600080fd5b815161133281611d11565b6000600019821415612250576122506120d1565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261227c5761227c612257565b500490565b600082821015612293576122936120d1565b500390565b6000826122a7576122a7612257565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122044d987550222830f0f7a5273cd15e0545652ac58e35341bd427179715906a8e764736f6c63430008090033

Deployed Bytecode Sourcemap

48642:4200:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29797:305;;;;;;;;;;-1:-1:-1;29797:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29797:305:0;;;;;;;;32910:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34413:204::-;;;;;;;;;;-1:-1:-1;34413:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;34413:204:0;1528:203:1;33976:371:0;;;;;;;;;;-1:-1:-1;33976:371:0;;;;;:::i;:::-;;:::i;:::-;;50585:114;;;;;;;;;;-1:-1:-1;50585:114:0;;;;;:::i;:::-;;:::i;51744:104::-;;;;;;;;;;-1:-1:-1;51744:104:0;;;;;:::i;:::-;;:::i;49036:33::-;;;;;;;;;;;;;;;;;;;3544:25:1;;;3532:2;3517:18;49036:33:0;3398:177:1;29046:303:0;;;;;;;;;;-1:-1:-1;52618:1:0;29300:12;29090:7;29284:13;:28;-1:-1:-1;;29284:46:0;29046:303;;48990:39;;;;;;;;;;;;;;;;48911:28;;;;;;;;;;;;;;;;51063:100;;;;;;;;;;-1:-1:-1;51063:100:0;;;;;:::i;:::-;;:::i;35278:170::-;;;;;;;;;;-1:-1:-1;35278:170:0;;;;;:::i;:::-;;:::i;52661:178::-;;;;;;;;;;;;;:::i;48868:36::-;;;;;;;;;;;;;;;;50841:106;;;;;;;;;;-1:-1:-1;50841:106:0;;;;;:::i;:::-;;:::i;35519:185::-;;;;;;;;;;-1:-1:-1;35519:185:0;;;;;:::i;:::-;;:::i;51490:134::-;;;;;;;;;;-1:-1:-1;51490:134:0;;;;;:::i;:::-;;:::i;49160:28::-;;;;;;;;;;-1:-1:-1;49160:28:0;;;;;;;;;;;49230:33;;;;;;;;;;;;;:::i;49195:28::-;;;;;;;;;;;;;:::i;32718:125::-;;;;;;;;;;-1:-1:-1;32718:125:0;;;;;:::i;:::-;;:::i;30166:206::-;;;;;;;;;;-1:-1:-1;30166:206:0;;;;;:::i;:::-;;:::i;7585:103::-;;;;;;;;;;;;;:::i;51632:104::-;;;;;;;;;;-1:-1:-1;51632:104:0;;;;;:::i;:::-;;:::i;51179:94::-;;;;;;;;;;-1:-1:-1;51179:94:0;;;;;:::i;:::-;;:::i;48811:44::-;;;;;;;;;;;;;;;;49118:35;;;;;;;;;;-1:-1:-1;49118:35:0;;;;;;;;6934:87;;;;;;;;;;-1:-1:-1;7007:6:0;;-1:-1:-1;;;;;7007:6:0;6934:87;;50707:126;;;;;;;;;;-1:-1:-1;50707:126:0;;;;;:::i;:::-;;:::i;33079:104::-;;;;;;;;;;;;;:::i;49498:922::-;;;;;;:::i;:::-;;:::i;50959:96::-;;;;;;;;;;-1:-1:-1;50959:96:0;;;;;:::i;:::-;;:::i;34689:287::-;;;;;;;;;;-1:-1:-1;34689:287:0;;;;;:::i;:::-;;:::i;49270:31::-;;;;;;;;;;;;;:::i;49076:35::-;;;;;;;;;;;;;;;;35775:369;;;;;;;;;;-1:-1:-1;35775:369:0;;;;;:::i;:::-;;:::i;48946:37::-;;;;;;;;;;;;;;;;52067:451;;;;;;;;;;-1:-1:-1;52067:451:0;;;;;:::i;:::-;;:::i;51374:108::-;;;;;;;;;;-1:-1:-1;51374:108:0;;;;;:::i;:::-;;:::i;51281:85::-;;;;;;;;;;-1:-1:-1;51281:85:0;;;;;:::i;:::-;;:::i;35047:164::-;;;;;;;;;;-1:-1:-1;35047:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35168:25:0;;;35144:4;35168:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35047:164;50454:123;;;;;;;;;;-1:-1:-1;50454:123:0;;;;;:::i;:::-;;:::i;7843:201::-;;;;;;;;;;-1:-1:-1;7843:201:0;;;;;:::i;:::-;;:::i;29797:305::-;29899:4;-1:-1:-1;;;;;;29936:40:0;;-1:-1:-1;;;29936:40:0;;:105;;-1:-1:-1;;;;;;;29993:48:0;;-1:-1:-1;;;29993:48:0;29936:105;:158;;;-1:-1:-1;;;;;;;;;;19817:40:0;;;30058:36;29916:178;29797:305;-1:-1:-1;;29797:305:0:o;32910:100::-;32964:13;32997:5;32990:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32910:100;:::o;34413:204::-;34481:7;34506:16;34514:7;34506;:16::i;:::-;34501:64;;34531:34;;-1:-1:-1;;;34531:34:0;;;;;;;;;;;34501:64;-1:-1:-1;34585:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34585:24:0;;34413:204::o;33976:371::-;34049:13;34065:24;34081:7;34065:15;:24::i;:::-;34049:40;;34110:5;-1:-1:-1;;;;;34104:11:0;:2;-1:-1:-1;;;;;34104:11:0;;34100:48;;;34124:24;;-1:-1:-1;;;34124:24:0;;;;;;;;;;;34100:48;5742:10;-1:-1:-1;;;;;34165:21:0;;;;;;:63;;-1:-1:-1;34191:37:0;34208:5;5742:10;35047:164;:::i;34191:37::-;34190:38;34165:63;34161:138;;;34252:35;;-1:-1:-1;;;34252:35:0;;;;;;;;;;;34161:138;34311:28;34320:2;34324:7;34333:5;34311:8;:28::i;:::-;34038:309;33976:371;;:::o;50585:114::-;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;;;;;;;;;50663:12:::1;:28:::0;50585:114::o;51744:104::-;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;51818:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51744:104:::0;:::o;51063:100::-;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;51131:15:::1;:24:::0;;-1:-1:-1;;51131:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51063:100::o;35278:170::-;35412:28;35422:4;35428:2;35432:7;35412:9;:28::i;52661:178::-;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;1916:1:::1;2514:7;;:19;;2506:63;;;::::0;-1:-1:-1;;;2506:63:0;;6857:2:1;2506:63:0::1;::::0;::::1;6839:21:1::0;6896:2;6876:18;;;6869:30;6935:33;6915:18;;;6908:61;6986:18;;2506:63:0::1;6655:355:1::0;2506:63:0::1;1916:1;2647:7;:18:::0;52746:58:::2;::::0;52728:12:::2;::::0;52754:10:::2;::::0;52778:21:::2;::::0;52728:12;52746:58;52728:12;52746:58;52778:21;52754:10;52746:58:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52727:77;;;52823:7;52815:16;;;::::0;::::2;;-1:-1:-1::0;1872:1:0::1;2826:7;:22:::0;52661:178::o;50841:106::-;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;50915:14:::1;:24:::0;50841:106::o;35519:185::-;35657:39;35674:4;35680:2;35684:7;35657:39;;;;;;;;;;;;:16;:39::i;51490:134::-;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;51578:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;49230:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49195:28::-;;;;;;;:::i;32718:125::-;32782:7;32809:21;32822:7;32809:12;:21::i;:::-;:26;;32718:125;-1:-1:-1;;32718:125:0:o;30166:206::-;30230:7;-1:-1:-1;;;;;30254:19:0;;30250:60;;30282:28;;-1:-1:-1;;;30282:28:0;;;;;;;;;;;30250:60;-1:-1:-1;;;;;;30336:19:0;;;;;:12;:19;;;;;:27;;;;30166:206::o;7585:103::-;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;7650:30:::1;7677:1;7650:18;:30::i;:::-;7585:103::o:0;51632:104::-;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;51706:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;51179:94::-:0;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;51247:10:::1;:18:::0;51179:94::o;50707:126::-;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;50789:16:::1;:36:::0;50707:126::o;33079:104::-;33135:13;33168:7;33161:14;;;;;:::i;49498:922::-;1916:1;2514:7;;:19;;2506:63;;;;-1:-1:-1;;;2506:63:0;;6857:2:1;2506:63:0;;;6839:21:1;6896:2;6876:18;;;6869:30;6935:33;6915:18;;;6908:61;6986:18;;2506:63:0;6655:355:1;2506:63:0;1916:1;2647:7;:18;49574:15:::1;::::0;::::1;;49566:61;;;::::0;-1:-1:-1;;;49566:61:0;;7427:2:1;49566:61:0::1;::::0;::::1;7409:21:1::0;7466:2;7446:18;;;7439:30;7505:34;7485:18;;;7478:62;-1:-1:-1;;;7556:18:1;;;7549:31;7597:19;;49566:61:0::1;7225:397:1::0;49566:61:0::1;49669:14;::::0;52618:1;29300:12;29090:7;29284:13;49658:7;;29284:28;;-1:-1:-1;;29284:46:0;49642:23:::1;;;;:::i;:::-;:41;;49634:92;;;::::0;-1:-1:-1;;;49634:92:0;;8094:2:1;49634:92:0::1;::::0;::::1;8076:21:1::0;8133:2;8113:18;;;8106:30;8172:34;8152:18;;;8145:62;-1:-1:-1;;;8223:18:1;;;8216:36;8269:19;;49634:92:0::1;7892:402:1::0;49634:92:0::1;49780:18;::::0;49755:10:::1;30515:7:::0;30550:19;;;:12;:19;;;;;:32;49769:7;;-1:-1:-1;;;30550:32:0;;;;49741:35:::1;;;;:::i;:::-;:57;;49733:98;;;::::0;-1:-1:-1;;;49733:98:0;;8501:2:1;49733:98:0::1;::::0;::::1;8483:21:1::0;8540:2;8520:18;;;8513:30;8579;8559:18;;;8552:58;8627:18;;49733:98:0::1;8299:352:1::0;49733:98:0::1;49874:12;;49864:7;49841:20;;:30;;;;:::i;:::-;:45;49838:538;;;49930:9;49919:7;49906:10;;:20;;;;:::i;:::-;:33;;49898:65;;;::::0;-1:-1:-1;;;49898:65:0;;9031:2:1;49898:65:0::1;::::0;::::1;9013:21:1::0;9070:2;9050:18;;;9043:30;-1:-1:-1;;;9089:18:1;;;9082:49;9148:18;;49898:65:0::1;8829:343:1::0;49898:65:0::1;49838:538;;;50026:16;;50016:7;49992:21;50002:10;49992:9;:21::i;:::-;:31;;;;:::i;:::-;:50;49988:381;;;50087:9;50076:7;50063:10;;:20;;;;:::i;:::-;:33;;50055:65;;;::::0;-1:-1:-1;;;50055:65:0;;9031:2:1;50055:65:0::1;::::0;::::1;9013:21:1::0;9070:2;9050:18;;;9043:30;-1:-1:-1;;;9089:18:1;;;9082:49;9148:18;;50055:65:0::1;8829:343:1::0;50055:65:0::1;50150:9;;50139:7;:20;;50131:79;;;::::0;-1:-1:-1;;;50131:79:0;;9379:2:1;50131:79:0::1;::::0;::::1;9361:21:1::0;9418:2;9398:18;;;9391:30;9457:34;9437:18;;;9430:62;-1:-1:-1;;;9508:18:1;;;9501:44;9562:19;;50131:79:0::1;9177:410:1::0;49988:381:0::1;50262:16;;50251:7;:27;;50243:68;;;::::0;-1:-1:-1;;;50243:68:0;;8501:2:1;50243:68:0::1;::::0;::::1;8483:21:1::0;8540:2;8520:18;;;8513:30;8579;8559:18;;;8552:58;8627:18;;50243:68:0::1;8299:352:1::0;50243:68:0::1;50350:7;50326:20;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;49988:381:0::1;50382:30;50392:10;50404:7;50382:9;:30::i;50959:96::-:0;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;51028:9:::1;:19:::0;50959:96::o;34689:287::-;-1:-1:-1;;;;;34788:24:0;;5742:10;34788:24;34784:54;;;34821:17;;-1:-1:-1;;;34821:17:0;;;;;;;;;;;34784:54;5742:10;34851:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34851:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34851:53:0;;;;;;;;;;34920:48;;540:41:1;;;34851:42:0;;5742:10;34920:48;;513:18:1;34920:48:0;;;;;;;34689:287;;:::o;49270:31::-;;;;;;;:::i;35775:369::-;35942:28;35952:4;35958:2;35962:7;35942:9;:28::i;:::-;-1:-1:-1;;;;;35985:13:0;;9928:19;:23;;35985:76;;;;;36005:56;36036:4;36042:2;36046:7;36055:5;36005:30;:56::i;:::-;36004:57;35985:76;35981:156;;;36085:40;;-1:-1:-1;;;36085:40:0;;;;;;;;;;;35981:156;35775:369;;;;:::o;52067:451::-;52141:13;52175:17;52183:8;52175:7;:17::i;:::-;52167:77;;;;-1:-1:-1;;;52167:77:0;;9794:2:1;52167:77:0;;;9776:21:1;9833:2;9813:18;;;9806:30;9872:34;9852:18;;;9845:62;-1:-1:-1;;;9923:18:1;;;9916:45;9978:19;;52167:77:0;9592:411:1;52167:77:0;52257:8;;;;;;;52253:64;;52292:17;52285:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52067:451;;;:::o;52253:64::-;52325:28;52356:10;:8;:10::i;:::-;52325:41;;52411:1;52386:14;52380:28;:32;:130;;;;;;;;;;;;;;;;;52448:14;52464:19;:8;:17;:19::i;:::-;52485:9;52431:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52380:130;52373:137;52067:451;-1:-1:-1;;;52067:451:0:o;51374:108::-;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;51447:18:::1;:27:::0;51374:108::o;51281:85::-;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;51341:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;51341:17:0;;::::1;::::0;;;::::1;::::0;;51281:85::o;50454:123::-;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;50540:29:::1;50550:9;50561:7;50540:9;:29::i;7843:201::-:0;7007:6;;-1:-1:-1;;;;;7007:6:0;5742:10;7154:23;7146:68;;;;-1:-1:-1;;;7146:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7932:22:0;::::1;7924:73;;;::::0;-1:-1:-1;;;7924:73:0;;11868:2:1;7924:73:0::1;::::0;::::1;11850:21:1::0;11907:2;11887:18;;;11880:30;11946:34;11926:18;;;11919:62;-1:-1:-1;;;11997:18:1;;;11990:36;12043:19;;7924:73:0::1;11666:402:1::0;7924:73:0::1;8008:28;8027:8;8008:18;:28::i;:::-;7843:201:::0;:::o;36399:174::-;36456:4;36499:7;52618:1;36480:26;;:53;;;;;36520:13;;36510:7;:23;36480:53;:85;;;;-1:-1:-1;;36538:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36538:27:0;;;;36537:28;;36399:174::o;45625:196::-;45740:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45740:29:0;-1:-1:-1;;;;;45740:29:0;;;;;;;;;45785:28;;45740:24;;45785:28;;;;;;;45625:196;;;:::o;40573:2130::-;40688:35;40726:21;40739:7;40726:12;:21::i;:::-;40688:59;;40786:4;-1:-1:-1;;;;;40764:26:0;:13;:18;;;-1:-1:-1;;;;;40764:26:0;;40760:67;;40799:28;;-1:-1:-1;;;40799:28:0;;;;;;;;;;;40760:67;40840:22;5742:10;-1:-1:-1;;;;;40866:20:0;;;;:73;;-1:-1:-1;40903:36:0;40920:4;5742:10;35047:164;:::i;40903:36::-;40866:126;;;-1:-1:-1;5742:10:0;40956:20;40968:7;40956:11;:20::i;:::-;-1:-1:-1;;;;;40956:36:0;;40866:126;40840:153;;41011:17;41006:66;;41037:35;;-1:-1:-1;;;41037:35:0;;;;;;;;;;;41006:66;-1:-1:-1;;;;;41087:16:0;;41083:52;;41112:23;;-1:-1:-1;;;41112:23:0;;;;;;;;;;;41083:52;41256:35;41273:1;41277:7;41286:4;41256:8;:35::i;:::-;-1:-1:-1;;;;;41587:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41587:31:0;;;;;;;-1:-1:-1;;41587:31:0;;;;;;;41633:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41633:29:0;;;;;;;;;;;41713:20;;;:11;:20;;;;;;41748:18;;-1:-1:-1;;;;;;41781:49:0;;;;-1:-1:-1;;;41814:15:0;41781:49;;;;;;;;;;42104:11;;42164:24;;;;;42207:13;;41713:20;;42164:24;;42207:13;42203:384;;42417:13;;42402:11;:28;42398:174;;42455:20;;42524:28;;;;42498:54;;-1:-1:-1;;;42498:54:0;-1:-1:-1;;;;;;42498:54:0;;;-1:-1:-1;;;;;42455:20:0;;42498:54;;;;42398:174;41562:1036;;;42634:7;42630:2;-1:-1:-1;;;;;42615:27:0;42624:4;-1:-1:-1;;;;;42615:27:0;;;;;;;;;;;40677:2026;;40573:2130;;;:::o;31547:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31658:7:0;;52618:1;31707:23;;:47;;;;;31741:13;;31734:4;:20;31707:47;31703:886;;;31775:31;31809:17;;;:11;:17;;;;;;;;;31775:51;;;;;;;;;-1:-1:-1;;;;;31775:51:0;;;;-1:-1:-1;;;31775:51:0;;;;;;;;;;;-1:-1:-1;;;31775:51:0;;;;;;;;;;;;;;31845:729;;31895:14;;-1:-1:-1;;;;;31895:28:0;;31891:101;;31959:9;31547:1109;-1:-1:-1;;;31547:1109:0:o;31891:101::-;-1:-1:-1;;;32334:6:0;32379:17;;;;:11;:17;;;;;;;;;32367:29;;;;;;;;;-1:-1:-1;;;;;32367:29:0;;;;;-1:-1:-1;;;32367:29:0;;;;;;;;;;;-1:-1:-1;;;32367:29:0;;;;;;;;;;;;;32427:28;32423:109;;32495:9;31547:1109;-1:-1:-1;;;31547:1109:0:o;32423:109::-;32294:261;;;31756:833;31703:886;32617:31;;-1:-1:-1;;;32617:31:0;;;;;;;;;;;8204:191;8297:6;;;-1:-1:-1;;;;;8314:17:0;;;-1:-1:-1;;;;;;8314:17:0;;;;;;;8347:40;;8297:6;;;8314:17;8297:6;;8347:40;;8278:16;;8347:40;8267:128;8204:191;:::o;36657:104::-;36726:27;36736:2;36740:8;36726:27;;;;;;;;;;;;:9;:27::i;46313:667::-;46497:72;;-1:-1:-1;;;46497:72:0;;46476:4;;-1:-1:-1;;;;;46497:36:0;;;;;:72;;5742:10;;46548:4;;46554:7;;46563:5;;46497:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46497:72:0;;;;;;;;-1:-1:-1;;46497:72:0;;;;;;;;;;;;:::i;:::-;;;46493:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46731:13:0;;46727:235;;46777:40;;-1:-1:-1;;;46777:40:0;;;;;;;;;;;46727:235;46920:6;46914:13;46905:6;46901:2;46897:15;46890:38;46493:480;-1:-1:-1;;;;;;46616:55:0;-1:-1:-1;;;46616:55:0;;-1:-1:-1;46493:480:0;46313:667;;;;;;:::o;51885:174::-;51971:8;;51945:13;;51971:8;;;;;51967:62;;52004:17;51997:24;;;;;:::i;51967:62::-;52042:9;52035:16;;;;;:::i;3226:723::-;3282:13;3503:10;3499:53;;-1:-1:-1;;3530:10:0;;;;;;;;;;;;-1:-1:-1;;;3530:10:0;;;;;3226:723::o;3499:53::-;3577:5;3562:12;3618:78;3625:9;;3618:78;;3651:8;;;;:::i;:::-;;-1:-1:-1;3674:10:0;;-1:-1:-1;3682:2:0;3674:10;;:::i;:::-;;;3618:78;;;3706:19;3738:6;3728:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3728:17:0;;3706:39;;3756:154;3763:10;;3756:154;;3790:11;3800:1;3790:11;;:::i;:::-;;-1:-1:-1;3859:10:0;3867:2;3859:5;:10;:::i;:::-;3846:24;;:2;:24;:::i;:::-;3833:39;;3816:6;3823;3816:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3816:56:0;;;;;;;;-1:-1:-1;3887:11:0;3896:2;3887:11;;:::i;:::-;;;3756:154;;37135:1751;37258:20;37281:13;-1:-1:-1;;;;;37309:16:0;;37305:48;;37334:19;;-1:-1:-1;;;37334:19:0;;;;;;;;;;;37305:48;37368:13;37364:44;;37390:18;;-1:-1:-1;;;37390:18:0;;;;;;;;;;;37364:44;-1:-1:-1;;;;;37759:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37818:49:0;;37759:44;;;;;;;;37818:49;;;-1:-1:-1;;;;;37759:44:0;;;;;;37818:49;;;;;;;;;;;;;;;;37884:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37934:66:0;;;-1:-1:-1;;;37984:15:0;37934:66;;;;;;;;;;;;;37884:25;;38081:23;;;;9928:19;:23;38121:633;;38161:314;38192:38;;38217:12;;-1:-1:-1;;;;;38192:38:0;;;38209:1;;38192:38;;38209:1;;38192:38;38258:69;38297:1;38301:2;38305:14;;;;;;38321:5;38258:30;:69::i;:::-;38253:174;;38363:40;;-1:-1:-1;;;38363:40:0;;;;;;;;;;;38253:174;38470:3;38454:12;:19;;38161:314;;38556:12;38539:13;;:29;38535:43;;38570:8;;;38535:43;38121:633;;;38619:120;38650:40;;38675:14;;;;;-1:-1:-1;;;;;38650:40:0;;;38667:1;;38650:40;;38667:1;;38650:40;38734:3;38718:12;:19;;38619:120;;38121:633;-1:-1:-1;38768:13:0;:28;;;38818:60;;38851:2;38855:12;38869:8;38818:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;2400:18;2441:2;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:1;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:451::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;3153:18;3145:6;3142:30;3139:50;;;3185:1;3182;3175:12;3139:50;3208:22;;3261:4;3253:13;;3249:27;-1:-1:-1;3239:55:1;;3290:1;3287;3280:12;3239:55;3313:74;3379:7;3374:2;3361:16;3356:2;3352;3348:11;3313:74;:::i;3580:160::-;3645:20;;3701:13;;3694:21;3684:32;;3674:60;;3730:1;3727;3720:12;3745:180;3801:6;3854:2;3842:9;3833:7;3829:23;3825:32;3822:52;;;3870:1;3867;3860:12;3822:52;3893:26;3909:9;3893:26;:::i;3930:328::-;4007:6;4015;4023;4076:2;4064:9;4055:7;4051:23;4047:32;4044:52;;;4092:1;4089;4082:12;4044:52;4115:29;4134:9;4115:29;:::i;:::-;4105:39;;4163:38;4197:2;4186:9;4182:18;4163:38;:::i;:::-;4153:48;;4248:2;4237:9;4233:18;4220:32;4210:42;;3930:328;;;;;:::o;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:254::-;5718:6;5726;5779:2;5767:9;5758:7;5754:23;5750:32;5747:52;;;5795:1;5792;5785:12;5747:52;5831:9;5818:23;5808:33;;5860:38;5894:2;5883:9;5879:18;5860:38;:::i;5909:380::-;5988:1;5984:12;;;;6031;;;6052:61;;6106:4;6098:6;6094:17;6084:27;;6052:61;6159:2;6151:6;6148:14;6128:18;6125:38;6122:161;;;6205:10;6200:3;6196:20;6193:1;6186:31;6240:4;6237:1;6230:15;6268:4;6265:1;6258:15;6122:161;;5909:380;;;:::o;6294:356::-;6496:2;6478:21;;;6515:18;;;6508:30;6574:34;6569:2;6554:18;;6547:62;6641:2;6626:18;;6294:356::o;7627:127::-;7688:10;7683:3;7679:20;7676:1;7669:31;7719:4;7716:1;7709:15;7743:4;7740:1;7733:15;7759:128;7799:3;7830:1;7826:6;7823:1;7820:13;7817:39;;;7836:18;;:::i;:::-;-1:-1:-1;7872:9:1;;7759:128::o;8656:168::-;8696:7;8762:1;8758;8754:6;8750:14;8747:1;8744:21;8739:1;8732:9;8725:17;8721:45;8718:71;;;8769:18;;:::i;:::-;-1:-1:-1;8809:9:1;;8656:168::o;10134:1527::-;10358:3;10396:6;10390:13;10422:4;10435:51;10479:6;10474:3;10469:2;10461:6;10457:15;10435:51;:::i;:::-;10549:13;;10508:16;;;;10571:55;10549:13;10508:16;10593:15;;;10571:55;:::i;:::-;10715:13;;10648:20;;;10688:1;;10775;10797:18;;;;10850;;;;10877:93;;10955:4;10945:8;10941:19;10929:31;;10877:93;11018:2;11008:8;11005:16;10985:18;10982:40;10979:167;;;-1:-1:-1;;;11045:33:1;;11101:4;11098:1;11091:15;11131:4;11052:3;11119:17;10979:167;11162:18;11189:110;;;;11313:1;11308:328;;;;11155:481;;11189:110;-1:-1:-1;;11224:24:1;;11210:39;;11269:20;;;;-1:-1:-1;11189:110:1;;11308:328;10081:1;10074:14;;;10118:4;10105:18;;11403:1;11417:169;11431:8;11428:1;11425:15;11417:169;;;11513:14;;11498:13;;;11491:37;11556:16;;;;11448:10;;11417:169;;;11421:3;;11617:8;11610:5;11606:20;11599:27;;11155:481;-1:-1:-1;11652:3:1;;10134:1527;-1:-1:-1;;;;;;;;;;;10134:1527:1:o;12073:489::-;-1:-1:-1;;;;;12342:15:1;;;12324:34;;12394:15;;12389:2;12374:18;;12367:43;12441:2;12426:18;;12419:34;;;12489:3;12484:2;12469:18;;12462:31;;;12267:4;;12510:46;;12536:19;;12528:6;12510:46;:::i;:::-;12502:54;12073:489;-1:-1:-1;;;;;;12073:489:1:o;12567:249::-;12636:6;12689:2;12677:9;12668:7;12664:23;12660:32;12657:52;;;12705:1;12702;12695:12;12657:52;12737:9;12731:16;12756:30;12780:5;12756:30;:::i;12821:135::-;12860:3;-1:-1:-1;;12881:17:1;;12878:43;;;12901:18;;:::i;:::-;-1:-1:-1;12948:1:1;12937:13;;12821:135::o;12961:127::-;13022:10;13017:3;13013:20;13010:1;13003:31;13053:4;13050:1;13043:15;13077:4;13074:1;13067:15;13093:120;13133:1;13159;13149:35;;13164:18;;:::i;:::-;-1:-1:-1;13198:9:1;;13093:120::o;13218:125::-;13258:4;13286:1;13283;13280:8;13277:34;;;13291:18;;:::i;:::-;-1:-1:-1;13328:9:1;;13218:125::o;13348:112::-;13380:1;13406;13396:35;;13411:18;;:::i;:::-;-1:-1:-1;13445:9:1;;13348:112::o;13465:127::-;13526:10;13521:3;13517:20;13514:1;13507:31;13557:4;13554:1;13547:15;13581:4;13578:1;13571:15

Swarm Source

ipfs://44d987550222830f0f7a5273cd15e0545652ac58e35341bd427179715906a8e7
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.