ETH Price: $2,520.39 (+3.49%)

Token

GoblinDick.WTF (GOBD)
 

Overview

Max Total Supply

2,499 GOBD

Holders

311

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
ramil24.eth
Balance
1 GOBD
0xa098324211Cd3A94be61a572FEaB85264E2ba1B4
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:
GoblinDickWTF

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-04
*/

// Sources flattened with hardhat v2.9.7 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// 
// 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/token/ERC721/[email protected]

// 
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

// 
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// 
// 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 @openzeppelin/contracts/utils/[email protected]

// 
// 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/utils/[email protected]

// 
// 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/utils/[email protected]

// 
// 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/introspection/[email protected]

// 
// 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 erc721a/contracts/[email protected]

// 
// Creator: Chiru Labs

pragma solidity ^0.8.4;







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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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


// File erc721a/contracts/extensions/[email protected]

// 
// Creator: Chiru Labs

pragma solidity ^0.8.4;

error InvalidQueryRange();

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _currentIndex) {
            return ownership;
        }
        ownership = _ownerships[tokenId];
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _currentIndex;
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, _currentIndex)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}


// File @openzeppelin/contracts/security/[email protected]

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

pragma solidity ^0.8.0;

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

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

    bool private _paused;

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

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

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

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

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

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


// File erc721a/contracts/extensions/[email protected]

// 
// Creator: Chiru Labs

pragma solidity ^0.8.4;


error ContractPaused();

/**
 * @dev ERC721A token with pausable token transfers, minting and burning.
 *
 * Based off of OpenZeppelin's ERC721Pausable extension.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721APausable is ERC721A, Pausable {
    /**
     * @dev See {ERC721A-_beforeTokenTransfers}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual override {
        super._beforeTokenTransfers(from, to, startTokenId, quantity);
        if (paused()) revert ContractPaused();
    }
}


// File erc721a/contracts/extensions/[email protected]

// 
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        _burn(tokenId, true);
    }
}


// File @openzeppelin/contracts/access/[email protected]

// 
// 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/security/[email protected]

// 
// 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 contracts/GoblinDickWTF.sol

// 

pragma solidity ^0.8.4;






/**
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMN0kdlclox0NMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNOo;.',;:::;;:oONMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWO:. .cxOOOOOkd:'.,xNMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNOc. .ck0000OOOo:dx:..c0WMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXx;..;lkOOOO0000Oc;xOkl. .dNM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWk;.;oxOOOOO000KKK0xxOOOko. .cX
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWKc.,oO0OOO000KKXXXXXKK0OOOOo. .o
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXd'.:xOOO000KKXXXXXXXXXK00OOOO:  ;
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWO;..lkOO00KKXXXXXXXXXXXXKK0OOO0o. '
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWKl. 'oOO00KKXXXXXXXXXXXXXXK00OOO0x. '
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNd'  ;xO000KXXXKKKKKXXXXXXXXK0OOOOOc  ,
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWOo;  .ck000KKKOddkO0000KKXXKKK00OOOkc. .x
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXo.   .oO00KKXXKOxl:cxOOO000KKK00OOOOc. .oN
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWk,    ;x000KXXXXXKK0kc:dOOOO00000OOOOl. .oNM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWKl.  .,lk00KKXXXXXXXK00Ol,lkOOOOOOOOOkc. ,kNMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNk'   ,xO000KKXXXXXXXXXK00kc..,:loooolc,..oXWMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWKc.  .lO000KKXXXXXXXXXXXXK00Od;.        .c0WMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMNx'  .;x000KKKXXXXXXXXXXXXXKKK000xlc:,.  .xNMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMW0:   .oO00KKKXXXXXXXXXXXKKKKKKKK00OOOd,  'OWMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMXo.  .:x000KKXXXXXXXXXXKKK00000KK00OOOo.  ;OWMMMMMMMMM
MMMMMMMMMMMMMMMMMMWMMMMMWk,   'oO00KKXXXXXXXXKKKK0Odok00000OOOOd.  ;0WMMMMMMMMMM
MMMMMMMMMMMMMMMMMKxKMMWKl.  .lk00KKXXXXXXXKKKK0xl:;cxO0000OOOOx,  :KWMMMMMMMMMMM
MMMMMMMMMMMMMMMMMx'oWNd'  .;x0KKKXXXXXKKKK0Odc,..;dO00000OOOOx; .lXMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMWd.,d:   'o0KKKKXXKKK0Okkxl:;;cok0000000OOOOd, .oNMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMWo.    .ck00KKKK0kdllloxkkkO000OOO00000OOOOo. .dNMMMMMMMMMMMMMMM
MMMMMMMNOKWMMMMMXc    ;d00000OdlccloxO0KK0koc;'';d0000OOOkc. .kWMMMMMMMMMMMMMMMM
MMMMMMMWOldXMMWO:   'oO00000Oxddk00KK0Odc:,,,:lok0000OOOx;  'kWMMMMMMMMMMMMMMMMM
MMMMMMMMWKl:k0l.   .o000KK0OkxdddxO000OxdxkO0000K000OOOd'  ,OWMMMMMMMMMMMMMMMMMM
MMMMMMMMMMNo..  .,,ckKKKKKKOxdddxk000000K000000000OOOkl.  ,OWMMMMMMMMMMMMMMMMMMM
MMMMMMMMMNk,  .;x00KKKKKKKKK00KK00000000000000000OOOkc.  ,OWMMMMMMMMMMMMMMMMMMMM
MMMMMMMNk;.  'oOKKKXXXXKKKK0000Odlclx00000000000OOOx:.  ,0WMMMMMMMMMMMMMMMMMMMMM
MMMMMMXl.  .lk00KKXXXXXKK0000000kxxkO0000000000OOOx;   ;0MMMMMMMMMMMMMMMMMMMMMMM
MMMMNk,  .:x00KKKXXXXXXKK00K00000000000000000OOOOd,   :KMMMMMMMMMMMMMMMMMMMMMMMM
MMW0c. .;x000KKXXXXXXXXKK00KK0KK00000000K000OOOOo.   :KMMMMMMMMMMMMMMMMMMMMMMMMM
MXd.  ,o0KKKKXXXXXXKKKKKKKKKK0K000000000000OOOk:.    lNMMMMMMMMMMMMMMMMMMMMMMMMM
O;   :0KKKKXXXXXKKKKKKKKKKKK0000KKKK000000OOOd,  .   .xWMMMMMMMMMMMMMMMMMMMMMMMM
c    .ldxOKXXXXKKKKKKKKKKKKK000KKKKK000OOOOkl...cdc.  ,KMMMMMMMMMMMMMMMMMMMMMMMM
Ko;..   ..;okKXKKKKKKKKKKKKK0KKKKKK00OOOOOd:',lxOOk;  .kMMMMMMMMMMMMMMMMMMMMMMMM
MMWX0xl;.   .,oO0KKKKK00KKKKKKKKK00OOOOxol:cdkkdxOOl. .dWMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMWXkc'   .ck0KKKKKKKXXKKKK00OO00kdodkkdl:cdOOo. .dWMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMWXx;.  .ckKKXXXXXXKK00OOOOO0Okxdc;,:okOOOo. .kMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMNk;.  'dKXXXKkoooollllllcc::::lxOOOOOOl. '0MMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMNx'  .cOK0kdoodk00000OkkkkkOOOOOOOOx,  cNMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMKc.  ,xkdooddk0KKK000OOOOOOOOOOOkc. .kWMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMNd.  .dKKKKKKKKK00OOOOOOOOOOOOkl.  lNMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMWx.  .o0KKKKK000OOOOOOOOOOOOkl.  ;KMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMWk.  .o0KKK000OOOOOOOOOOOOx:.  ,0WMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMWx.  .d0000OOOOOOOOOOOOOd,   ,0WMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMWx.  'd0OOOOOOOOOOOOOxc.  .cKMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMNd.  ,xOOOOOOOOOOOxc.  .:OWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMNl   :kOOOOOOkdc;.  .lOWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMK:  .oOOOkdc,.  .;dKWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMWk.  :do:'. .,ox0NMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMXc   .  .;d0NMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMWd..':okXWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMW0dkKWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
**/
contract GoblinDickWTF is ERC721A, ERC721AQueryable, ERC721APausable, ERC721ABurnable, Ownable, ReentrancyGuard {
    uint public PRICE;
    uint public MAX_SUPPLY;
    uint public MAX_MINT_AMOUNT_PER_TX;
    uint16 public MAX_FREE_MINTS_PER_WALLET;
    string private BASE_URI;
    bool public SALE_IS_ACTIVE = true;
    bool public METADATA_FROZEN;

    uint public totalFreeMinted;

    constructor(uint price,
        uint maxSupply,
        uint maxMintPerTx,
        uint16 maxFreeMintsPerWallet,
        string memory baseUri) ERC721A("GoblinDick.WTF", "GOBD") {
        PRICE = price;
        MAX_SUPPLY = maxSupply;
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
        MAX_FREE_MINTS_PER_WALLET = maxFreeMintsPerWallet;
        BASE_URI = baseUri;
    }

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

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

    function maxSupply() external view returns (uint) {
        return MAX_SUPPLY;
    }

    function getFreeMints(address addy) external view returns (uint64) {
        return _getAux(addy);
    }

    function setPrice(uint price) external onlyOwner {
        PRICE = price;
    }

    function setMaxMintPerTx(uint maxMint) external onlyOwner {
        MAX_MINT_AMOUNT_PER_TX = maxMint;
    }

    function setMaxFreeMintsPerWallet(uint16 maxFreeMintsPerWallet) external onlyOwner {
        MAX_FREE_MINTS_PER_WALLET = maxFreeMintsPerWallet;
    }

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

    function setSaleState(bool state) external onlyOwner {
        SALE_IS_ACTIVE = state;
    }

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

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

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

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

    function getDickPic(uint32 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(_mintAmount <= MAX_MINT_AMOUNT_PER_TX, "Mint limit exceeded!");
        require(SALE_IS_ACTIVE, "Sale not started");

        uint price = PRICE * _mintAmount;

        uint64 usedFreeMints = _getAux(msg.sender);
        uint64 remainingFreeMints = 0;
        if (MAX_FREE_MINTS_PER_WALLET > usedFreeMints) {
            remainingFreeMints = MAX_FREE_MINTS_PER_WALLET - usedFreeMints;
        }
        uint64 freeMinted = 0;

        if (remainingFreeMints > 0) {
            if (_mintAmount >= remainingFreeMints) {
                price -= remainingFreeMints * PRICE;
                freeMinted = remainingFreeMints;
                remainingFreeMints = 0;
            } else {
                price -= _mintAmount * PRICE;
                freeMinted = _mintAmount;
                remainingFreeMints -= _mintAmount;
            }
        }

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

        totalFreeMinted += freeMinted;
        _setAux(msg.sender, usedFreeMints + freeMinted);
    }

    function sendDickPic(address _to, uint _mintAmount) public mintCompliance(_mintAmount) onlyOwner {
        _safeMint(_to, _mintAmount);
    }

    function withdraw() public onlyOwner nonReentrant {
        uint balance = address(this).balance;
        Address.sendValue(payable(owner()), balance);
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint startTokenId,
        uint quantity
    ) internal virtual override(ERC721A, ERC721APausable) {
        super._beforeTokenTransfers(from, to, startTokenId, quantity);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"uint16","name":"maxFreeMintsPerWallet","type":"uint16"},{"internalType":"string","name":"baseUri","type":"string"}],"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":"ContractPaused","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_FREE_MINTS_PER_WALLET","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_IS_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_mintAmount","type":"uint32"}],"name":"getDickPic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"getFreeMints","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"sendDickPic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"maxFreeMintsPerWallet","type":"uint16"}],"name":"setMaxFreeMintsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setSaleState","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600f805460ff191660011790553480156200001e57600080fd5b50604051620030043803806200300483398101604081905262000041916200020c565b604080518082018252600e81526d23b7b13634b72234b1b5972baa2360911b60208083019182528351808501909452600484526311d3d09160e21b908401528151919291620000939160029162000166565b508051620000a990600390602084019062000166565b50600160005550506008805460ff19169055620000c6336200010c565b6001600955600a859055600b849055600c839055600d805461ffff191661ffff841617905580516200010090600e90602084019062000166565b5050505050506200036f565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000174906200031c565b90600052602060002090601f016020900481019282620001985760008555620001e3565b82601f10620001b357805160ff1916838001178555620001e3565b82800160010185558215620001e3579182015b82811115620001e3578251825591602001919060010190620001c6565b50620001f1929150620001f5565b5090565b5b80821115620001f15760008155600101620001f6565b600080600080600060a0868803121562000224578081fd5b85519450602080870151945060408701519350606087015161ffff811681146200024c578283fd5b60808801519093506001600160401b038082111562000269578384fd5b818901915089601f8301126200027d578384fd5b81518181111562000292576200029262000359565b604051601f8201601f19908116603f01168101908382118183101715620002bd57620002bd62000359565b816040528281528c86848701011115620002d5578687fd5b8693505b82841015620002f85784840186015181850187015292850192620002d9565b828411156200030957868684830101525b8096505050505050509295509295909350565b600181811c908216806200033157607f821691505b602082108114156200035357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612c85806200037f6000396000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb01146106fa578063dad7b5c91461070f578063e985e9c514610725578063efee356814610745578063f2fde38b1461077d578063fdb4953a1461079d57600080fd5b8063b88d4fde14610658578063c23dc68f14610678578063c4e37095146106a5578063c87b56dd146106c5578063d111515d146106e557600080fd5b80638da5cb5b116101085780638da5cb5b146105a057806391b7f5ed146105c357806395d89b41146105e357806399a2557a146105f8578063a22cb46514610618578063b50fcaf91461063857600080fd5b806370a0823114610513578063715018a6146105335780638456cb59146105485780638462151c1461055d5780638d859f3e1461058a57600080fd5b806333aa09bb116101dd57806342966c68116101a157806342966c681461044e57806355f804b31461046e5780635bbb21771461048e5780635c975abb146104bb578063616cdb1e146104d35780636352211e146104f357600080fd5b806333aa09bb146103d157806336c94f82146103f15780633ccfd60b146104045780633f4ba83a1461041957806342842e0e1461042e57600080fd5b806309ef65271161022457806309ef65271461032c57806318160ddd1461035057806323b872dd1461036d578063293ae5cf1461038d57806332cb6b0c146103bb57600080fd5b806301ffc9a71461026157806306eda1b51461029657806306fdde03146102b0578063081812fc146102d2578063095ea7b31461030a575b600080fd5b34801561026d57600080fd5b5061028161027c3660046127d3565b6107bc565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b50600f546102819060ff1681565b3480156102bc57600080fd5b506102c561080e565b60405161028d91906129e8565b3480156102de57600080fd5b506102f26102ed366004612872565b6108a0565b6040516001600160a01b03909116815260200161028d565b34801561031657600080fd5b5061032a6103253660046126b7565b6108e4565b005b34801561033857600080fd5b50610342600c5481565b60405190815260200161028d565b34801561035c57600080fd5b506001546000540360001901610342565b34801561037957600080fd5b5061032a6103883660046125db565b610972565b34801561039957600080fd5b50600d546103a89061ffff1681565b60405161ffff909116815260200161028d565b3480156103c757600080fd5b50610342600b5481565b3480156103dd57600080fd5b5061032a6103ec3660046126b7565b61097d565b61032a6103ff36600461288a565b610a5a565b34801561041057600080fd5b5061032a610d3c565b34801561042557600080fd5b5061032a610dee565b34801561043a57600080fd5b5061032a6104493660046125db565b610e28565b34801561045a57600080fd5b5061032a610469366004612872565b610e43565b34801561047a57600080fd5b5061032a61048936600461280b565b610e51565b34801561049a57600080fd5b506104ae6104a9366004612712565b610ee3565b60405161028d9190612946565b3480156104c757600080fd5b5060085460ff16610281565b3480156104df57600080fd5b5061032a6104ee366004612872565b610fd3565b3480156104ff57600080fd5b506102f261050e366004612872565b611008565b34801561051f57600080fd5b5061034261052e36600461258f565b61101a565b34801561053f57600080fd5b5061032a611068565b34801561055457600080fd5b5061032a6110a2565b34801561056957600080fd5b5061057d61057836600461258f565b6110da565b60405161028d91906129b0565b34801561059657600080fd5b50610342600a5481565b3480156105ac57600080fd5b5060085461010090046001600160a01b03166102f2565b3480156105cf57600080fd5b5061032a6105de366004612872565b611243565b3480156105ef57600080fd5b506102c5611278565b34801561060457600080fd5b5061057d6106133660046126e0565b611287565b34801561062457600080fd5b5061032a61063336600461268e565b611469565b34801561064457600080fd5b5061032a610653366004612850565b6114ff565b34801561066457600080fd5b5061032a610673366004612616565b611547565b34801561068457600080fd5b50610698610693366004612872565b611598565b60405161028d9190612a30565b3480156106b157600080fd5b5061032a6106c03660046127b9565b611652565b3480156106d157600080fd5b506102c56106e0366004612872565b611695565b3480156106f157600080fd5b5061032a611719565b34801561070657600080fd5b50600b54610342565b34801561071b57600080fd5b5061034260105481565b34801561073157600080fd5b506102816107403660046125a9565b61175a565b34801561075157600080fd5b5061076561076036600461258f565b611788565b6040516001600160401b03909116815260200161028d565b34801561078957600080fd5b5061032a61079836600461258f565b611793565b3480156107a957600080fd5b50600f5461028190610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107ed57506001600160e01b03198216635b5e139f60e01b145b8061080857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461081d90612b6d565b80601f016020809104026020016040519081016040528092919081815260200182805461084990612b6d565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b5050505050905090565b60006108ab82611831565b6108c8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ef82611008565b9050806001600160a01b0316836001600160a01b031614156109245760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109445750610942813361175a565b155b15610962576040516367d9dca160e11b815260040160405180910390fd5b61096d83838361186a565b505050565b61096d8383836118c6565b80600b548160005461098f9190612a95565b11156109d95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064015b60405180910390fd5b60008111610a205760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109d0565b6008546001600160a01b03610100909104163314610a505760405162461bcd60e51b81526004016109d0906129fb565b61096d8383611aaf565b8063ffffffff16600b5481600054610a729190612a95565b1115610ab75760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109d0565b60008111610afe5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109d0565b600c548263ffffffff161115610b4d5760405162461bcd60e51b81526020600482015260146024820152734d696e74206c696d69742065786365656465642160601b60448201526064016109d0565b600f5460ff16610b925760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd081cdd185c9d195960821b60448201526064016109d0565b60008263ffffffff16600a54610ba89190612ae3565b90506000610bb533611ac9565b600d549091506000906001600160401b03831661ffff9091161115610be957600d54610be690839061ffff16612b19565b90505b60006001600160401b03821615610c7057816001600160401b03168663ffffffff1610610c3c57600a54610c26906001600160401b038416612ae3565b610c309085612b02565b93506000919050610c70565b600a54610c4f9063ffffffff8816612ae3565b610c599085612b02565b93505063ffffffff8516610c6d8183612b19565b91505b83341015610cb65760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109d0565b610cc6338763ffffffff16611aaf565b806001600160401b031660106000828254610ce19190612a95565b90915550610d34905033610cf58386612aad565b6001600160a01b03909116600090815260056020526040902080546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b505050505050565b6008546001600160a01b03610100909104163314610d6c5760405162461bcd60e51b81526004016109d0906129fb565b60026009541415610dbf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109d0565b600260095547610de6610de06008546001600160a01b036101009091041690565b82611af4565b506001600955565b6008546001600160a01b03610100909104163314610e1e5760405162461bcd60e51b81526004016109d0906129fb565b610e26611c0d565b565b61096d83838360405180602001604052806000815250611547565b610e4e816001611ca0565b50565b6008546001600160a01b03610100909104163314610e815760405162461bcd60e51b81526004016109d0906129fb565b600f54610100900460ff1615610ecc5760405162461bcd60e51b815260206004820152601060248201526f4d657461646174612066726f7a656e2160801b60448201526064016109d0565b8051610edf90600e906020840190612473565b5050565b80516060906000816001600160401b03811115610f1057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f5b57816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610f2e5790505b50905060005b828114610fcb57610f98858281518110610f8b57634e487b7160e01b600052603260045260246000fd5b6020026020010151611598565b828281518110610fb857634e487b7160e01b600052603260045260246000fd5b6020908102919091010152600101610f61565b509392505050565b6008546001600160a01b036101009091041633146110035760405162461bcd60e51b81526004016109d0906129fb565b600c55565b600061101382611e61565b5192915050565b60006001600160a01b038216611043576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b036101009091041633146110985760405162461bcd60e51b81526004016109d0906129fb565b610e266000611f88565b6008546001600160a01b036101009091041633146110d25760405162461bcd60e51b81526004016109d0906129fb565b610e26611fe2565b606060008060006110ea8561101a565b90506000816001600160401b0381111561111457634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561113d578160200160208202803683370190505b509050611163604080516060810182526000808252602082018190529181019190915290565b60015b83861461123757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925292506111cc5761122f565b81516001600160a01b0316156111e157815194505b876001600160a01b0316856001600160a01b0316141561122f578083878060010198508151811061122257634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b600101611166565b50909695505050505050565b6008546001600160a01b036101009091041633146112735760405162461bcd60e51b81526004016109d0906129fb565b600a55565b60606003805461081d90612b6d565b60608183106112a957604051631960ccad60e11b815260040160405180910390fd5b6000805460018510156112bb57600194505b808411156112c7578093505b60006112d28761101a565b9050848610156112f157858503818110156112eb578091505b506112f5565b5060005b6000816001600160401b0381111561131d57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611346578160200160208202803683370190505b5090508161135957935061146292505050565b600061136488611598565b905060008160400151611375575080515b885b8881141580156113875750848714155b1561145657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925293506113eb5761144e565b82516001600160a01b03161561140057825191505b8a6001600160a01b0316826001600160a01b0316141561144e578084888060010199508151811061144157634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b600101611377565b50505092835250909150505b9392505050565b6001600160a01b0382163314156114935760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0361010090910416331461152f5760405162461bcd60e51b81526004016109d0906129fb565b600d805461ffff191661ffff92909216919091179055565b6115528484846118c6565b6001600160a01b0383163b1515801561157457506115728484848461205d565b155b15611592576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516060808201835260008083526020808401829052838501829052845192830185528183528201819052928101929092529060018310806115de57506000548310155b156115e95792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906116495792915050565b61146283611e61565b6008546001600160a01b036101009091041633146116825760405162461bcd60e51b81526004016109d0906129fb565b600f805460ff1916911515919091179055565b60606116a082611831565b6116bd57604051630a14c4b560e41b815260040160405180910390fd5b60006116c7612155565b90508051600014156116e85760405180602001604052806000815250611462565b806116f284612164565b6040516020016117039291906128da565b6040516020818303038152906040529392505050565b6008546001600160a01b036101009091041633146117495760405162461bcd60e51b81526004016109d0906129fb565b600f805461ff001916610100179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600061080882611ac9565b6008546001600160a01b036101009091041633146117c35760405162461bcd60e51b81526004016109d0906129fb565b6001600160a01b0381166118285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d0565b610e4e81611f88565b600081600111158015611845575060005482105b8015610808575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118d182611e61565b9050836001600160a01b031681600001516001600160a01b0316146119085760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119265750611926853361175a565b80611941575033611936846108a0565b6001600160a01b0316145b90508061196157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661198857604051633a954ecd60e21b815260040160405180910390fd5b611995858585600161227d565b6119a16000848761186a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611a75576000548214611a7557805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020612c3083398151915260405160405180910390a45b5050505050565b610edf828260405180602001604052806000815250612289565b6001600160a01b0316600090815260056020526040902054600160c01b90046001600160401b031690565b80471015611b445760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109d0565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b91576040519150601f19603f3d011682016040523d82523d6000602084013e611b96565b606091505b505090508061096d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109d0565b60085460ff16611c565760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109d0565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000611cab83611e61565b80519091508215611d11576000336001600160a01b0383161480611cd45750611cd4823361175a565b80611cef575033611ce4866108a0565b6001600160a01b0316145b905080611d0f57604051632ce44b5f60e11b815260040160405180910390fd5b505b611d1f81600086600161227d565b611d2b6000858361186a565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611e29576000548214611e2957805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612c30833981519152908390a4505060018054810190555050565b60408051606081018252600080825260208201819052918101919091528180600111158015611e91575060005481105b15611f6f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611f6d5780516001600160a01b031615611f04579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611f68579392505050565b611f04565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60085460ff16156120285760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016109d0565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c833390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612092903390899088908890600401612909565b602060405180830381600087803b1580156120ac57600080fd5b505af19250505080156120dc575060408051601f3d908101601f191682019092526120d9918101906127ef565b60015b612137573d80801561210a576040519150601f19603f3d011682016040523d82523d6000602084013e61210f565b606091505b50805161212f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e805461081d90612b6d565b6060816121885750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121b2578061219c81612ba8565b91506121ab9050600a83612acf565b915061218c565b6000816001600160401b038111156121da57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612204576020820181803683370190505b5090505b841561214d57612219600183612b02565b9150612226600a86612bc3565b612231906030612a95565b60f81b81838151811061225457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612276600a86612acf565b9450612208565b61159284848484612296565b61096d83838360016122ba565b60085460ff16156115925760405163ab35696f60e01b815260040160405180910390fd5b6000546001600160a01b0385166122e357604051622e076360e81b815260040160405180910390fd5b836123015760405163b562e8dd60e01b815260040160405180910390fd5b61230e600086838761227d565b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156123bf57506001600160a01b0387163b15155b15612436575b60405182906001600160a01b03891690600090600080516020612c30833981519152908290a46123fe600088848060010195508861205d565b61241b576040516368d2bf6b60e11b815260040160405180910390fd5b808214156123c557826000541461243157600080fd5b61246a565b5b6040516001830192906001600160a01b03891690600090600080516020612c30833981519152908290a480821415612437575b50600055611aa8565b82805461247f90612b6d565b90600052602060002090601f0160209004810192826124a157600085556124e7565b82601f106124ba57805160ff19168380011785556124e7565b828001600101855582156124e7579182015b828111156124e75782518255916020019190600101906124cc565b506124f39291506124f7565b5090565b5b808211156124f357600081556001016124f8565b60006001600160401b0383111561252557612525612c03565b612538601f8401601f1916602001612a65565b905082815283838301111561254c57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461257a57600080fd5b919050565b8035801515811461257a57600080fd5b6000602082840312156125a0578081fd5b61146282612563565b600080604083850312156125bb578081fd5b6125c483612563565b91506125d260208401612563565b90509250929050565b6000806000606084860312156125ef578081fd5b6125f884612563565b925061260660208501612563565b9150604084013590509250925092565b6000806000806080858703121561262b578081fd5b61263485612563565b935061264260208601612563565b92506040850135915060608501356001600160401b03811115612663578182fd5b8501601f81018713612673578182fd5b6126828782356020840161250c565b91505092959194509250565b600080604083850312156126a0578182fd5b6126a983612563565b91506125d26020840161257f565b600080604083850312156126c9578182fd5b6126d283612563565b946020939093013593505050565b6000806000606084860312156126f4578283fd5b6126fd84612563565b95602085013595506040909401359392505050565b60006020808385031215612724578182fd5b82356001600160401b038082111561273a578384fd5b818501915085601f83011261274d578384fd5b81358181111561275f5761275f612c03565b8060051b9150612770848301612a65565b8181528481019084860184860187018a101561278a578788fd5b8795505b838610156127ac57803583526001959095019491860191860161278e565b5098975050505050505050565b6000602082840312156127ca578081fd5b6114628261257f565b6000602082840312156127e4578081fd5b813561146281612c19565b600060208284031215612800578081fd5b815161146281612c19565b60006020828403121561281c578081fd5b81356001600160401b03811115612831578182fd5b8201601f81018413612841578182fd5b61214d8482356020840161250c565b600060208284031215612861578081fd5b813561ffff81168114611462578182fd5b600060208284031215612883578081fd5b5035919050565b60006020828403121561289b578081fd5b813563ffffffff81168114611462578182fd5b600081518084526128c6816020860160208601612b41565b601f01601f19169290920160200192915050565b600083516128ec818460208801612b41565b835190830190612900818360208801612b41565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061293c908301846128ae565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156112375761299d83855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612962565b6020808252825182820181905260009190848201906040850190845b81811015611237578351835292840192918401916001016129cc565b60208152600061146260208301846128ae565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610808565b604051601f8201601f191681016001600160401b0381118282101715612a8d57612a8d612c03565b604052919050565b60008219821115612aa857612aa8612bd7565b500190565b60006001600160401b0380831681851680830382111561290057612900612bd7565b600082612ade57612ade612bed565b500490565b6000816000190483118215151615612afd57612afd612bd7565b500290565b600082821015612b1457612b14612bd7565b500390565b60006001600160401b0383811690831681811015612b3957612b39612bd7565b039392505050565b60005b83811015612b5c578181015183820152602001612b44565b838111156115925750506000910152565b600181811c90821680612b8157607f821691505b60208210811415612ba257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bbc57612bbc612bd7565b5060010190565b600082612bd257612bd2612bed565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e4e57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212207745b0893a66cbf2519786f60a0e33c4a3801538c588a5f25a67a60c6db51f5a64736f6c634300080400330000000000000000000000000000000000000000000000004563918244f4000000000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a457269384d386e5161654c43663846794c4562467876697a715241534c4e3448716f5073505567317872592f00000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806370a0823111610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb01146106fa578063dad7b5c91461070f578063e985e9c514610725578063efee356814610745578063f2fde38b1461077d578063fdb4953a1461079d57600080fd5b8063b88d4fde14610658578063c23dc68f14610678578063c4e37095146106a5578063c87b56dd146106c5578063d111515d146106e557600080fd5b80638da5cb5b116101085780638da5cb5b146105a057806391b7f5ed146105c357806395d89b41146105e357806399a2557a146105f8578063a22cb46514610618578063b50fcaf91461063857600080fd5b806370a0823114610513578063715018a6146105335780638456cb59146105485780638462151c1461055d5780638d859f3e1461058a57600080fd5b806333aa09bb116101dd57806342966c68116101a157806342966c681461044e57806355f804b31461046e5780635bbb21771461048e5780635c975abb146104bb578063616cdb1e146104d35780636352211e146104f357600080fd5b806333aa09bb146103d157806336c94f82146103f15780633ccfd60b146104045780633f4ba83a1461041957806342842e0e1461042e57600080fd5b806309ef65271161022457806309ef65271461032c57806318160ddd1461035057806323b872dd1461036d578063293ae5cf1461038d57806332cb6b0c146103bb57600080fd5b806301ffc9a71461026157806306eda1b51461029657806306fdde03146102b0578063081812fc146102d2578063095ea7b31461030a575b600080fd5b34801561026d57600080fd5b5061028161027c3660046127d3565b6107bc565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b50600f546102819060ff1681565b3480156102bc57600080fd5b506102c561080e565b60405161028d91906129e8565b3480156102de57600080fd5b506102f26102ed366004612872565b6108a0565b6040516001600160a01b03909116815260200161028d565b34801561031657600080fd5b5061032a6103253660046126b7565b6108e4565b005b34801561033857600080fd5b50610342600c5481565b60405190815260200161028d565b34801561035c57600080fd5b506001546000540360001901610342565b34801561037957600080fd5b5061032a6103883660046125db565b610972565b34801561039957600080fd5b50600d546103a89061ffff1681565b60405161ffff909116815260200161028d565b3480156103c757600080fd5b50610342600b5481565b3480156103dd57600080fd5b5061032a6103ec3660046126b7565b61097d565b61032a6103ff36600461288a565b610a5a565b34801561041057600080fd5b5061032a610d3c565b34801561042557600080fd5b5061032a610dee565b34801561043a57600080fd5b5061032a6104493660046125db565b610e28565b34801561045a57600080fd5b5061032a610469366004612872565b610e43565b34801561047a57600080fd5b5061032a61048936600461280b565b610e51565b34801561049a57600080fd5b506104ae6104a9366004612712565b610ee3565b60405161028d9190612946565b3480156104c757600080fd5b5060085460ff16610281565b3480156104df57600080fd5b5061032a6104ee366004612872565b610fd3565b3480156104ff57600080fd5b506102f261050e366004612872565b611008565b34801561051f57600080fd5b5061034261052e36600461258f565b61101a565b34801561053f57600080fd5b5061032a611068565b34801561055457600080fd5b5061032a6110a2565b34801561056957600080fd5b5061057d61057836600461258f565b6110da565b60405161028d91906129b0565b34801561059657600080fd5b50610342600a5481565b3480156105ac57600080fd5b5060085461010090046001600160a01b03166102f2565b3480156105cf57600080fd5b5061032a6105de366004612872565b611243565b3480156105ef57600080fd5b506102c5611278565b34801561060457600080fd5b5061057d6106133660046126e0565b611287565b34801561062457600080fd5b5061032a61063336600461268e565b611469565b34801561064457600080fd5b5061032a610653366004612850565b6114ff565b34801561066457600080fd5b5061032a610673366004612616565b611547565b34801561068457600080fd5b50610698610693366004612872565b611598565b60405161028d9190612a30565b3480156106b157600080fd5b5061032a6106c03660046127b9565b611652565b3480156106d157600080fd5b506102c56106e0366004612872565b611695565b3480156106f157600080fd5b5061032a611719565b34801561070657600080fd5b50600b54610342565b34801561071b57600080fd5b5061034260105481565b34801561073157600080fd5b506102816107403660046125a9565b61175a565b34801561075157600080fd5b5061076561076036600461258f565b611788565b6040516001600160401b03909116815260200161028d565b34801561078957600080fd5b5061032a61079836600461258f565b611793565b3480156107a957600080fd5b50600f5461028190610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107ed57506001600160e01b03198216635b5e139f60e01b145b8061080857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461081d90612b6d565b80601f016020809104026020016040519081016040528092919081815260200182805461084990612b6d565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b5050505050905090565b60006108ab82611831565b6108c8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ef82611008565b9050806001600160a01b0316836001600160a01b031614156109245760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109445750610942813361175a565b155b15610962576040516367d9dca160e11b815260040160405180910390fd5b61096d83838361186a565b505050565b61096d8383836118c6565b80600b548160005461098f9190612a95565b11156109d95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064015b60405180910390fd5b60008111610a205760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109d0565b6008546001600160a01b03610100909104163314610a505760405162461bcd60e51b81526004016109d0906129fb565b61096d8383611aaf565b8063ffffffff16600b5481600054610a729190612a95565b1115610ab75760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109d0565b60008111610afe5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109d0565b600c548263ffffffff161115610b4d5760405162461bcd60e51b81526020600482015260146024820152734d696e74206c696d69742065786365656465642160601b60448201526064016109d0565b600f5460ff16610b925760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd081cdd185c9d195960821b60448201526064016109d0565b60008263ffffffff16600a54610ba89190612ae3565b90506000610bb533611ac9565b600d549091506000906001600160401b03831661ffff9091161115610be957600d54610be690839061ffff16612b19565b90505b60006001600160401b03821615610c7057816001600160401b03168663ffffffff1610610c3c57600a54610c26906001600160401b038416612ae3565b610c309085612b02565b93506000919050610c70565b600a54610c4f9063ffffffff8816612ae3565b610c599085612b02565b93505063ffffffff8516610c6d8183612b19565b91505b83341015610cb65760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109d0565b610cc6338763ffffffff16611aaf565b806001600160401b031660106000828254610ce19190612a95565b90915550610d34905033610cf58386612aad565b6001600160a01b03909116600090815260056020526040902080546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b505050505050565b6008546001600160a01b03610100909104163314610d6c5760405162461bcd60e51b81526004016109d0906129fb565b60026009541415610dbf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109d0565b600260095547610de6610de06008546001600160a01b036101009091041690565b82611af4565b506001600955565b6008546001600160a01b03610100909104163314610e1e5760405162461bcd60e51b81526004016109d0906129fb565b610e26611c0d565b565b61096d83838360405180602001604052806000815250611547565b610e4e816001611ca0565b50565b6008546001600160a01b03610100909104163314610e815760405162461bcd60e51b81526004016109d0906129fb565b600f54610100900460ff1615610ecc5760405162461bcd60e51b815260206004820152601060248201526f4d657461646174612066726f7a656e2160801b60448201526064016109d0565b8051610edf90600e906020840190612473565b5050565b80516060906000816001600160401b03811115610f1057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f5b57816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610f2e5790505b50905060005b828114610fcb57610f98858281518110610f8b57634e487b7160e01b600052603260045260246000fd5b6020026020010151611598565b828281518110610fb857634e487b7160e01b600052603260045260246000fd5b6020908102919091010152600101610f61565b509392505050565b6008546001600160a01b036101009091041633146110035760405162461bcd60e51b81526004016109d0906129fb565b600c55565b600061101382611e61565b5192915050565b60006001600160a01b038216611043576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b036101009091041633146110985760405162461bcd60e51b81526004016109d0906129fb565b610e266000611f88565b6008546001600160a01b036101009091041633146110d25760405162461bcd60e51b81526004016109d0906129fb565b610e26611fe2565b606060008060006110ea8561101a565b90506000816001600160401b0381111561111457634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561113d578160200160208202803683370190505b509050611163604080516060810182526000808252602082018190529181019190915290565b60015b83861461123757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925292506111cc5761122f565b81516001600160a01b0316156111e157815194505b876001600160a01b0316856001600160a01b0316141561122f578083878060010198508151811061122257634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b600101611166565b50909695505050505050565b6008546001600160a01b036101009091041633146112735760405162461bcd60e51b81526004016109d0906129fb565b600a55565b60606003805461081d90612b6d565b60608183106112a957604051631960ccad60e11b815260040160405180910390fd5b6000805460018510156112bb57600194505b808411156112c7578093505b60006112d28761101a565b9050848610156112f157858503818110156112eb578091505b506112f5565b5060005b6000816001600160401b0381111561131d57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611346578160200160208202803683370190505b5090508161135957935061146292505050565b600061136488611598565b905060008160400151611375575080515b885b8881141580156113875750848714155b1561145657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925293506113eb5761144e565b82516001600160a01b03161561140057825191505b8a6001600160a01b0316826001600160a01b0316141561144e578084888060010199508151811061144157634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b600101611377565b50505092835250909150505b9392505050565b6001600160a01b0382163314156114935760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0361010090910416331461152f5760405162461bcd60e51b81526004016109d0906129fb565b600d805461ffff191661ffff92909216919091179055565b6115528484846118c6565b6001600160a01b0383163b1515801561157457506115728484848461205d565b155b15611592576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516060808201835260008083526020808401829052838501829052845192830185528183528201819052928101929092529060018310806115de57506000548310155b156115e95792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906116495792915050565b61146283611e61565b6008546001600160a01b036101009091041633146116825760405162461bcd60e51b81526004016109d0906129fb565b600f805460ff1916911515919091179055565b60606116a082611831565b6116bd57604051630a14c4b560e41b815260040160405180910390fd5b60006116c7612155565b90508051600014156116e85760405180602001604052806000815250611462565b806116f284612164565b6040516020016117039291906128da565b6040516020818303038152906040529392505050565b6008546001600160a01b036101009091041633146117495760405162461bcd60e51b81526004016109d0906129fb565b600f805461ff001916610100179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600061080882611ac9565b6008546001600160a01b036101009091041633146117c35760405162461bcd60e51b81526004016109d0906129fb565b6001600160a01b0381166118285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d0565b610e4e81611f88565b600081600111158015611845575060005482105b8015610808575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118d182611e61565b9050836001600160a01b031681600001516001600160a01b0316146119085760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119265750611926853361175a565b80611941575033611936846108a0565b6001600160a01b0316145b90508061196157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661198857604051633a954ecd60e21b815260040160405180910390fd5b611995858585600161227d565b6119a16000848761186a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611a75576000548214611a7557805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020612c3083398151915260405160405180910390a45b5050505050565b610edf828260405180602001604052806000815250612289565b6001600160a01b0316600090815260056020526040902054600160c01b90046001600160401b031690565b80471015611b445760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109d0565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b91576040519150601f19603f3d011682016040523d82523d6000602084013e611b96565b606091505b505090508061096d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109d0565b60085460ff16611c565760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109d0565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000611cab83611e61565b80519091508215611d11576000336001600160a01b0383161480611cd45750611cd4823361175a565b80611cef575033611ce4866108a0565b6001600160a01b0316145b905080611d0f57604051632ce44b5f60e11b815260040160405180910390fd5b505b611d1f81600086600161227d565b611d2b6000858361186a565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611e29576000548214611e2957805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612c30833981519152908390a4505060018054810190555050565b60408051606081018252600080825260208201819052918101919091528180600111158015611e91575060005481105b15611f6f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611f6d5780516001600160a01b031615611f04579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611f68579392505050565b611f04565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60085460ff16156120285760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016109d0565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c833390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612092903390899088908890600401612909565b602060405180830381600087803b1580156120ac57600080fd5b505af19250505080156120dc575060408051601f3d908101601f191682019092526120d9918101906127ef565b60015b612137573d80801561210a576040519150601f19603f3d011682016040523d82523d6000602084013e61210f565b606091505b50805161212f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e805461081d90612b6d565b6060816121885750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121b2578061219c81612ba8565b91506121ab9050600a83612acf565b915061218c565b6000816001600160401b038111156121da57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612204576020820181803683370190505b5090505b841561214d57612219600183612b02565b9150612226600a86612bc3565b612231906030612a95565b60f81b81838151811061225457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612276600a86612acf565b9450612208565b61159284848484612296565b61096d83838360016122ba565b60085460ff16156115925760405163ab35696f60e01b815260040160405180910390fd5b6000546001600160a01b0385166122e357604051622e076360e81b815260040160405180910390fd5b836123015760405163b562e8dd60e01b815260040160405180910390fd5b61230e600086838761227d565b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156123bf57506001600160a01b0387163b15155b15612436575b60405182906001600160a01b03891690600090600080516020612c30833981519152908290a46123fe600088848060010195508861205d565b61241b576040516368d2bf6b60e11b815260040160405180910390fd5b808214156123c557826000541461243157600080fd5b61246a565b5b6040516001830192906001600160a01b03891690600090600080516020612c30833981519152908290a480821415612437575b50600055611aa8565b82805461247f90612b6d565b90600052602060002090601f0160209004810192826124a157600085556124e7565b82601f106124ba57805160ff19168380011785556124e7565b828001600101855582156124e7579182015b828111156124e75782518255916020019190600101906124cc565b506124f39291506124f7565b5090565b5b808211156124f357600081556001016124f8565b60006001600160401b0383111561252557612525612c03565b612538601f8401601f1916602001612a65565b905082815283838301111561254c57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461257a57600080fd5b919050565b8035801515811461257a57600080fd5b6000602082840312156125a0578081fd5b61146282612563565b600080604083850312156125bb578081fd5b6125c483612563565b91506125d260208401612563565b90509250929050565b6000806000606084860312156125ef578081fd5b6125f884612563565b925061260660208501612563565b9150604084013590509250925092565b6000806000806080858703121561262b578081fd5b61263485612563565b935061264260208601612563565b92506040850135915060608501356001600160401b03811115612663578182fd5b8501601f81018713612673578182fd5b6126828782356020840161250c565b91505092959194509250565b600080604083850312156126a0578182fd5b6126a983612563565b91506125d26020840161257f565b600080604083850312156126c9578182fd5b6126d283612563565b946020939093013593505050565b6000806000606084860312156126f4578283fd5b6126fd84612563565b95602085013595506040909401359392505050565b60006020808385031215612724578182fd5b82356001600160401b038082111561273a578384fd5b818501915085601f83011261274d578384fd5b81358181111561275f5761275f612c03565b8060051b9150612770848301612a65565b8181528481019084860184860187018a101561278a578788fd5b8795505b838610156127ac57803583526001959095019491860191860161278e565b5098975050505050505050565b6000602082840312156127ca578081fd5b6114628261257f565b6000602082840312156127e4578081fd5b813561146281612c19565b600060208284031215612800578081fd5b815161146281612c19565b60006020828403121561281c578081fd5b81356001600160401b03811115612831578182fd5b8201601f81018413612841578182fd5b61214d8482356020840161250c565b600060208284031215612861578081fd5b813561ffff81168114611462578182fd5b600060208284031215612883578081fd5b5035919050565b60006020828403121561289b578081fd5b813563ffffffff81168114611462578182fd5b600081518084526128c6816020860160208601612b41565b601f01601f19169290920160200192915050565b600083516128ec818460208801612b41565b835190830190612900818360208801612b41565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061293c908301846128ae565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156112375761299d83855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612962565b6020808252825182820181905260009190848201906040850190845b81811015611237578351835292840192918401916001016129cc565b60208152600061146260208301846128ae565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610808565b604051601f8201601f191681016001600160401b0381118282101715612a8d57612a8d612c03565b604052919050565b60008219821115612aa857612aa8612bd7565b500190565b60006001600160401b0380831681851680830382111561290057612900612bd7565b600082612ade57612ade612bed565b500490565b6000816000190483118215151615612afd57612afd612bd7565b500290565b600082821015612b1457612b14612bd7565b500390565b60006001600160401b0383811690831681811015612b3957612b39612bd7565b039392505050565b60005b83811015612b5c578181015183820152602001612b44565b838111156115925750506000910152565b600181811c90821680612b8157607f821691505b60208210811415612ba257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bbc57612bbc612bd7565b5060010190565b600082612bd257612bd2612bed565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e4e57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212207745b0893a66cbf2519786f60a0e33c4a3801538c588a5f25a67a60c6db51f5a64736f6c63430008040033

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

0000000000000000000000000000000000000000000000004563918244f4000000000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a457269384d386e5161654c43663846794c4562467876697a715241534c4e3448716f5073505567317872592f00000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 5000000000000000000
Arg [1] : maxSupply (uint256): 2500
Arg [2] : maxMintPerTx (uint256): 10
Arg [3] : maxFreeMintsPerWallet (uint16): 10
Arg [4] : baseUri (string): ipfs://QmZEri8M8nQaeLCf8FyLEbFxvizqRASLN4HqoPsPUg1xrY/

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000004563918244f40000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d5a457269384d386e5161654c43663846794c4562467876
Arg [7] : 697a715241534c4e3448716f5073505567317872592f00000000000000000000


Deployed Bytecode Sourcemap

62453:4103:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24633:305;;;;;;;;;;-1:-1:-1;24633:305:0;;;;;:::i;:::-;;:::i;:::-;;;9633:14:1;;9626:22;9608:41;;9596:2;9581:18;24633:305:0;;;;;;;;62742:33;;;;;;;;;;-1:-1:-1;62742:33:0;;;;;;;;27746:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29249:204::-;;;;;;;;;;-1:-1:-1;29249:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7561:32:1;;;7543:51;;7531:2;7516:18;29249:204:0;7498:102:1;28812:371:0;;;;;;;;;;-1:-1:-1;28812:371:0;;;;;:::i;:::-;;:::i;:::-;;62625:34;;;;;;;;;;;;;;;;;;;15185:25:1;;;15173:2;15158:18;62625:34:0;15140:76:1;23882:303:0;;;;;;;;;;-1:-1:-1;63338:1:0;24136:12;23926:7;24120:13;:28;-1:-1:-1;;24120:46:0;23882:303;;30114:170;;;;;;;;;;-1:-1:-1;30114:170:0;;;;;:::i;:::-;;:::i;62666:39::-;;;;;;;;;;-1:-1:-1;62666:39:0;;;;;;;;;;;15020:6:1;15008:19;;;14990:38;;14978:2;14963:18;62666:39:0;14945:89:1;62596:22:0;;;;;;;;;;;;;;;;65968:143;;;;;;;;;;-1:-1:-1;65968:143:0;;;;;:::i;:::-;;:::i;64778:1182::-;;;;;;:::i;:::-;;:::i;66119:160::-;;;;;;;;;;;;;:::i;64489:67::-;;;;;;;;;;;;;:::i;30355:185::-;;;;;;;;;;-1:-1:-1;30355:185:0;;;;;:::i;:::-;;:::i;52365:85::-;;;;;;;;;;-1:-1:-1;52365:85:0;;;;;:::i;:::-;;:::i;64045:169::-;;;;;;;;;;-1:-1:-1;64045:169:0;;;;;:::i;:::-;;:::i;43878:459::-;;;;;;;;;;-1:-1:-1;43878:459:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49704:86::-;;;;;;;;;;-1:-1:-1;49775:7:0;;;;49704:86;;63769:109;;;;;;;;;;-1:-1:-1;63769:109:0;;;;;:::i;:::-;;:::i;27554:125::-;;;;;;;;;;-1:-1:-1;27554:125:0;;;;;:::i;:::-;;:::i;25002:206::-;;;;;;;;;;-1:-1:-1;25002:206:0;;;;;:::i;:::-;;:::i;54179:103::-;;;;;;;;;;;;;:::i;64418:63::-;;;;;;;;;;;;;:::i;47674:882::-;;;;;;;;;;-1:-1:-1;47674:882:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;62572:17::-;;;;;;;;;;;;;;;;53528:87;;;;;;;;;;-1:-1:-1;53601:6:0;;;;;-1:-1:-1;;;;;53601:6:0;53528:87;;63680:81;;;;;;;;;;-1:-1:-1;63680:81:0;;;;;:::i;:::-;;:::i;27915:104::-;;;;;;;;;;;;;:::i;44727:2498::-;;;;;;;;;;-1:-1:-1;44727:2498:0;;;;;:::i;:::-;;:::i;29525:287::-;;;;;;;;;;-1:-1:-1;29525:287:0;;;;;:::i;:::-;;:::i;63886:151::-;;;;;;;;;;-1:-1:-1;63886:151:0;;;;;:::i;:::-;;:::i;30611:369::-;;;;;;;;;;-1:-1:-1;30611:369:0;;;;;:::i;:::-;;:::i;43310:409::-;;;;;;;;;;-1:-1:-1;43310:409:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;64222:94::-;;;;;;;;;;-1:-1:-1;64222:94:0;;;;;:::i;:::-;;:::i;28090:318::-;;;;;;;;;;-1:-1:-1;28090:318:0;;;;;:::i;:::-;;:::i;64324:86::-;;;;;;;;;;;;;:::i;63472:::-;;;;;;;;;;-1:-1:-1;63540:10:0;;63472:86;;62818:27;;;;;;;;;;;;;;;;29883:164;;;;;;;;;;-1:-1:-1;29883:164:0;;;;;:::i;:::-;;:::i;63566:106::-;;;;;;;;;;-1:-1:-1;63566:106:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;15383:31:1;;;15365:50;;15353:2;15338:18;63566:106:0;15320:101:1;54437:201:0;;;;;;;;;;-1:-1:-1;54437:201:0;;;;;:::i;:::-;;:::i;62782:27::-;;;;;;;;;;-1:-1:-1;62782:27:0;;;;;;;;;;;24633:305;24735:4;-1:-1:-1;;;;;;24772:40:0;;-1:-1:-1;;;24772:40:0;;:105;;-1:-1:-1;;;;;;;24829:48:0;;-1:-1:-1;;;24829:48:0;24772:105;:158;;;-1:-1:-1;;;;;;;;;;20299:40:0;;;24894:36;24752:178;24633:305;-1:-1:-1;;24633:305:0:o;27746:100::-;27800:13;27833:5;27826:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27746:100;:::o;29249:204::-;29317:7;29342:16;29350:7;29342;:16::i;:::-;29337:64;;29367:34;;-1:-1:-1;;;29367:34:0;;;;;;;;;;;29337:64;-1:-1:-1;29421:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29421:24:0;;29249:204::o;28812:371::-;28885:13;28901:24;28917:7;28901:15;:24::i;:::-;28885:40;;28946:5;-1:-1:-1;;;;;28940:11:0;:2;-1:-1:-1;;;;;28940:11:0;;28936:48;;;28960:24;;-1:-1:-1;;;28960:24:0;;;;;;;;;;;28936:48;17047:10;-1:-1:-1;;;;;29001:21:0;;;;;;:63;;-1:-1:-1;29027:37:0;29044:5;17047:10;29883:164;:::i;29027:37::-;29026:38;29001:63;28997:138;;;29088:35;;-1:-1:-1;;;29088:35:0;;;;;;;;;;;28997:138;29147:28;29156:2;29160:7;29169:5;29147:8;:28::i;:::-;28812:371;;;:::o;30114:170::-;30248:28;30258:4;30264:2;30268:7;30248:9;:28::i;65968:143::-;66042:11;64656:10;;64641:11;64625:13;;:27;;;;:::i;:::-;:41;;64617:74;;;;-1:-1:-1;;;64617:74:0;;13721:2:1;64617:74:0;;;13703:21:1;13760:2;13740:18;;;13733:30;-1:-1:-1;;;13779:18:1;;;13772:50;13839:18;;64617:74:0;;;;;;;;;64724:1;64710:11;:15;64702:48;;;;-1:-1:-1;;;64702:48:0;;10842:2:1;64702:48:0;;;10824:21:1;10881:2;10861:18;;;10854:30;-1:-1:-1;;;10900:18:1;;;10893:50;10960:18;;64702:48:0;10814:170:1;64702:48:0;53601:6;;-1:-1:-1;;;;;53601:6:0;;;;;17047:10;53748:23:::1;53740:68;;;;-1:-1:-1::0;;;53740:68:0::1;;;;;;;:::i;:::-;66076:27:::2;66086:3;66091:11;66076:9;:27::i;64778:1182::-:0;64848:11;64564:206;;64656:10;;64641:11;64625:13;;:27;;;;:::i;:::-;:41;;64617:74;;;;-1:-1:-1;;;64617:74:0;;13721:2:1;64617:74:0;;;13703:21:1;13760:2;13740:18;;;13733:30;-1:-1:-1;;;13779:18:1;;;13772:50;13839:18;;64617:74:0;13693:170:1;64617:74:0;64724:1;64710:11;:15;64702:48;;;;-1:-1:-1;;;64702:48:0;;10842:2:1;64702:48:0;;;10824:21:1;10881:2;10861:18;;;10854:30;-1:-1:-1;;;10900:18:1;;;10893:50;10960:18;;64702:48:0;10814:170:1;64702:48:0;64895:22:::1;;64880:11;:37;;;;64872:70;;;::::0;-1:-1:-1;;;64872:70:0;;12666:2:1;64872:70:0::1;::::0;::::1;12648:21:1::0;12705:2;12685:18;;;12678:30;-1:-1:-1;;;12724:18:1;;;12717:50;12784:18;;64872:70:0::1;12638:170:1::0;64872:70:0::1;64961:14;::::0;::::1;;64953:43;;;::::0;-1:-1:-1;;;64953:43:0;;12321:2:1;64953:43:0::1;::::0;::::1;12303:21:1::0;12360:2;12340:18;;;12333:30;-1:-1:-1;;;12379:18:1;;;12372:46;12435:18;;64953:43:0::1;12293:166:1::0;64953:43:0::1;65009:10;65030:11;65022:19;;:5;;:19;;;;:::i;:::-;65009:32;;65054:20;65077:19;65085:10;65077:7;:19::i;:::-;65151:25;::::0;65054:42;;-1:-1:-1;65107:25:0::1;::::0;-1:-1:-1;;;;;65151:41:0;::::1;:25;::::0;;::::1;:41;65147:136;;;65230:25;::::0;:41:::1;::::0;65258:13;;65230:25:::1;;:41;:::i;:::-;65209:62;;65147:136;65293:17;-1:-1:-1::0;;;;;65331:22:0;::::1;::::0;65327:418:::1;;65389:18;-1:-1:-1::0;;;;;65374:33:0::1;:11;:33;;;65370:364;;65458:5;::::0;65437:26:::1;::::0;-1:-1:-1;;;;;65437:26:0;::::1;;:::i;:::-;65428:35;::::0;;::::1;:::i;:::-;::::0;-1:-1:-1;65553:1:0::1;::::0;65495:18;-1:-1:-1;65370:364:0::1;;;65618:5;::::0;65604:19:::1;::::0;::::1;::::0;::::1;;:::i;:::-;65595:28;::::0;;::::1;:::i;:::-;::::0;-1:-1:-1;;65642:24:0::1;::::0;::::1;65685:33;65642:24:::0;65685:33;::::1;:::i;:::-;;;65370:364;65778:5;65765:9;:18;;65757:50;;;::::0;-1:-1:-1;;;65757:50:0;;14430:2:1;65757:50:0::1;::::0;::::1;14412:21:1::0;14469:2;14449:18;;;14442:30;-1:-1:-1;;;14488:18:1;;;14481:49;14547:18;;65757:50:0::1;14402:169:1::0;65757:50:0::1;65818:34;65828:10;65840:11;65818:34;;:9;:34::i;:::-;65884:10;-1:-1:-1::0;;;;;65865:29:0::1;:15;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;65905:47:0::1;::::0;-1:-1:-1;65913:10:0::1;65925:26;65941:10:::0;65925:13;:26:::1;:::i;:::-;-1:-1:-1::0;;;;;26144:19:0;;;;;;;:12;:19;;;;;:29;;-1:-1:-1;;;;;26144:29:0;;;-1:-1:-1;;;26144:29:0;-1:-1:-1;;;;;26144:29:0;;;;;;;;;26080:101;65905:47:::1;64761:1;;;;64778:1182:::0;;:::o;66119:160::-;53601:6;;-1:-1:-1;;;;;53601:6:0;;;;;17047:10;53748:23;53740:68;;;;-1:-1:-1;;;53740:68:0;;;;;;;:::i;:::-;56819:1:::1;57417:7;;:19;;57409:63;;;::::0;-1:-1:-1;;;57409:63:0;;14070:2:1;57409:63:0::1;::::0;::::1;14052:21:1::0;14109:2;14089:18;;;14082:30;14148:33;14128:18;;;14121:61;14199:18;;57409:63:0::1;14042:181:1::0;57409:63:0::1;56819:1;57550:7;:18:::0;66195:21:::2;66227:44;66253:7;53601:6:::0;;-1:-1:-1;;;;;53601:6:0;;;;;;53528:87;66253:7:::2;66263;66227:17;:44::i;:::-;-1:-1:-1::0;56775:1:0::1;57729:7;:22:::0;66119:160::o;64489:67::-;53601:6;;-1:-1:-1;;;;;53601:6:0;;;;;17047:10;53748:23;53740:68;;;;-1:-1:-1;;;53740:68:0;;;;;;;:::i;:::-;64538:10:::1;:8;:10::i;:::-;64489:67::o:0;30355:185::-;30493:39;30510:4;30516:2;30520:7;30493:39;;;;;;;;;;;;:16;:39::i;52365:85::-;52422:20;52428:7;52437:4;52422:5;:20::i;:::-;52365:85;:::o;64045:169::-;53601:6;;-1:-1:-1;;;;;53601:6:0;;;;;17047:10;53748:23;53740:68;;;;-1:-1:-1;;;53740:68:0;;;;;;;:::i;:::-;64134:15:::1;::::0;::::1;::::0;::::1;;;64133:16;64125:45;;;::::0;-1:-1:-1;;;64125:45:0;;13376:2:1;64125:45:0::1;::::0;::::1;13358:21:1::0;13415:2;13395:18;;;13388:30;-1:-1:-1;;;13434:18:1;;;13427:46;13490:18;;64125:45:0::1;13348:166:1::0;64125:45:0::1;64181:25:::0;;::::1;::::0;:8:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;64045:169:::0;:::o;43878:459::-;44044:15;;43958:23;;44019:22;44044:15;-1:-1:-1;;;;;44111:36:0;;;;;-1:-1:-1;;;44111:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;44111:36:0;;-1:-1:-1;;44111:36:0;;;;;;;;;;;;44074:73;;44167:9;44162:125;44183:14;44178:1;:19;44162:125;;44239:32;44259:8;44268:1;44259:11;;;;;;-1:-1:-1;;;44259:11:0;;;;;;;;;;;;;;;44239:19;:32::i;:::-;44223:10;44234:1;44223:13;;;;;;-1:-1:-1;;;44223:13:0;;;;;;;;;;;;;;;;;;:48;44199:3;;44162:125;;;-1:-1:-1;44308:10:0;43878:459;-1:-1:-1;;;43878:459:0:o;63769:109::-;53601:6;;-1:-1:-1;;;;;53601:6:0;;;;;17047:10;53748:23;53740:68;;;;-1:-1:-1;;;53740:68:0;;;;;;;:::i;:::-;63838:22:::1;:32:::0;63769:109::o;27554:125::-;27618:7;27645:21;27658:7;27645:12;:21::i;:::-;:26;;27554:125;-1:-1:-1;;27554:125:0:o;25002:206::-;25066:7;-1:-1:-1;;;;;25090:19:0;;25086:60;;25118:28;;-1:-1:-1;;;25118:28:0;;;;;;;;;;;25086:60;-1:-1:-1;;;;;;25172:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25172:27:0;;25002:206::o;54179:103::-;53601:6;;-1:-1:-1;;;;;53601:6:0;;;;;17047:10;53748:23;53740:68;;;;-1:-1:-1;;;53740:68:0;;;;;;;:::i;:::-;54244:30:::1;54271:1;54244:18;:30::i;64418:63::-:0;53601:6;;-1:-1:-1;;;;;53601:6:0;;;;;17047:10;53748:23;53740:68;;;;-1:-1:-1;;;53740:68:0;;;;;;;:::i;:::-;64465:8:::1;:6;:8::i;47674:882::-:0;47735:16;47789:19;47823:25;47863:22;47888:16;47898:5;47888:9;:16::i;:::-;47863:41;;47919:25;47961:14;-1:-1:-1;;;;;47947:29:0;;;;;-1:-1:-1;;;47947:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47947:29:0;;47919:57;;47991:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;47991:31:0;63338:1;48037:471;48086:14;48071:11;:29;48037:471;;48138:14;;;;:11;:14;;;;;;;;;48126:26;;;;;;;;;-1:-1:-1;;;;;48126:26:0;;;;-1:-1:-1;;;48126:26:0;;-1:-1:-1;;;;;48126:26:0;;;;;;;;-1:-1:-1;;;48126:26:0;;;;;;;;;;;;;;;;-1:-1:-1;48171:73:0;;48216:8;;48171:73;48266:14;;-1:-1:-1;;;;;48266:28:0;;48262:111;;48339:14;;;-1:-1:-1;48262:111:0;48416:5;-1:-1:-1;;;;;48395:26:0;:17;-1:-1:-1;;;;;48395:26:0;;48391:102;;;48472:1;48446:8;48455:13;;;;;;48446:23;;;;;;-1:-1:-1;;;48446:23:0;;;;;;;;;;;;;;:27;;;;;48391:102;48102:3;;48037:471;;;-1:-1:-1;48529:8:0;;47674:882;-1:-1:-1;;;;;;47674:882:0:o;63680:81::-;53601:6;;-1:-1:-1;;;;;53601:6:0;;;;;17047:10;53748:23;53740:68;;;;-1:-1:-1;;;53740:68:0;;;;;;;:::i;:::-;63740:5:::1;:13:::0;63680:81::o;27915:104::-;27971:13;28004:7;27997:14;;;;;:::i;44727:2498::-;44853:16;44920:4;44911:5;:13;44907:45;;44933:19;;-1:-1:-1;;;44933:19:0;;;;;;;;;;;44907:45;44967:19;45021:13;;63338:1;45112:5;:23;45108:87;;;63338:1;45156:23;;45108:87;45275:9;45268:4;:16;45264:73;;;45312:9;45305:16;;45264:73;45351:25;45379:16;45389:5;45379:9;:16::i;:::-;45351:44;;45573:4;45565:5;:12;45561:278;;;45620:12;;;45655:31;;;45651:111;;;45731:11;45711:31;;45651:111;45561:278;;;;-1:-1:-1;45822:1:0;45561:278;45853:25;45895:17;-1:-1:-1;;;;;45881:32:0;;;;;-1:-1:-1;;;45881:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45881:32:0;-1:-1:-1;45853:60:0;-1:-1:-1;45932:22:0;45928:78;;45982:8;-1:-1:-1;45975:15:0;;-1:-1:-1;;;45975:15:0;45928:78;46150:31;46184:26;46204:5;46184:19;:26::i;:::-;46150:60;;46225:25;46470:9;:16;;;46465:92;;-1:-1:-1;46527:14:0;;46465:92;46588:5;46571:477;46600:4;46595:1;:9;;:45;;;;;46623:17;46608:11;:32;;46595:45;46571:477;;;46678:14;;;;:11;:14;;;;;;;;;46666:26;;;;;;;;;-1:-1:-1;;;;;46666:26:0;;;;-1:-1:-1;;;46666:26:0;;-1:-1:-1;;;;;46666:26:0;;;;;;;;-1:-1:-1;;;46666:26:0;;;;;;;;;;;;;;;;-1:-1:-1;46711:73:0;;46756:8;;46711:73;46806:14;;-1:-1:-1;;;;;46806:28:0;;46802:111;;46879:14;;;-1:-1:-1;46802:111:0;46956:5;-1:-1:-1;;;;;46935:26:0;:17;-1:-1:-1;;;;;46935:26:0;;46931:102;;;47012:1;46986:8;46995:13;;;;;;46986:23;;;;;;-1:-1:-1;;;46986:23:0;;;;;;;;;;;;;;:27;;;;;46931:102;46642:3;;46571:477;;;-1:-1:-1;;;47133:29:0;;;-1:-1:-1;47140:8:0;;-1:-1:-1;;44727:2498:0;;;;;;:::o;29525:287::-;-1:-1:-1;;;;;29624:24:0;;17047:10;29624:24;29620:54;;;29657:17;;-1:-1:-1;;;29657:17:0;;;;;;;;;;;29620:54;17047:10;29687:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29687:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29687:53:0;;;;;;;;;;29756:48;;9608:41:1;;;29687:42:0;;17047:10;29756:48;;9581:18:1;29756:48:0;;;;;;;29525:287;;:::o;63886:151::-;53601:6;;-1:-1:-1;;;;;53601:6:0;;;;;17047:10;53748:23;53740:68;;;;-1:-1:-1;;;53740:68:0;;;;;;;:::i;:::-;63980:25:::1;:49:::0;;-1:-1:-1;;63980:49:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;63886:151::o;30611:369::-;30778:28;30788:4;30794:2;30798:7;30778:9;:28::i;:::-;-1:-1:-1;;;;;30821:13:0;;9302:19;:23;;30821:76;;;;;30841:56;30872:4;30878:2;30882:7;30891:5;30841:30;:56::i;:::-;30840:57;30821:76;30817:156;;;30921:40;;-1:-1:-1;;;30921:40:0;;;;;;;;;;;30817:156;30611:369;;;;:::o;43310:409::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63338:1:0;43457:25;;;:53;;;43497:13;;43486:7;:24;;43457:53;43453:102;;;43534:9;43310:409;-1:-1:-1;;43310:409:0:o;43453:102::-;-1:-1:-1;43577:20:0;;;;:11;:20;;;;;;;;;43565:32;;;;;;;;;-1:-1:-1;;;;;43565:32:0;;;;-1:-1:-1;;;43565:32:0;;-1:-1:-1;;;;;43565:32:0;;;;;;;;-1:-1:-1;;;43565:32:0;;;;;;;;;;;;;;;;43608:65;;43652:9;43310:409;-1:-1:-1;;43310:409:0:o;43608:65::-;43690:21;43703:7;43690:12;:21::i;64222:94::-;53601:6;;-1:-1:-1;;;;;53601:6:0;;;;;17047:10;53748:23;53740:68;;;;-1:-1:-1;;;53740:68:0;;;;;;;:::i;:::-;64286:14:::1;:22:::0;;-1:-1:-1;;64286:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64222:94::o;28090:318::-;28163:13;28194:16;28202:7;28194;:16::i;:::-;28189:59;;28219:29;;-1:-1:-1;;;28219:29:0;;;;;;;;;;;28189:59;28261:21;28285:10;:8;:10::i;:::-;28261:34;;28319:7;28313:21;28338:1;28313:26;;:87;;;;;;;;;;;;;;;;;28366:7;28375:18;:7;:16;:18::i;:::-;28349:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28306:94;28090:318;-1:-1:-1;;;28090:318:0:o;64324:86::-;53601:6;;-1:-1:-1;;;;;53601:6:0;;;;;17047:10;53748:23;53740:68;;;;-1:-1:-1;;;53740:68:0;;;;;;;:::i;:::-;64380:15:::1;:22:::0;;-1:-1:-1;;64380:22:0::1;;;::::0;;64324:86::o;29883:164::-;-1:-1:-1;;;;;30004:25:0;;;29980:4;30004:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29883:164::o;63566:106::-;63625:6;63651:13;63659:4;63651:7;:13::i;54437:201::-;53601:6;;-1:-1:-1;;;;;53601:6:0;;;;;17047:10;53748:23;53740:68;;;;-1:-1:-1;;;53740:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54526:22:0;::::1;54518:73;;;::::0;-1:-1:-1;;;54518:73:0;;10435:2:1;54518:73:0::1;::::0;::::1;10417:21:1::0;10474:2;10454:18;;;10447:30;10513:34;10493:18;;;10486:62;-1:-1:-1;;;10564:18:1;;;10557:36;10610:19;;54518:73:0::1;10407:228:1::0;54518:73:0::1;54602:28;54621:8;54602:18;:28::i;31235:174::-:0;31292:4;31335:7;63338:1;31316:26;;:53;;;;;31356:13;;31346:7;:23;31316:53;:85;;;;-1:-1:-1;;31374:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31374:27:0;;;;31373:28;;31235:174::o;39392:196::-;39507:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39507:29:0;-1:-1:-1;;;;;39507:29:0;;;;;;;;;39552:28;;39507:24;;39552:28;;;;;;;39392:196;;;:::o;34335:2130::-;34450:35;34488:21;34501:7;34488:12;:21::i;:::-;34450:59;;34548:4;-1:-1:-1;;;;;34526:26:0;:13;:18;;;-1:-1:-1;;;;;34526:26:0;;34522:67;;34561:28;;-1:-1:-1;;;34561:28:0;;;;;;;;;;;34522:67;34602:22;17047:10;-1:-1:-1;;;;;34628:20:0;;;;:73;;-1:-1:-1;34665:36:0;34682:4;17047:10;29883:164;:::i;34665:36::-;34628:126;;;-1:-1:-1;17047:10:0;34718:20;34730:7;34718:11;:20::i;:::-;-1:-1:-1;;;;;34718:36:0;;34628:126;34602:153;;34773:17;34768:66;;34799:35;;-1:-1:-1;;;34799:35:0;;;;;;;;;;;34768:66;-1:-1:-1;;;;;34849:16:0;;34845:52;;34874:23;;-1:-1:-1;;;34874:23:0;;;;;;;;;;;34845:52;34910:43;34932:4;34938:2;34942:7;34951:1;34910:21;:43::i;:::-;35018:35;35035:1;35039:7;35048:4;35018:8;:35::i;:::-;-1:-1:-1;;;;;35349:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35349:31:0;;;-1:-1:-1;;;;;35349:31:0;;;-1:-1:-1;;35349:31:0;;;;;;;35395:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35395:29:0;;;;;;;;;;;35475:20;;;:11;:20;;;;;;35510:18;;-1:-1:-1;;;;;;35543:49:0;;;;-1:-1:-1;;;35576:15:0;35543:49;;;;;;;;;;35866:11;;35926:24;;;;;35969:13;;35475:20;;35926:24;;35969:13;35965:384;;36179:13;;36164:11;:28;36160:174;;36217:20;;36286:28;;;;-1:-1:-1;;;;;36260:54:0;-1:-1:-1;;;36260:54:0;-1:-1:-1;;;;;;36260:54:0;;;-1:-1:-1;;;;;36217:20:0;;36260:54;;;;36160:174;34335:2130;;;36396:7;36392:2;-1:-1:-1;;;;;36377:27:0;36386:4;-1:-1:-1;;;;;36377:27:0;-1:-1:-1;;;;;;;;;;;36377:27:0;;;;;;;;;36415:42;34335:2130;;;;;:::o;31417:104::-;31486:27;31496:2;31500:8;31486:27;;;;;;;;;;;;:9;:27::i;25780:112::-;-1:-1:-1;;;;;25861:19:0;25835:6;25861:19;;;:12;:19;;;;;:23;-1:-1:-1;;;25861:23:0;;-1:-1:-1;;;;;25861:23:0;;25780:112::o;10268:317::-;10383:6;10358:21;:31;;10350:73;;;;-1:-1:-1;;;10350:73:0;;11618:2:1;10350:73:0;;;11600:21:1;11657:2;11637:18;;;11630:30;11696:31;11676:18;;;11669:59;11745:18;;10350:73:0;11590:179:1;10350:73:0;10437:12;10455:9;-1:-1:-1;;;;;10455:14:0;10477:6;10455:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10436:52;;;10507:7;10499:78;;;;-1:-1:-1;;;10499:78:0;;11191:2:1;10499:78:0;;;11173:21:1;11230:2;11210:18;;;11203:30;11269:34;11249:18;;;11242:62;11340:28;11320:18;;;11313:56;11386:19;;10499:78:0;11163:248:1;50763:120:0;49775:7;;;;50299:41;;;;-1:-1:-1;;;50299:41:0;;10086:2:1;50299:41:0;;;10068:21:1;10125:2;10105:18;;;10098:30;-1:-1:-1;;;10144:18:1;;;10137:50;10204:18;;50299:41:0;10058:170:1;50299:41:0;50822:7:::1;:15:::0;;-1:-1:-1;;50822:15:0::1;::::0;;50853:22:::1;17047:10:::0;50862:12:::1;50853:22;::::0;-1:-1:-1;;;;;7561:32:1;;;7543:51;;7531:2;7516:18;50853:22:0::1;;;;;;;50763:120::o:0;36866:2408::-;36946:35;36984:21;36997:7;36984:12;:21::i;:::-;37033:18;;36946:59;;-1:-1:-1;37064:290:0;;;;37098:22;17047:10;-1:-1:-1;;;;;37124:20:0;;;;:77;;-1:-1:-1;37165:36:0;37182:4;17047:10;29883:164;:::i;37165:36::-;37124:134;;;-1:-1:-1;17047:10:0;37222:20;37234:7;37222:11;:20::i;:::-;-1:-1:-1;;;;;37222:36:0;;37124:134;37098:161;;37281:17;37276:66;;37307:35;;-1:-1:-1;;;37307:35:0;;;;;;;;;;;37276:66;37064:290;;37366:51;37388:4;37402:1;37406:7;37415:1;37366:21;:51::i;:::-;37482:35;37499:1;37503:7;37512:4;37482:8;:35::i;:::-;-1:-1:-1;;;;;37847:18:0;;;37813:31;37847:18;;;:12;:18;;;;;;;;37880:24;;-1:-1:-1;;;;;;;;;;37880:24:0;;;;;;;;;-1:-1:-1;;37880:24:0;;;;37919:29;;;;;37903:1;37919:29;;;;;;;;-1:-1:-1;;37919:29:0;;;;;;;;;;38081:20;;;:11;:20;;;;;;38116;;-1:-1:-1;;;;38184:15:0;38151:49;;;-1:-1:-1;;;38151:49:0;-1:-1:-1;;;;;;38151:49:0;;;;;;;;;;38215:22;-1:-1:-1;;;38215:22:0;;;38507:11;;;38567:24;;;;;38610:13;;37847:18;;38567:24;;38610:13;38606:384;;38820:13;;38805:11;:28;38801:174;;38858:20;;38927:28;;;;-1:-1:-1;;;;;38901:54:0;-1:-1:-1;;;38901:54:0;-1:-1:-1;;;;;;38901:54:0;;;-1:-1:-1;;;;;38858:20:0;;38901:54;;;;38801:174;-1:-1:-1;;39018:35:0;;39045:7;;-1:-1:-1;39041:1:0;;-1:-1:-1;;;;;;39018:35:0;;;-1:-1:-1;;;;;;;;;;;39018:35:0;39041:1;;39018:35;-1:-1:-1;;39241:12:0;:14;;;;;;-1:-1:-1;;36866:2408:0:o;26383:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26494:7:0;;63338:1;26543:23;;:47;;;;;26577:13;;26570:4;:20;26543:47;26539:886;;;26611:31;26645:17;;;:11;:17;;;;;;;;;26611:51;;;;;;;;;-1:-1:-1;;;;;26611:51:0;;;;-1:-1:-1;;;26611:51:0;;-1:-1:-1;;;;;26611:51:0;;;;;;;;-1:-1:-1;;;26611:51:0;;;;;;;;;;;;;;26681:729;;26731:14;;-1:-1:-1;;;;;26731:28:0;;26727:101;;26795:9;26383:1109;-1:-1:-1;;;26383:1109:0:o;26727:101::-;-1:-1:-1;;;27170:6:0;27215:17;;;;:11;:17;;;;;;;;;27203:29;;;;;;;;;-1:-1:-1;;;;;27203:29:0;;;;;-1:-1:-1;;;27203:29:0;;-1:-1:-1;;;;;27203:29:0;;;;;;;;-1:-1:-1;;;27203:29:0;;;;;;;;;;;;;27263:28;27259:109;;27331:9;26383:1109;-1:-1:-1;;;26383:1109:0:o;27259:109::-;27130:261;;;26539:886;;27453:31;;-1:-1:-1;;;27453:31:0;;;;;;;;;;;54798:191;54891:6;;;-1:-1:-1;;;;;54908:17:0;;;54891:6;54908:17;;;-1:-1:-1;;;;;;54908:17:0;;;;;;54941:40;;54891:6;;;;;;;;54941:40;;54872:16;;54941:40;54798:191;;:::o;50504:118::-;49775:7;;;;50029:9;50021:38;;;;-1:-1:-1;;;50021:38:0;;11976:2:1;50021:38:0;;;11958:21:1;12015:2;11995:18;;;11988:30;-1:-1:-1;;;12034:18:1;;;12027:46;12090:18;;50021:38:0;11948:166:1;50021:38:0;50564:7:::1;:14:::0;;-1:-1:-1;;50564:14:0::1;50574:4;50564:14;::::0;;50594:20:::1;50601:12;17047:10:::0;;16967:98;40080:667;40264:72;;-1:-1:-1;;;40264:72:0;;40243:4;;-1:-1:-1;;;;;40264:36:0;;;;;:72;;17047:10;;40315:4;;40321:7;;40330:5;;40264:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40264:72:0;;;;;;;;-1:-1:-1;;40264:72:0;;;;;;;;;;;;:::i;:::-;;;40260:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40498:13:0;;40494:235;;40544:40;;-1:-1:-1;;;40544:40:0;;;;;;;;;;;40494:235;40687:6;40681:13;40672:6;40668:2;40664:15;40657:38;40260:480;-1:-1:-1;;;;;;40383:55:0;-1:-1:-1;;;40383:55:0;;-1:-1:-1;40260:480:0;40080:667;;;;;;:::o;63355:109::-;63415:13;63448:8;63441:15;;;;;:::i;17557:723::-;17613:13;17834:10;17830:53;;-1:-1:-1;;17861:10:0;;;;;;;;;;;;-1:-1:-1;;;17861:10:0;;;;;17557:723::o;17830:53::-;17908:5;17893:12;17949:78;17956:9;;17949:78;;17982:8;;;;:::i;:::-;;-1:-1:-1;18005:10:0;;-1:-1:-1;18013:2:0;18005:10;;:::i;:::-;;;17949:78;;;18037:19;18069:6;-1:-1:-1;;;;;18059:17:0;;;;;-1:-1:-1;;;18059:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18059:17:0;;18037:39;;18087:154;18094:10;;18087:154;;18121:11;18131:1;18121:11;;:::i;:::-;;-1:-1:-1;18190:10:0;18198:2;18190:5;:10;:::i;:::-;18177:24;;:2;:24;:::i;:::-;18164:39;;18147:6;18154;18147:14;;;;;;-1:-1:-1;;;18147:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18147:56:0;;;;;;;;-1:-1:-1;18218:11:0;18227:2;18218:11;;:::i;:::-;;;18087:154;;66287:266;66484:61;66512:4;66518:2;66522:12;66536:8;66484:27;:61::i;31884:163::-;32007:32;32013:2;32017:8;32027:5;32034:4;32007:5;:32::i;51598:294::-;49775:7;;;;51847:37;;;51868:16;;-1:-1:-1;;;51868:16:0;;;;;;;;;;;32306:1775;32445:20;32468:13;-1:-1:-1;;;;;32496:16:0;;32492:48;;32521:19;;-1:-1:-1;;;32521:19:0;;;;;;;;;;;32492:48;32555:13;32551:44;;32577:18;;-1:-1:-1;;;32577:18:0;;;;;;;;;;;32551:44;32608:61;32638:1;32642:2;32646:12;32660:8;32608:21;:61::i;:::-;-1:-1:-1;;;;;32946:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33005:49:0;;-1:-1:-1;;;;;32946:44:0;;;;;;;33005:49;;;;-1:-1:-1;;32946:44:0;;;;;;33005:49;;;;;;;;;;;;;;;;33071:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33121:66:0;;;;-1:-1:-1;;;33171:15:0;33121:66;;;;;;;;;;33071:25;33268:23;;;33312:4;:23;;;;-1:-1:-1;;;;;;33320:13:0;;9302:19;:23;;33320:15;33308:641;;;33356:314;33387:38;;33412:12;;-1:-1:-1;;;;;33387:38:0;;;33404:1;;-1:-1:-1;;;;;;;;;;;33387:38:0;33404:1;;33387:38;33453:69;33492:1;33496:2;33500:14;;;;;;33516:5;33453:30;:69::i;:::-;33448:174;;33558:40;;-1:-1:-1;;;33558:40:0;;;;;;;;;;;33448:174;33665:3;33649:12;:19;;33356:314;;33751:12;33734:13;;:29;33730:43;;33765:8;;;33730:43;33308:641;;;33814:120;33845:40;;33870:14;;;;;-1:-1:-1;;;;;33845:40:0;;;33862:1;;-1:-1:-1;;;;;;;;;;;33845:40:0;33862:1;;33845:40;33929:3;33913:12;:19;;33814:120;;33308:641;-1:-1:-1;33963:13:0;:28;34013:60;30611:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:2;;753:1;750;743:12;768:196;827:6;880:2;868:9;859:7;855:23;851:32;848:2;;;901:6;893;886:22;848:2;929:29;948:9;929:29;:::i;969:270::-;1037:6;1045;1098:2;1086:9;1077:7;1073:23;1069:32;1066:2;;;1119:6;1111;1104:22;1066:2;1147:29;1166:9;1147:29;:::i;:::-;1137:39;;1195:38;1229:2;1218:9;1214:18;1195:38;:::i;:::-;1185:48;;1056:183;;;;;:::o;1244:338::-;1321:6;1329;1337;1390:2;1378:9;1369:7;1365:23;1361:32;1358:2;;;1411:6;1403;1396:22;1358:2;1439:29;1458:9;1439:29;:::i;:::-;1429:39;;1487:38;1521:2;1510:9;1506:18;1487:38;:::i;:::-;1477:48;;1572:2;1561:9;1557:18;1544:32;1534:42;;1348:234;;;;;:::o;1587:696::-;1682:6;1690;1698;1706;1759:3;1747:9;1738:7;1734:23;1730:33;1727:2;;;1781:6;1773;1766:22;1727:2;1809:29;1828:9;1809:29;:::i;:::-;1799:39;;1857:38;1891:2;1880:9;1876:18;1857:38;:::i;:::-;1847:48;;1942:2;1931:9;1927:18;1914:32;1904:42;;1997:2;1986:9;1982:18;1969:32;-1:-1:-1;;;;;2016:6:1;2013:30;2010:2;;;2061:6;2053;2046:22;2010:2;2089:22;;2142:4;2134:13;;2130:27;-1:-1:-1;2120:2:1;;2176:6;2168;2161:22;2120:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1717:566;;;;;;;:::o;2288:264::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2435:6;2427;2420:22;2382:2;2463:29;2482:9;2463:29;:::i;:::-;2453:39;;2511:35;2542:2;2531:9;2527:18;2511:35;:::i;2557:264::-;2625:6;2633;2686:2;2674:9;2665:7;2661:23;2657:32;2654:2;;;2707:6;2699;2692:22;2654:2;2735:29;2754:9;2735:29;:::i;:::-;2725:39;2811:2;2796:18;;;;2783:32;;-1:-1:-1;;;2644:177:1:o;2826:332::-;2903:6;2911;2919;2972:2;2960:9;2951:7;2947:23;2943:32;2940:2;;;2993:6;2985;2978:22;2940:2;3021:29;3040:9;3021:29;:::i;:::-;3011:39;3097:2;3082:18;;3069:32;;-1:-1:-1;3148:2:1;3133:18;;;3120:32;;2930:228;-1:-1:-1;;;2930:228:1:o;3163:1002::-;3247:6;3278:2;3321;3309:9;3300:7;3296:23;3292:32;3289:2;;;3342:6;3334;3327:22;3289:2;3387:9;3374:23;-1:-1:-1;;;;;3457:2:1;3449:6;3446:14;3443:2;;;3478:6;3470;3463:22;3443:2;3521:6;3510:9;3506:22;3496:32;;3566:7;3559:4;3555:2;3551:13;3547:27;3537:2;;3593:6;3585;3578:22;3537:2;3634;3621:16;3656:2;3652;3649:10;3646:2;;;3662:18;;:::i;:::-;3708:2;3705:1;3701:10;3691:20;;3731:28;3755:2;3751;3747:11;3731:28;:::i;:::-;3793:15;;;3824:12;;;;3856:11;;;3886;;;3882:20;;3879:33;-1:-1:-1;3876:2:1;;;3930:6;3922;3915:22;3876:2;3957:6;3948:15;;3972:163;3986:2;3983:1;3980:9;3972:163;;;4043:17;;4031:30;;4004:1;3997:9;;;;;4081:12;;;;4113;;3972:163;;;-1:-1:-1;4154:5:1;3258:907;-1:-1:-1;;;;;;;;3258:907:1:o;4170:190::-;4226:6;4279:2;4267:9;4258:7;4254:23;4250:32;4247:2;;;4300:6;4292;4285:22;4247:2;4328:26;4344:9;4328:26;:::i;4365:255::-;4423:6;4476:2;4464:9;4455:7;4451:23;4447:32;4444:2;;;4497:6;4489;4482:22;4444:2;4541:9;4528:23;4560:30;4584:5;4560:30;:::i;4625:259::-;4694:6;4747:2;4735:9;4726:7;4722:23;4718:32;4715:2;;;4768:6;4760;4753:22;4715:2;4805:9;4799:16;4824:30;4848:5;4824:30;:::i;4889:480::-;4958:6;5011:2;4999:9;4990:7;4986:23;4982:32;4979:2;;;5032:6;5024;5017:22;4979:2;5077:9;5064:23;-1:-1:-1;;;;;5102:6:1;5099:30;5096:2;;;5147:6;5139;5132:22;5096:2;5175:22;;5228:4;5220:13;;5216:27;-1:-1:-1;5206:2:1;;5262:6;5254;5247:22;5206:2;5290:73;5355:7;5350:2;5337:16;5332:2;5328;5324:11;5290:73;:::i;5374:292::-;5432:6;5485:2;5473:9;5464:7;5460:23;5456:32;5453:2;;;5506:6;5498;5491:22;5453:2;5550:9;5537:23;5600:6;5593:5;5589:18;5582:5;5579:29;5569:2;;5627:6;5619;5612:22;5671:190;5730:6;5783:2;5771:9;5762:7;5758:23;5754:32;5751:2;;;5804:6;5796;5789:22;5751:2;-1:-1:-1;5832:23:1;;5741:120;-1:-1:-1;5741:120:1:o;5866:296::-;5924:6;5977:2;5965:9;5956:7;5952:23;5948:32;5945:2;;;5998:6;5990;5983:22;5945:2;6042:9;6029:23;6092:10;6085:5;6081:22;6074:5;6071:33;6061:2;;6123:6;6115;6108:22;6167:257;6208:3;6246:5;6240:12;6273:6;6268:3;6261:19;6289:63;6345:6;6338:4;6333:3;6329:14;6322:4;6315:5;6311:16;6289:63;:::i;:::-;6406:2;6385:15;-1:-1:-1;;6381:29:1;6372:39;;;;6413:4;6368:50;;6216:208;-1:-1:-1;;6216:208:1:o;6712:470::-;6891:3;6929:6;6923:13;6945:53;6991:6;6986:3;6979:4;6971:6;6967:17;6945:53;:::i;:::-;7061:13;;7020:16;;;;7083:57;7061:13;7020:16;7117:4;7105:17;;7083:57;:::i;:::-;7156:20;;6899:283;-1:-1:-1;;;;6899:283:1:o;7605:488::-;-1:-1:-1;;;;;7874:15:1;;;7856:34;;7926:15;;7921:2;7906:18;;7899:43;7973:2;7958:18;;7951:34;;;8021:3;8016:2;8001:18;;7994:31;;;7799:4;;8042:45;;8067:19;;8059:6;8042:45;:::i;:::-;8034:53;7808:285;-1:-1:-1;;;;;;7808:285:1:o;8098:725::-;8331:2;8383:21;;;8453:13;;8356:18;;;8475:22;;;8302:4;;8331:2;8554:15;;;;8528:2;8513:18;;;8302:4;8600:197;8614:6;8611:1;8608:13;8600:197;;;8663:52;8711:3;8702:6;8696:13;6513:12;;-1:-1:-1;;;;;6509:38:1;6497:51;;6601:4;6590:16;;;6584:23;-1:-1:-1;;;;;6580:48:1;6564:14;;;6557:72;6692:4;6681:16;;;6675:23;6668:31;6661:39;6645:14;;6638:63;6487:220;8663:52;8772:15;;;;8744:4;8735:14;;;;;8636:1;8629:9;8600:197;;8828:635;8999:2;9051:21;;;9121:13;;9024:18;;;9143:22;;;8970:4;;8999:2;9222:15;;;;9196:2;9181:18;;;8970:4;9268:169;9282:6;9279:1;9276:13;9268:169;;;9343:13;;9331:26;;9412:15;;;;9377:12;;;;9304:1;9297:9;9268:169;;9660:219;9809:2;9798:9;9791:21;9772:4;9829:44;9869:2;9858:9;9854:18;9846:6;9829:44;:::i;12813:356::-;13015:2;12997:21;;;13034:18;;;13027:30;13093:34;13088:2;13073:18;;13066:62;13160:2;13145:18;;12987:182::o;14576:265::-;6513:12;;-1:-1:-1;;;;;6509:38:1;6497:51;;6601:4;6590:16;;;6584:23;-1:-1:-1;;;;;6580:48:1;6564:14;;;6557:72;6692:4;6681:16;;;6675:23;6668:31;6661:39;6645:14;;;6638:63;14772:2;14757:18;;14784:51;6487:220;15426:275;15497:2;15491:9;15562:2;15543:13;;-1:-1:-1;;15539:27:1;15527:40;;-1:-1:-1;;;;;15582:34:1;;15618:22;;;15579:62;15576:2;;;15644:18;;:::i;:::-;15680:2;15673:22;15471:230;;-1:-1:-1;15471:230:1:o;15706:128::-;15746:3;15777:1;15773:6;15770:1;15767:13;15764:2;;;15783:18;;:::i;:::-;-1:-1:-1;15819:9:1;;15754:80::o;15839:236::-;15878:3;-1:-1:-1;;;;;15951:2:1;15948:1;15944:10;15981:2;15978:1;15974:10;16012:3;16008:2;16004:12;15999:3;15996:21;15993:2;;;16020:18;;:::i;16080:120::-;16120:1;16146;16136:2;;16151:18;;:::i;:::-;-1:-1:-1;16185:9:1;;16126:74::o;16205:168::-;16245:7;16311:1;16307;16303:6;16299:14;16296:1;16293:21;16288:1;16281:9;16274:17;16270:45;16267:2;;;16318:18;;:::i;:::-;-1:-1:-1;16358:9:1;;16257:116::o;16378:125::-;16418:4;16446:1;16443;16440:8;16437:2;;;16451:18;;:::i;:::-;-1:-1:-1;16488:9:1;;16427:76::o;16508:229::-;16547:4;-1:-1:-1;;;;;16644:10:1;;;;16614;;16666:12;;;16663:2;;;16681:18;;:::i;:::-;16718:13;;16556:181;-1:-1:-1;;;16556:181:1:o;16742:258::-;16814:1;16824:113;16838:6;16835:1;16832:13;16824:113;;;16914:11;;;16908:18;16895:11;;;16888:39;16860:2;16853:10;16824:113;;;16955:6;16952:1;16949:13;16946:2;;;-1:-1:-1;;16990:1:1;16972:16;;16965:27;16795:205::o;17005:380::-;17084:1;17080:12;;;;17127;;;17148:2;;17202:4;17194:6;17190:17;17180:27;;17148:2;17255;17247:6;17244:14;17224:18;17221:38;17218:2;;;17301:10;17296:3;17292:20;17289:1;17282:31;17336:4;17333:1;17326:15;17364:4;17361:1;17354:15;17218:2;;17060:325;;;:::o;17390:135::-;17429:3;-1:-1:-1;;17450:17:1;;17447:2;;;17470:18;;:::i;:::-;-1:-1:-1;17517:1:1;17506:13;;17437:88::o;17530:112::-;17562:1;17588;17578:2;;17593:18;;:::i;:::-;-1:-1:-1;17627:9:1;;17568:74::o;17647:127::-;17708:10;17703:3;17699:20;17696:1;17689:31;17739:4;17736:1;17729:15;17763:4;17760:1;17753:15;17779:127;17840:10;17835:3;17831:20;17828:1;17821:31;17871:4;17868:1;17861:15;17895:4;17892:1;17885:15;17911:127;17972:10;17967:3;17963:20;17960:1;17953:31;18003:4;18000:1;17993:15;18027:4;18024:1;18017:15;18043:131;-1:-1:-1;;;;;;18117:32:1;;18107:43;;18097:2;;18164:1;18161;18154:12

Swarm Source

ipfs://7745b0893a66cbf2519786f60a0e33c4a3801538c588a5f25a67a60c6db51f5a
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.