ETH Price: $2,391.97 (+0.11%)

Token

Hungover Apes Party Club (HAPC)
 

Overview

Max Total Supply

1,248 HAPC

Holders

312

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 HAPC
0xe72f5eaa43048a166cc7d0e4347fa4a62c61cfdd
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:
HungoverApes

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs
// commit e03a377 - 2/26/2022
pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 See {IERC721Enumerable-totalSupply}.
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 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);

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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


// Authored by NoahN w/ Metavate ✌️
pragma solidity ^0.8.11;






contract HungoverApes is ERC721A, ReentrancyGuard{ 
  	using Strings for uint256;

    uint256 public cost = 0.08 ether;
    uint256 public discountCost = cost - 0.02 ether;
    uint256 public maxSupply = 7777;

    bool public sale = false;
	bool public presale = false;

	string public baseURI;

	bytes32 public merkleRoot;

	address private owner;
	address private admin = 0x8DFdD0FF4661abd44B06b1204C6334eACc8575af;

	mapping (address => uint256) public discountMints;


	constructor(string memory _name, string memory _symbol)
    ERC721A(_name, _symbol){
	    owner = msg.sender;
    }

	 modifier onlyTeam {
        require(msg.sender == owner || msg.sender == admin, "Not team" );
        _;
    }

    function mint(uint256 mintQty) external payable {
        require(sale, "Sale");
        require(mintQty < 11, "Too many");
        require(mintQty + _totalMinted() <= maxSupply, "Max supply");
        require(tx.origin == msg.sender, "Sender");
        require(mintQty * cost == msg.value, "ETH value");
        
        _safeMint(msg.sender, mintQty);
    }

	function presaleMint(uint256 mintQty, bytes32[] calldata _merkleProof) external payable {
        require(presale, "Presale");
        require(mintQty * cost == msg.value, "ETH value");
        require(mintQty < 6, "Too many");
        require(mintQty + _totalMinted() <= maxSupply, "Max supply");
        require(MerkleProof.verify(_merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Whitelist");
        require(tx.origin == msg.sender, "Sender");

        _safeMint(msg.sender, mintQty);
    }

	function discountMint(uint256 mintQty, bytes32[] calldata _merkleProof) external payable {
        require(presale, "Presale");
		require(mintQty + discountMints[msg.sender] <  6, "Discount limit");
        require(mintQty * discountCost == msg.value, "ETH value");
        require(mintQty < 6, "Too many");
        require(mintQty + _totalMinted() <= maxSupply, "Max supply");
        require(MerkleProof.verify(_merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Whitelist");
        require(tx.origin == msg.sender, "Sender");

		discountMints[msg.sender] += mintQty;
        _safeMint(msg.sender, mintQty);
    }

	function devMint(uint[] calldata quantity, address[] calldata recipient) external onlyTeam{
    	require(quantity.length == recipient.length, "Matching lists" );
    	uint totalQuantity = 0;
    	for(uint i = 0; i < quantity.length; ++i){
    	    totalQuantity += quantity[i];
    	}		
        require(totalQuantity + _totalMinted() <= maxSupply, "Max supply");
		delete totalQuantity;
    	for(uint i = 0; i < recipient.length; ++i){            
        _safeMint(recipient[i], quantity[i]);
    	}
	}

	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    	require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
    	string memory currentBaseURI = _baseURI();
    	return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : "";
	}
	
	function setBaseURI(string memory _newBaseURI) external onlyTeam {
	    baseURI = _newBaseURI;
	}

	function toggleSale() external onlyTeam {
	    sale = !sale;
	}

	function togglePresale() external onlyTeam {
		presale = !presale;
	}
	
	function _baseURI() internal view virtual override returns (string memory) {
	    return baseURI;
	}
	
	function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function updateMerkleRoot(bytes32 _merkleRoot) external onlyTeam{
	    merkleRoot = _merkleRoot;
	}
	
    function withdraw() external onlyTeam nonReentrant {
		uint balance = address(this).balance;
        payable(admin).transfer(balance * 15 / 100);
        payable(0x06DB161419541C2C71818d096fb759777e22972F).transfer(balance * 3 / 1000);
		payable(0x6d41eEC2FbE221B1eB88C4f7d7F969363eE35405).transfer(balance * 1 / 100);
		payable(0x62ce1D739B9Bc6AB5F716A772eA585425d3843b1).transfer(balance * 1 / 100);
		payable(0x54deA17cA6f0a62BD482b7c0d1Cf0805E11cE648).transfer(balance * 2 / 100);
		payable(0xB03Ce47f1D24CE5B7acFECE075b8f64eC4A54695).transfer(balance * 8 / 100);
		payable(0x1a067CcACdaABAd9D42436b80f25eca00886A5ED).transfer(balance * 7 / 100);
		payable(0x38788D7012D2918996A07b6787A040f7dbC952cd).transfer(balance * 3285 / 10000);
		payable(0x6E81D2B97a172C0dE1cF9E9fa4550448500E5fa0).transfer(balance * 3285 / 10000);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","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":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"discountCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintQty","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"discountMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"discountMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintQty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintQty","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","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":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","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":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267011c37937e08000060095566470de4df8200006009546200002791906200018d565b600a55611e61600b55600c805461ffff19169055601080546001600160a01b031916738dfdd0ff4661abd44b06b1204c6334eacc8575af1790553480156200006e57600080fd5b50604051620027b1380380620027b1833981016040819052620000919162000280565b815182908290620000aa906002906020850190620000e7565b508051620000c0906003906020840190620000e7565b506001600055505060016008555050600f80546001600160a01b0319163317905562000327565b828054620000f590620002ea565b90600052602060002090601f01602090048101928262000119576000855562000164565b82601f106200013457805160ff191683800117855562000164565b8280016001018555821562000164579182015b828111156200016457825182559160200191906001019062000147565b506200017292915062000176565b5090565b5b8082111562000172576000815560010162000177565b600082821015620001ae57634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001db57600080fd5b81516001600160401b0380821115620001f857620001f8620001b3565b604051601f8301601f19908116603f01168101908282118183101715620002235762000223620001b3565b816040528381526020925086838588010111156200024057600080fd5b600091505b8382101562000264578582018301518183018401529082019062000245565b83821115620002765760008385830101525b9695505050505050565b600080604083850312156200029457600080fd5b82516001600160401b0380821115620002ac57600080fd5b620002ba86838701620001c9565b93506020850151915080821115620002d157600080fd5b50620002e085828601620001c9565b9150509250929050565b600181811c90821680620002ff57607f821691505b602082108114156200032157634e487b7160e01b600052602260045260246000fd5b50919050565b61247a80620003376000396000f3fe6080604052600436106101d85760003560e01c80636ad1fe0211610102578063bba64ab411610095578063e709b62b11610064578063e709b62b146104fa578063e985e9c514610527578063fad8fa2714610570578063fdea8e0b1461058357600080fd5b8063bba64ab41461049b578063c87b56dd146104b1578063d5abeb01146104d1578063e3e1e8ef146104e757600080fd5b806395d89b41116100d157806395d89b4114610433578063a0712d6814610448578063a22cb4651461045b578063b88d4fde1461047b57600080fd5b80636ad1fe02146103cf5780636c0360eb146103e957806370a08231146103fe5780637d8966e41461041e57600080fd5b80632eb4a7ab1161017a5780634783f0ef116101495780634783f0ef1461034f57806355f804b31461036f5780636352211e1461038f57806367d85be5146103af57600080fd5b80632eb4a7ab146102ef57806334393743146103055780633ccfd60b1461031a57806342842e0e1461032f57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806313faede61461028e57806318160ddd146102b257806323b872dd146102cf57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611df6565b6105a2565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105f4565b6040516102099190611e6b565b34801561024057600080fd5b5061025461024f366004611e7e565b610686565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611eb3565b6106ca565b005b34801561029a57600080fd5b506102a460095481565b604051908152602001610209565b3480156102be57600080fd5b5060015460005403600019016102a4565b3480156102db57600080fd5b5061028c6102ea366004611edd565b610758565b3480156102fb57600080fd5b506102a4600e5481565b34801561031157600080fd5b5061028c610763565b34801561032657600080fd5b5061028c6107c8565b34801561033b57600080fd5b5061028c61034a366004611edd565b610b7d565b34801561035b57600080fd5b5061028c61036a366004611e7e565b610b98565b34801561037b57600080fd5b5061028c61038a366004611fa4565b610bdc565b34801561039b57600080fd5b506102546103aa366004611e7e565b610c32565b3480156103bb57600080fd5b5061028c6103ca366004612037565b610c44565b3480156103db57600080fd5b50600c546101fd9060ff1681565b3480156103f557600080fd5b50610227610da5565b34801561040a57600080fd5b506102a46104193660046120a2565b610e33565b34801561042a57600080fd5b5061028c610e81565b34801561043f57600080fd5b50610227610ed4565b61028c610456366004611e7e565b610ee3565b34801561046757600080fd5b5061028c6104763660046120bd565b610fc8565b34801561048757600080fd5b5061028c6104963660046120f9565b61105e565b3480156104a757600080fd5b506102a4600a5481565b3480156104bd57600080fd5b506102276104cc366004611e7e565b6110af565b3480156104dd57600080fd5b506102a4600b5481565b61028c6104f5366004612174565b61116c565b34801561050657600080fd5b506102a46105153660046120a2565b60116020526000908152604090205481565b34801561053357600080fd5b506101fd6105423660046121bf565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61028c61057e366004612174565b611302565b34801561058f57600080fd5b50600c546101fd90610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806105d357506001600160e01b03198216635b5e139f60e01b145b806105ee57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610603906121f2565b80601f016020809104026020016040519081016040528092919081815260200182805461062f906121f2565b801561067c5780601f106106515761010080835404028352916020019161067c565b820191906000526020600020905b81548152906001019060200180831161065f57829003601f168201915b5050505050905090565b600061069182611501565b6106ae576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106d582610c32565b9050806001600160a01b0316836001600160a01b0316141561070a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061072a57506107288133610542565b155b15610748576040516367d9dca160e11b815260040160405180910390fd5b61075383838361153a565b505050565b610753838383611596565b600f546001600160a01b031633148061078657506010546001600160a01b031633145b6107ab5760405162461bcd60e51b81526004016107a29061222d565b60405180910390fd5b600c805461ff001981166101009182900460ff1615909102179055565b600f546001600160a01b03163314806107eb57506010546001600160a01b031633145b6108075760405162461bcd60e51b81526004016107a29061222d565b6002600854141561085a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107a2565b600260085560105447906001600160a01b03166108fc606461087d84600f612265565b610887919061229a565b6040518115909202916000818181858888f193505050501580156108af573d6000803e3d6000fd5b507306db161419541c2c71818d096fb759777e22972f6108fc6103e86108d6846003612265565b6108e0919061229a565b6040518115909202916000818181858888f19350505050158015610908573d6000803e3d6000fd5b50736d41eec2fbe221b1eb88c4f7d7f969363ee354056108fc606461092e846001612265565b610938919061229a565b6040518115909202916000818181858888f19350505050158015610960573d6000803e3d6000fd5b507362ce1d739b9bc6ab5f716a772ea585425d3843b16108fc6064610986846001612265565b610990919061229a565b6040518115909202916000818181858888f193505050501580156109b8573d6000803e3d6000fd5b507354dea17ca6f0a62bd482b7c0d1cf0805e11ce6486108fc60646109de846002612265565b6109e8919061229a565b6040518115909202916000818181858888f19350505050158015610a10573d6000803e3d6000fd5b5073b03ce47f1d24ce5b7acfece075b8f64ec4a546956108fc6064610a36846008612265565b610a40919061229a565b6040518115909202916000818181858888f19350505050158015610a68573d6000803e3d6000fd5b50731a067ccacdaabad9d42436b80f25eca00886a5ed6108fc6064610a8e846007612265565b610a98919061229a565b6040518115909202916000818181858888f19350505050158015610ac0573d6000803e3d6000fd5b507338788d7012d2918996a07b6787a040f7dbc952cd6108fc612710610ae884610cd5612265565b610af2919061229a565b6040518115909202916000818181858888f19350505050158015610b1a573d6000803e3d6000fd5b50736e81d2b97a172c0de1cf9e9fa4550448500e5fa06108fc612710610b4284610cd5612265565b610b4c919061229a565b6040518115909202916000818181858888f19350505050158015610b74573d6000803e3d6000fd5b50506001600855565b6107538383836040518060200160405280600081525061105e565b600f546001600160a01b0316331480610bbb57506010546001600160a01b031633145b610bd75760405162461bcd60e51b81526004016107a29061222d565b600e55565b600f546001600160a01b0316331480610bff57506010546001600160a01b031633145b610c1b5760405162461bcd60e51b81526004016107a29061222d565b8051610c2e90600d906020840190611d47565b5050565b6000610c3d826117aa565b5192915050565b600f546001600160a01b0316331480610c6757506010546001600160a01b031633145b610c835760405162461bcd60e51b81526004016107a29061222d565b828114610cc35760405162461bcd60e51b815260206004820152600e60248201526d4d61746368696e67206c6973747360901b60448201526064016107a2565b6000805b84811015610d0557858582818110610ce157610ce16122ae565b9050602002013582610cf391906122c4565b9150610cfe816122dc565b9050610cc7565b50600b5460005460001901610d1a90836122c4565b1115610d385760405162461bcd60e51b81526004016107a2906122f7565b506000805b82811015610d9d57610d8d848483818110610d5a57610d5a6122ae565b9050602002016020810190610d6f91906120a2565b878784818110610d8157610d816122ae565b905060200201356118d1565b610d96816122dc565b9050610d3d565b505050505050565b600d8054610db2906121f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610dde906121f2565b8015610e2b5780601f10610e0057610100808354040283529160200191610e2b565b820191906000526020600020905b815481529060010190602001808311610e0e57829003601f168201915b505050505081565b60006001600160a01b038216610e5c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b600f546001600160a01b0316331480610ea457506010546001600160a01b031633145b610ec05760405162461bcd60e51b81526004016107a29061222d565b600c805460ff19811660ff90911615179055565b606060038054610603906121f2565b600c5460ff16610f1e5760405162461bcd60e51b81526004016107a29060208082526004908201526353616c6560e01b604082015260600190565b600b8110610f3e5760405162461bcd60e51b81526004016107a29061231b565b600b5460005460001901610f5290836122c4565b1115610f705760405162461bcd60e51b81526004016107a2906122f7565b323314610f8f5760405162461bcd60e51b81526004016107a29061233d565b3460095482610f9e9190612265565b14610fbb5760405162461bcd60e51b81526004016107a29061235d565b610fc533826118d1565b50565b6001600160a01b038216331415610ff25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611069848484611596565b6001600160a01b0383163b1515801561108b5750611089848484846118eb565b155b156110a9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110ba82611501565b6111105760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b60648201526084016107a2565b600061111a6119d4565b9050600081511161113a5760405180602001604052806000815250611165565b80611144846119e3565b604051602001611155929190612380565b6040516020818303038152906040525b9392505050565b600c54610100900460ff166111ad5760405162461bcd60e51b815260206004820152600760248201526650726573616c6560c81b60448201526064016107a2565b34600954846111bc9190612265565b146111d95760405162461bcd60e51b81526004016107a29061235d565b600683106111f95760405162461bcd60e51b81526004016107a29061231b565b600b546000546000190161120d90856122c4565b111561122b5760405162461bcd60e51b81526004016107a2906122f7565b6112a182828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff193360601b16602082015290925060340190505b60405160208183030381529060405280519060200120611ae0565b6112d95760405162461bcd60e51b815260206004820152600960248201526815da1a5d195b1a5cdd60ba1b60448201526064016107a2565b3233146112f85760405162461bcd60e51b81526004016107a29061233d565b61075333846118d1565b600c54610100900460ff166113435760405162461bcd60e51b815260206004820152600760248201526650726573616c6560c81b60448201526064016107a2565b3360009081526011602052604090205460069061136090856122c4565b1061139e5760405162461bcd60e51b815260206004820152600e60248201526d111a5cd8dbdd5b9d081b1a5b5a5d60921b60448201526064016107a2565b34600a54846113ad9190612265565b146113ca5760405162461bcd60e51b81526004016107a29061235d565b600683106113ea5760405162461bcd60e51b81526004016107a29061231b565b600b54600054600019016113fe90856122c4565b111561141c5760405162461bcd60e51b81526004016107a2906122f7565b61147b82828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050611286565b6114b35760405162461bcd60e51b815260206004820152600960248201526815da1a5d195b1a5cdd60ba1b60448201526064016107a2565b3233146114d25760405162461bcd60e51b81526004016107a29061233d565b33600090815260116020526040812080548592906114f19084906122c4565b90915550610753905033846118d1565b600081600111158015611515575060005482105b80156105ee575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115a1826117aa565b80519091506000906001600160a01b0316336001600160a01b031614806115cf575081516115cf9033610542565b806115ea5750336115df84610686565b6001600160a01b0316145b90508061160a57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461163f5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661166657604051633a954ecd60e21b815260040160405180910390fd5b611676600084846000015161153a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166117605760005481101561176057825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156117da575060005481105b156118b857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118b65780516001600160a01b03161561184d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118b1579392505050565b61184d565b505b604051636f96cda160e11b815260040160405180910390fd5b610c2e828260405180602001604052806000815250611af6565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119209033908990889088906004016123bf565b6020604051808303816000875af192505050801561195b575060408051601f3d908101601f19168201909252611958918101906123fc565b60015b6119b6573d808015611989576040519150601f19603f3d011682016040523d82523d6000602084013e61198e565b606091505b5080516119ae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600d8054610603906121f2565b606081611a075750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a315780611a1b816122dc565b9150611a2a9050600a8361229a565b9150611a0b565b6000816001600160401b03811115611a4b57611a4b611f19565b6040519080825280601f01601f191660200182016040528015611a75576020820181803683370190505b5090505b84156119cc57611a8a600183612419565b9150611a97600a86612430565b611aa29060306122c4565b60f81b818381518110611ab757611ab76122ae565b60200101906001600160f81b031916908160001a905350611ad9600a8661229a565b9450611a79565b600082611aed8584611b03565b14949350505050565b6107538383836001611b77565b600081815b8451811015611b6f576000858281518110611b2557611b256122ae565b60200260200101519050808311611b4b5760008381526020829052604090209250611b5c565b600081815260208490526040902092505b5080611b67816122dc565b915050611b08565b509392505050565b6000546001600160a01b038516611ba057604051622e076360e81b815260040160405180910390fd5b83611bbe5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c6f57506001600160a01b0387163b15155b15611cf8575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cc060008884806001019550886118eb565b611cdd576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c75578260005414611cf357600080fd5b611d3e565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611cf9575b506000556117a3565b828054611d53906121f2565b90600052602060002090601f016020900481019282611d755760008555611dbb565b82601f10611d8e57805160ff1916838001178555611dbb565b82800160010185558215611dbb579182015b82811115611dbb578251825591602001919060010190611da0565b50611dc7929150611dcb565b5090565b5b80821115611dc75760008155600101611dcc565b6001600160e01b031981168114610fc557600080fd5b600060208284031215611e0857600080fd5b813561116581611de0565b60005b83811015611e2e578181015183820152602001611e16565b838111156110a95750506000910152565b60008151808452611e57816020860160208601611e13565b601f01601f19169290920160200192915050565b6020815260006111656020830184611e3f565b600060208284031215611e9057600080fd5b5035919050565b80356001600160a01b0381168114611eae57600080fd5b919050565b60008060408385031215611ec657600080fd5b611ecf83611e97565b946020939093013593505050565b600080600060608486031215611ef257600080fd5b611efb84611e97565b9250611f0960208501611e97565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611f4957611f49611f19565b604051601f8501601f19908116603f01168101908282118183101715611f7157611f71611f19565b81604052809350858152868686011115611f8a57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fb657600080fd5b81356001600160401b03811115611fcc57600080fd5b8201601f81018413611fdd57600080fd5b6119cc84823560208401611f2f565b60008083601f840112611ffe57600080fd5b5081356001600160401b0381111561201557600080fd5b6020830191508360208260051b850101111561203057600080fd5b9250929050565b6000806000806040858703121561204d57600080fd5b84356001600160401b038082111561206457600080fd5b61207088838901611fec565b9096509450602087013591508082111561208957600080fd5b5061209687828801611fec565b95989497509550505050565b6000602082840312156120b457600080fd5b61116582611e97565b600080604083850312156120d057600080fd5b6120d983611e97565b9150602083013580151581146120ee57600080fd5b809150509250929050565b6000806000806080858703121561210f57600080fd5b61211885611e97565b935061212660208601611e97565b92506040850135915060608501356001600160401b0381111561214857600080fd5b8501601f8101871361215957600080fd5b61216887823560208401611f2f565b91505092959194509250565b60008060006040848603121561218957600080fd5b8335925060208401356001600160401b038111156121a657600080fd5b6121b286828701611fec565b9497909650939450505050565b600080604083850312156121d257600080fd5b6121db83611e97565b91506121e960208401611e97565b90509250929050565b600181811c9082168061220657607f821691505b6020821081141561222757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600890820152674e6f74207465616d60c01b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561227f5761227f61224f565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826122a9576122a9612284565b500490565b634e487b7160e01b600052603260045260246000fd5b600082198211156122d7576122d761224f565b500190565b60006000198214156122f0576122f061224f565b5060010190565b6020808252600a90820152694d617820737570706c7960b01b604082015260600190565b602080825260089082015267546f6f206d616e7960c01b604082015260600190565b60208082526006908201526529b2b73232b960d11b604082015260600190565b6020808252600990820152684554482076616c756560b81b604082015260600190565b60008351612392818460208801611e13565b8351908301906123a6818360208801611e13565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123f290830184611e3f565b9695505050505050565b60006020828403121561240e57600080fd5b815161116581611de0565b60008282101561242b5761242b61224f565b500390565b60008261243f5761243f612284565b50069056fea2646970667358221220ce42b1920cdcc2d07aecaa158e7c777eb6e93a5b869b4ccbfa919d0c8097ac6164736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001848756e676f766572204170657320506172747920436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000044841504300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636ad1fe0211610102578063bba64ab411610095578063e709b62b11610064578063e709b62b146104fa578063e985e9c514610527578063fad8fa2714610570578063fdea8e0b1461058357600080fd5b8063bba64ab41461049b578063c87b56dd146104b1578063d5abeb01146104d1578063e3e1e8ef146104e757600080fd5b806395d89b41116100d157806395d89b4114610433578063a0712d6814610448578063a22cb4651461045b578063b88d4fde1461047b57600080fd5b80636ad1fe02146103cf5780636c0360eb146103e957806370a08231146103fe5780637d8966e41461041e57600080fd5b80632eb4a7ab1161017a5780634783f0ef116101495780634783f0ef1461034f57806355f804b31461036f5780636352211e1461038f57806367d85be5146103af57600080fd5b80632eb4a7ab146102ef57806334393743146103055780633ccfd60b1461031a57806342842e0e1461032f57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806313faede61461028e57806318160ddd146102b257806323b872dd146102cf57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611df6565b6105a2565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105f4565b6040516102099190611e6b565b34801561024057600080fd5b5061025461024f366004611e7e565b610686565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611eb3565b6106ca565b005b34801561029a57600080fd5b506102a460095481565b604051908152602001610209565b3480156102be57600080fd5b5060015460005403600019016102a4565b3480156102db57600080fd5b5061028c6102ea366004611edd565b610758565b3480156102fb57600080fd5b506102a4600e5481565b34801561031157600080fd5b5061028c610763565b34801561032657600080fd5b5061028c6107c8565b34801561033b57600080fd5b5061028c61034a366004611edd565b610b7d565b34801561035b57600080fd5b5061028c61036a366004611e7e565b610b98565b34801561037b57600080fd5b5061028c61038a366004611fa4565b610bdc565b34801561039b57600080fd5b506102546103aa366004611e7e565b610c32565b3480156103bb57600080fd5b5061028c6103ca366004612037565b610c44565b3480156103db57600080fd5b50600c546101fd9060ff1681565b3480156103f557600080fd5b50610227610da5565b34801561040a57600080fd5b506102a46104193660046120a2565b610e33565b34801561042a57600080fd5b5061028c610e81565b34801561043f57600080fd5b50610227610ed4565b61028c610456366004611e7e565b610ee3565b34801561046757600080fd5b5061028c6104763660046120bd565b610fc8565b34801561048757600080fd5b5061028c6104963660046120f9565b61105e565b3480156104a757600080fd5b506102a4600a5481565b3480156104bd57600080fd5b506102276104cc366004611e7e565b6110af565b3480156104dd57600080fd5b506102a4600b5481565b61028c6104f5366004612174565b61116c565b34801561050657600080fd5b506102a46105153660046120a2565b60116020526000908152604090205481565b34801561053357600080fd5b506101fd6105423660046121bf565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61028c61057e366004612174565b611302565b34801561058f57600080fd5b50600c546101fd90610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806105d357506001600160e01b03198216635b5e139f60e01b145b806105ee57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610603906121f2565b80601f016020809104026020016040519081016040528092919081815260200182805461062f906121f2565b801561067c5780601f106106515761010080835404028352916020019161067c565b820191906000526020600020905b81548152906001019060200180831161065f57829003601f168201915b5050505050905090565b600061069182611501565b6106ae576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106d582610c32565b9050806001600160a01b0316836001600160a01b0316141561070a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061072a57506107288133610542565b155b15610748576040516367d9dca160e11b815260040160405180910390fd5b61075383838361153a565b505050565b610753838383611596565b600f546001600160a01b031633148061078657506010546001600160a01b031633145b6107ab5760405162461bcd60e51b81526004016107a29061222d565b60405180910390fd5b600c805461ff001981166101009182900460ff1615909102179055565b600f546001600160a01b03163314806107eb57506010546001600160a01b031633145b6108075760405162461bcd60e51b81526004016107a29061222d565b6002600854141561085a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107a2565b600260085560105447906001600160a01b03166108fc606461087d84600f612265565b610887919061229a565b6040518115909202916000818181858888f193505050501580156108af573d6000803e3d6000fd5b507306db161419541c2c71818d096fb759777e22972f6108fc6103e86108d6846003612265565b6108e0919061229a565b6040518115909202916000818181858888f19350505050158015610908573d6000803e3d6000fd5b50736d41eec2fbe221b1eb88c4f7d7f969363ee354056108fc606461092e846001612265565b610938919061229a565b6040518115909202916000818181858888f19350505050158015610960573d6000803e3d6000fd5b507362ce1d739b9bc6ab5f716a772ea585425d3843b16108fc6064610986846001612265565b610990919061229a565b6040518115909202916000818181858888f193505050501580156109b8573d6000803e3d6000fd5b507354dea17ca6f0a62bd482b7c0d1cf0805e11ce6486108fc60646109de846002612265565b6109e8919061229a565b6040518115909202916000818181858888f19350505050158015610a10573d6000803e3d6000fd5b5073b03ce47f1d24ce5b7acfece075b8f64ec4a546956108fc6064610a36846008612265565b610a40919061229a565b6040518115909202916000818181858888f19350505050158015610a68573d6000803e3d6000fd5b50731a067ccacdaabad9d42436b80f25eca00886a5ed6108fc6064610a8e846007612265565b610a98919061229a565b6040518115909202916000818181858888f19350505050158015610ac0573d6000803e3d6000fd5b507338788d7012d2918996a07b6787a040f7dbc952cd6108fc612710610ae884610cd5612265565b610af2919061229a565b6040518115909202916000818181858888f19350505050158015610b1a573d6000803e3d6000fd5b50736e81d2b97a172c0de1cf9e9fa4550448500e5fa06108fc612710610b4284610cd5612265565b610b4c919061229a565b6040518115909202916000818181858888f19350505050158015610b74573d6000803e3d6000fd5b50506001600855565b6107538383836040518060200160405280600081525061105e565b600f546001600160a01b0316331480610bbb57506010546001600160a01b031633145b610bd75760405162461bcd60e51b81526004016107a29061222d565b600e55565b600f546001600160a01b0316331480610bff57506010546001600160a01b031633145b610c1b5760405162461bcd60e51b81526004016107a29061222d565b8051610c2e90600d906020840190611d47565b5050565b6000610c3d826117aa565b5192915050565b600f546001600160a01b0316331480610c6757506010546001600160a01b031633145b610c835760405162461bcd60e51b81526004016107a29061222d565b828114610cc35760405162461bcd60e51b815260206004820152600e60248201526d4d61746368696e67206c6973747360901b60448201526064016107a2565b6000805b84811015610d0557858582818110610ce157610ce16122ae565b9050602002013582610cf391906122c4565b9150610cfe816122dc565b9050610cc7565b50600b5460005460001901610d1a90836122c4565b1115610d385760405162461bcd60e51b81526004016107a2906122f7565b506000805b82811015610d9d57610d8d848483818110610d5a57610d5a6122ae565b9050602002016020810190610d6f91906120a2565b878784818110610d8157610d816122ae565b905060200201356118d1565b610d96816122dc565b9050610d3d565b505050505050565b600d8054610db2906121f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610dde906121f2565b8015610e2b5780601f10610e0057610100808354040283529160200191610e2b565b820191906000526020600020905b815481529060010190602001808311610e0e57829003601f168201915b505050505081565b60006001600160a01b038216610e5c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b600f546001600160a01b0316331480610ea457506010546001600160a01b031633145b610ec05760405162461bcd60e51b81526004016107a29061222d565b600c805460ff19811660ff90911615179055565b606060038054610603906121f2565b600c5460ff16610f1e5760405162461bcd60e51b81526004016107a29060208082526004908201526353616c6560e01b604082015260600190565b600b8110610f3e5760405162461bcd60e51b81526004016107a29061231b565b600b5460005460001901610f5290836122c4565b1115610f705760405162461bcd60e51b81526004016107a2906122f7565b323314610f8f5760405162461bcd60e51b81526004016107a29061233d565b3460095482610f9e9190612265565b14610fbb5760405162461bcd60e51b81526004016107a29061235d565b610fc533826118d1565b50565b6001600160a01b038216331415610ff25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611069848484611596565b6001600160a01b0383163b1515801561108b5750611089848484846118eb565b155b156110a9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110ba82611501565b6111105760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b60648201526084016107a2565b600061111a6119d4565b9050600081511161113a5760405180602001604052806000815250611165565b80611144846119e3565b604051602001611155929190612380565b6040516020818303038152906040525b9392505050565b600c54610100900460ff166111ad5760405162461bcd60e51b815260206004820152600760248201526650726573616c6560c81b60448201526064016107a2565b34600954846111bc9190612265565b146111d95760405162461bcd60e51b81526004016107a29061235d565b600683106111f95760405162461bcd60e51b81526004016107a29061231b565b600b546000546000190161120d90856122c4565b111561122b5760405162461bcd60e51b81526004016107a2906122f7565b6112a182828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff193360601b16602082015290925060340190505b60405160208183030381529060405280519060200120611ae0565b6112d95760405162461bcd60e51b815260206004820152600960248201526815da1a5d195b1a5cdd60ba1b60448201526064016107a2565b3233146112f85760405162461bcd60e51b81526004016107a29061233d565b61075333846118d1565b600c54610100900460ff166113435760405162461bcd60e51b815260206004820152600760248201526650726573616c6560c81b60448201526064016107a2565b3360009081526011602052604090205460069061136090856122c4565b1061139e5760405162461bcd60e51b815260206004820152600e60248201526d111a5cd8dbdd5b9d081b1a5b5a5d60921b60448201526064016107a2565b34600a54846113ad9190612265565b146113ca5760405162461bcd60e51b81526004016107a29061235d565b600683106113ea5760405162461bcd60e51b81526004016107a29061231b565b600b54600054600019016113fe90856122c4565b111561141c5760405162461bcd60e51b81526004016107a2906122f7565b61147b82828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050611286565b6114b35760405162461bcd60e51b815260206004820152600960248201526815da1a5d195b1a5cdd60ba1b60448201526064016107a2565b3233146114d25760405162461bcd60e51b81526004016107a29061233d565b33600090815260116020526040812080548592906114f19084906122c4565b90915550610753905033846118d1565b600081600111158015611515575060005482105b80156105ee575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115a1826117aa565b80519091506000906001600160a01b0316336001600160a01b031614806115cf575081516115cf9033610542565b806115ea5750336115df84610686565b6001600160a01b0316145b90508061160a57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461163f5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661166657604051633a954ecd60e21b815260040160405180910390fd5b611676600084846000015161153a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166117605760005481101561176057825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156117da575060005481105b156118b857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118b65780516001600160a01b03161561184d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118b1579392505050565b61184d565b505b604051636f96cda160e11b815260040160405180910390fd5b610c2e828260405180602001604052806000815250611af6565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119209033908990889088906004016123bf565b6020604051808303816000875af192505050801561195b575060408051601f3d908101601f19168201909252611958918101906123fc565b60015b6119b6573d808015611989576040519150601f19603f3d011682016040523d82523d6000602084013e61198e565b606091505b5080516119ae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600d8054610603906121f2565b606081611a075750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a315780611a1b816122dc565b9150611a2a9050600a8361229a565b9150611a0b565b6000816001600160401b03811115611a4b57611a4b611f19565b6040519080825280601f01601f191660200182016040528015611a75576020820181803683370190505b5090505b84156119cc57611a8a600183612419565b9150611a97600a86612430565b611aa29060306122c4565b60f81b818381518110611ab757611ab76122ae565b60200101906001600160f81b031916908160001a905350611ad9600a8661229a565b9450611a79565b600082611aed8584611b03565b14949350505050565b6107538383836001611b77565b600081815b8451811015611b6f576000858281518110611b2557611b256122ae565b60200260200101519050808311611b4b5760008381526020829052604090209250611b5c565b600081815260208490526040902092505b5080611b67816122dc565b915050611b08565b509392505050565b6000546001600160a01b038516611ba057604051622e076360e81b815260040160405180910390fd5b83611bbe5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c6f57506001600160a01b0387163b15155b15611cf8575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cc060008884806001019550886118eb565b611cdd576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c75578260005414611cf357600080fd5b611d3e565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611cf9575b506000556117a3565b828054611d53906121f2565b90600052602060002090601f016020900481019282611d755760008555611dbb565b82601f10611d8e57805160ff1916838001178555611dbb565b82800160010185558215611dbb579182015b82811115611dbb578251825591602001919060010190611da0565b50611dc7929150611dcb565b5090565b5b80821115611dc75760008155600101611dcc565b6001600160e01b031981168114610fc557600080fd5b600060208284031215611e0857600080fd5b813561116581611de0565b60005b83811015611e2e578181015183820152602001611e16565b838111156110a95750506000910152565b60008151808452611e57816020860160208601611e13565b601f01601f19169290920160200192915050565b6020815260006111656020830184611e3f565b600060208284031215611e9057600080fd5b5035919050565b80356001600160a01b0381168114611eae57600080fd5b919050565b60008060408385031215611ec657600080fd5b611ecf83611e97565b946020939093013593505050565b600080600060608486031215611ef257600080fd5b611efb84611e97565b9250611f0960208501611e97565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611f4957611f49611f19565b604051601f8501601f19908116603f01168101908282118183101715611f7157611f71611f19565b81604052809350858152868686011115611f8a57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fb657600080fd5b81356001600160401b03811115611fcc57600080fd5b8201601f81018413611fdd57600080fd5b6119cc84823560208401611f2f565b60008083601f840112611ffe57600080fd5b5081356001600160401b0381111561201557600080fd5b6020830191508360208260051b850101111561203057600080fd5b9250929050565b6000806000806040858703121561204d57600080fd5b84356001600160401b038082111561206457600080fd5b61207088838901611fec565b9096509450602087013591508082111561208957600080fd5b5061209687828801611fec565b95989497509550505050565b6000602082840312156120b457600080fd5b61116582611e97565b600080604083850312156120d057600080fd5b6120d983611e97565b9150602083013580151581146120ee57600080fd5b809150509250929050565b6000806000806080858703121561210f57600080fd5b61211885611e97565b935061212660208601611e97565b92506040850135915060608501356001600160401b0381111561214857600080fd5b8501601f8101871361215957600080fd5b61216887823560208401611f2f565b91505092959194509250565b60008060006040848603121561218957600080fd5b8335925060208401356001600160401b038111156121a657600080fd5b6121b286828701611fec565b9497909650939450505050565b600080604083850312156121d257600080fd5b6121db83611e97565b91506121e960208401611e97565b90509250929050565b600181811c9082168061220657607f821691505b6020821081141561222757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600890820152674e6f74207465616d60c01b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561227f5761227f61224f565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826122a9576122a9612284565b500490565b634e487b7160e01b600052603260045260246000fd5b600082198211156122d7576122d761224f565b500190565b60006000198214156122f0576122f061224f565b5060010190565b6020808252600a90820152694d617820737570706c7960b01b604082015260600190565b602080825260089082015267546f6f206d616e7960c01b604082015260600190565b60208082526006908201526529b2b73232b960d11b604082015260600190565b6020808252600990820152684554482076616c756560b81b604082015260600190565b60008351612392818460208801611e13565b8351908301906123a6818360208801611e13565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123f290830184611e3f565b9695505050505050565b60006020828403121561240e57600080fd5b815161116581611de0565b60008282101561242b5761242b61224f565b500390565b60008261243f5761243f612284565b50069056fea2646970667358221220ce42b1920cdcc2d07aecaa158e7c777eb6e93a5b869b4ccbfa919d0c8097ac6164736f6c634300080c0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001848756e676f766572204170657320506172747920436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000044841504300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Hungover Apes Party Club
Arg [1] : _symbol (string): HAPC

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [3] : 48756e676f766572204170657320506172747920436c75620000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4841504300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48141:4574:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30560:305;;;;;;;;;;-1:-1:-1;30560:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30560:305:0;;;;;;;;33945:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35448:204::-;;;;;;;;;;-1:-1:-1;35448:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;35448:204:0;1528:203:1;35011:371:0;;;;;;;;;;-1:-1:-1;35011:371:0;;;;;:::i;:::-;;:::i;:::-;;48231:32;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;48231:32:0;2173:177:1;29809:303:0;;;;;;;;;;-1:-1:-1;51742:1:0;30063:12;29853:7;30047:13;:28;-1:-1:-1;;30047:46:0;29809:303;;36305:170;;;;;;;;;;-1:-1:-1;36305:170:0;;;;;:::i;:::-;;:::i;48452:25::-;;;;;;;;;;;;;;;;51465:71;;;;;;;;;;;;;:::i;51869:843::-;;;;;;;;;;;;;:::i;36546:185::-;;;;;;;;;;-1:-1:-1;36546:185:0;;;;;:::i;:::-;;:::i;51759:101::-;;;;;;;;;;-1:-1:-1;51759:101:0;;;;;:::i;:::-;;:::i;51291:99::-;;;;;;;;;;-1:-1:-1;51291:99:0;;;;;:::i;:::-;;:::i;33754:124::-;;;;;;;;;;-1:-1:-1;33754:124:0;;;;;:::i;:::-;;:::i;50430:514::-;;;;;;;;;;-1:-1:-1;50430:514:0;;;;;:::i;:::-;;:::i;48364:24::-;;;;;;;;;;-1:-1:-1;48364:24:0;;;;;;;;48425:21;;;;;;;;;;;;;:::i;30929:206::-;;;;;;;;;;-1:-1:-1;30929:206:0;;;;;:::i;:::-;;:::i;51395:65::-;;;;;;;;;;;;;:::i;34114:104::-;;;;;;;;;;;;;:::i;48882:367::-;;;;;;:::i;:::-;;:::i;35724:279::-;;;;;;;;;;-1:-1:-1;35724:279:0;;;;;:::i;:::-;;:::i;36802:369::-;;;;;;;;;;-1:-1:-1;36802:369:0;;;;;:::i;:::-;;:::i;48270:47::-;;;;;;;;;;;;;;;;50949:336;;;;;;;;;;-1:-1:-1;50949:336:0;;;;;:::i;:::-;;:::i;48324:31::-;;;;;;;;;;;;;;;;49254:522;;;;;;:::i;:::-;;:::i;48580:49::-;;;;;;;;;;-1:-1:-1;48580:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;36074:164;;;;;;;;;;-1:-1:-1;36074:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36195:25:0;;;36171:4;36195:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36074:164;49781:644;;;;;;:::i;:::-;;:::i;48392:27::-;;;;;;;;;;-1:-1:-1;48392:27:0;;;;;;;;;;;30560:305;30662:4;-1:-1:-1;;;;;;30699:40:0;;-1:-1:-1;;;30699:40:0;;:105;;-1:-1:-1;;;;;;;30756:48:0;;-1:-1:-1;;;30756:48:0;30699:105;:158;;;-1:-1:-1;;;;;;;;;;17114:40:0;;;30821:36;30679:178;30560:305;-1:-1:-1;;30560:305:0:o;33945:100::-;33999:13;34032:5;34025:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33945:100;:::o;35448:204::-;35516:7;35541:16;35549:7;35541;:16::i;:::-;35536:64;;35566:34;;-1:-1:-1;;;35566:34:0;;;;;;;;;;;35536:64;-1:-1:-1;35620:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35620:24:0;;35448:204::o;35011:371::-;35084:13;35100:24;35116:7;35100:15;:24::i;:::-;35084:40;;35145:5;-1:-1:-1;;;;;35139:11:0;:2;-1:-1:-1;;;;;35139:11:0;;35135:48;;;35159:24;;-1:-1:-1;;;35159:24:0;;;;;;;;;;;35135:48;5907:10;-1:-1:-1;;;;;35200:21:0;;;;;;:63;;-1:-1:-1;35226:37:0;35243:5;5907:10;36074:164;:::i;35226:37::-;35225:38;35200:63;35196:138;;;35287:35;;-1:-1:-1;;;35287:35:0;;;;;;;;;;;35196:138;35346:28;35355:2;35359:7;35368:5;35346:8;:28::i;:::-;35073:309;35011:371;;:::o;36305:170::-;36439:28;36449:4;36455:2;36459:7;36439:9;:28::i;51465:71::-;48812:5;;-1:-1:-1;;;;;48812:5:0;48798:10;:19;;:42;;-1:-1:-1;48835:5:0;;-1:-1:-1;;;;;48835:5:0;48821:10;:19;48798:42;48790:64;;;;-1:-1:-1;;;48790:64:0;;;;;;;:::i;:::-;;;;;;;;;51524:7:::1;::::0;;-1:-1:-1;;51513:18:0;::::1;51524:7;::::0;;;::::1;;;51523:8;51513:18:::0;;::::1;;::::0;;51465:71::o;51869:843::-;48812:5;;-1:-1:-1;;;;;48812:5:0;48798:10;:19;;:42;;-1:-1:-1;48835:5:0;;-1:-1:-1;;;;;48835:5:0;48821:10;:19;48798:42;48790:64;;;;-1:-1:-1;;;48790:64:0;;;;;;;:::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;::::0;-1:-1:-1;;;2402:63:0;;8343:2:1;2402:63:0::1;::::0;::::1;8325:21:1::0;8382:2;8362:18;;;8355:30;8421:33;8401:18;;;8394:61;8472:18;;2402:63:0::1;8141:355:1::0;2402:63:0::1;1812:1;2543:7;:18:::0;51980:5:::2;::::0;51940:21:::2;::::0;-1:-1:-1;;;;;51980:5:0::2;51972:43;52011:3;51996:12;51940:21:::0;52006:2:::2;51996:12;:::i;:::-;:18;;;;:::i;:::-;51972:43;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;52034:42:0::2;52026:80;52101:4;52087:11;:7:::0;52097:1:::2;52087:11;:::i;:::-;:18;;;;:::i;:::-;52026:80;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;52119:42:0::2;52111:79;52186:3;52172:11;:7:::0;52182:1:::2;52172:11;:::i;:::-;:17;;;;:::i;:::-;52111:79;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;52203:42:0::2;52195:79;52270:3;52256:11;:7:::0;52266:1:::2;52256:11;:::i;:::-;:17;;;;:::i;:::-;52195:79;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;52287:42:0::2;52279:79;52354:3;52340:11;:7:::0;52350:1:::2;52340:11;:::i;:::-;:17;;;;:::i;:::-;52279:79;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;52371:42:0::2;52363:79;52438:3;52424:11;:7:::0;52434:1:::2;52424:11;:::i;:::-;:17;;;;:::i;:::-;52363:79;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;52455:42:0::2;52447:79;52522:3;52508:11;:7:::0;52518:1:::2;52508:11;:::i;:::-;:17;;;;:::i;:::-;52447:79;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;52539:42:0::2;52531:84;52609:5;52592:14;:7:::0;52602:4:::2;52592:14;:::i;:::-;:22;;;;:::i;:::-;52531:84;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;52628:42:0::2;52620:84;52698:5;52681:14;:7:::0;52691:4:::2;52681:14;:::i;:::-;:22;;;;:::i;:::-;52620:84;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;1768:1:0::1;2722:7;:22:::0;51869:843::o;36546:185::-;36684:39;36701:4;36707:2;36711:7;36684:39;;;;;;;;;;;;:16;:39::i;51759:101::-;48812:5;;-1:-1:-1;;;;;48812:5:0;48798:10;:19;;:42;;-1:-1:-1;48835:5:0;;-1:-1:-1;;;;;48835:5:0;48821:10;:19;48798:42;48790:64;;;;-1:-1:-1;;;48790:64:0;;;;;;;:::i;:::-;51831:10:::1;:24:::0;51759:101::o;51291:99::-;48812:5;;-1:-1:-1;;;;;48812:5:0;48798:10;:19;;:42;;-1:-1:-1;48835:5:0;;-1:-1:-1;;;;;48835:5:0;48821:10;:19;48798:42;48790:64;;;;-1:-1:-1;;;48790:64:0;;;;;;;:::i;:::-;51364:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51291:99:::0;:::o;33754:124::-;33818:7;33845:20;33857:7;33845:11;:20::i;:::-;:25;;33754:124;-1:-1:-1;;33754:124:0:o;50430:514::-;48812:5;;-1:-1:-1;;;;;48812:5:0;48798:10;:19;;:42;;-1:-1:-1;48835:5:0;;-1:-1:-1;;;;;48835:5:0;48821:10;:19;48798:42;48790:64;;;;-1:-1:-1;;;48790:64:0;;;;;;;:::i;:::-;50536:35;;::::1;50528:63;;;::::0;-1:-1:-1;;;50528:63:0;;9265:2:1;50528:63:0::1;::::0;::::1;9247:21:1::0;9304:2;9284:18;;;9277:30;-1:-1:-1;;;9323:18:1;;;9316:44;9377:18;;50528:63:0::1;9063:338:1::0;50528:63:0::1;50599:18;50633:6:::0;50629:90:::1;50645:19:::0;;::::1;50629:90;;;50699:8;;50708:1;50699:11;;;;;;;:::i;:::-;;;;;;;50682:28;;;;;:::i;:::-;::::0;-1:-1:-1;50666:3:0::1;::::0;::::1;:::i;:::-;;;50629:90;;;-1:-1:-1::0;50773:9:0::1;::::0;30252:7;30438:13;-1:-1:-1;;30438:31:0;50739:30:::1;::::0;:13;:30:::1;:::i;:::-;:43;;50731:66;;;;-1:-1:-1::0;;;50731:66:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;50802:20:0::1;::::0;50830:110:::1;50846:20:::0;;::::1;50830:110;;;50895:36;50905:9;;50915:1;50905:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50919:8;;50928:1;50919:11;;;;;;;:::i;:::-;;;;;;;50895:9;:36::i;:::-;50868:3;::::0;::::1;:::i;:::-;;;50830:110;;;;50520:424;50430:514:::0;;;;:::o;48425:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30929:206::-;30993:7;-1:-1:-1;;;;;31017:19:0;;31013:60;;31045:28;;-1:-1:-1;;;31045:28:0;;;;;;;;;;;31013:60;-1:-1:-1;;;;;;31099:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31099:27:0;;30929:206::o;51395:65::-;48812:5;;-1:-1:-1;;;;;48812:5:0;48798:10;:19;;:42;;-1:-1:-1;48835:5:0;;-1:-1:-1;;;;;48835:5:0;48821:10;:19;48798:42;48790:64;;;;-1:-1:-1;;;48790:64:0;;;;;;;:::i;:::-;51451:4:::1;::::0;;-1:-1:-1;;51443:12:0;::::1;51451:4;::::0;;::::1;51450:5;51443:12;::::0;;51395:65::o;34114:104::-;34170:13;34203:7;34196:14;;;;;:::i;48882:367::-;48949:4;;;;48941:21;;;;-1:-1:-1;;;48941:21:0;;;;;;10352:2:1;10334:21;;;10391:1;10371:18;;;10364:29;-1:-1:-1;;;10424:2:1;10409:18;;10402:34;10468:2;10453:18;;10150:327;48941:21:0;48991:2;48981:7;:12;48973:33;;;;-1:-1:-1;;;48973:33:0;;;;;;;:::i;:::-;49053:9;;30252:7;30438:13;-1:-1:-1;;30438:31:0;49025:24;;:7;:24;:::i;:::-;:37;;49017:60;;;;-1:-1:-1;;;49017:60:0;;;;;;;:::i;:::-;49096:9;49109:10;49096:23;49088:42;;;;-1:-1:-1;;;49088:42:0;;;;;;;:::i;:::-;49167:9;49159:4;;49149:7;:14;;;;:::i;:::-;:27;49141:49;;;;-1:-1:-1;;;49141:49:0;;;;;;;:::i;:::-;49211:30;49221:10;49233:7;49211:9;:30::i;:::-;48882:367;:::o;35724:279::-;-1:-1:-1;;;;;35815:24:0;;5907:10;35815:24;35811:54;;;35848:17;;-1:-1:-1;;;35848:17:0;;;;;;;;;;;35811:54;5907:10;35878:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35878:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35878:53:0;;;;;;;;;;35947:48;;540:41:1;;;35878:42:0;;5907:10;35947:48;;513:18:1;35947:48:0;;;;;;;35724:279;;:::o;36802:369::-;36969:28;36979:4;36985:2;36989:7;36969:9;:28::i;:::-;-1:-1:-1;;;;;37012:13:0;;7184:20;7232:8;;37012:76;;;;;37032:56;37063:4;37069:2;37073:7;37082:5;37032:30;:56::i;:::-;37031:57;37012:76;37008:156;;;37112:40;;-1:-1:-1;;;37112:40:0;;;;;;;;;;;37008:156;36802:369;;;;:::o;50949:336::-;51022:13;51053:16;51061:7;51053;:16::i;:::-;51045:62;;;;-1:-1:-1;;;51045:62:0;;11691:2:1;51045:62:0;;;11673:21:1;11730:2;11710:18;;;11703:30;11769:34;11749:18;;;11742:62;-1:-1:-1;;;11820:18:1;;;11813:31;11861:19;;51045:62:0;11489:397:1;51045:62:0;51115:28;51146:10;:8;:10::i;:::-;51115:41;;51202:1;51177:14;51171:28;:32;:109;;;;;;;;;;;;;;;;;51230:14;51246:18;:7;:16;:18::i;:::-;51213:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51171:109;51164:116;50949:336;-1:-1:-1;;;50949:336:0:o;49254:522::-;49361:7;;;;;;;49353:27;;;;-1:-1:-1;;;49353:27:0;;12735:2:1;49353:27:0;;;12717:21:1;12774:1;12754:18;;;12747:29;-1:-1:-1;;;12792:18:1;;;12785:37;12839:18;;49353:27:0;12533:330:1;49353:27:0;49417:9;49409:4;;49399:7;:14;;;;:::i;:::-;:27;49391:49;;;;-1:-1:-1;;;49391:49:0;;;;;;;:::i;:::-;49469:1;49459:7;:11;49451:32;;;;-1:-1:-1;;;49451:32:0;;;;;;;:::i;:::-;49530:9;;30252:7;30438:13;-1:-1:-1;;30438:31:0;49502:24;;:7;:24;:::i;:::-;:37;;49494:60;;;;-1:-1:-1;;;49494:60:0;;;;;;;:::i;:::-;49573:85;49592:12;;49573:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49606:10:0;;49628:28;;-1:-1:-1;;49645:10:0;13017:2:1;13013:15;13009:53;49628:28:0;;;12997:66:1;49606:10:0;;-1:-1:-1;13079:12:1;;;-1:-1:-1;49628:28:0;;;;;;;;;;;;;49618:39;;;;;;49573:18;:85::i;:::-;49565:107;;;;-1:-1:-1;;;49565:107:0;;13304:2:1;49565:107:0;;;13286:21:1;13343:1;13323:18;;;13316:29;-1:-1:-1;;;13361:18:1;;;13354:39;13410:18;;49565:107:0;13102:332:1;49565:107:0;49691:9;49704:10;49691:23;49683:42;;;;-1:-1:-1;;;49683:42:0;;;;;;;:::i;:::-;49738:30;49748:10;49760:7;49738:9;:30::i;49781:644::-;49889:7;;;;;;;49881:27;;;;-1:-1:-1;;;49881:27:0;;12735:2:1;49881:27:0;;;12717:21:1;12774:1;12754:18;;;12747:29;-1:-1:-1;;;12792:18:1;;;12785:37;12839:18;;49881:27:0;12533:330:1;49881:27:0;49945:10;49931:25;;;;:13;:25;;;;;;49960:1;;49921:35;;:7;:35;:::i;:::-;:40;49913:67;;;;-1:-1:-1;;;49913:67:0;;13641:2:1;49913:67:0;;;13623:21:1;13680:2;13660:18;;;13653:30;-1:-1:-1;;;13699:18:1;;;13692:44;13753:18;;49913:67:0;13439:338:1;49913:67:0;50025:9;50009:12;;49999:7;:22;;;;:::i;:::-;:35;49991:57;;;;-1:-1:-1;;;49991:57:0;;;;;;;:::i;:::-;50077:1;50067:7;:11;50059:32;;;;-1:-1:-1;;;50059:32:0;;;;;;;:::i;:::-;50138:9;;30252:7;30438:13;-1:-1:-1;;30438:31:0;50110:24;;:7;:24;:::i;:::-;:37;;50102:60;;;;-1:-1:-1;;;50102:60:0;;;;;;;:::i;:::-;50181:85;50200:12;;50181:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50214:10:0;;50236:28;;-1:-1:-1;;50253:10:0;13017:2:1;13013:15;13009:53;50236:28:0;;;12997:66:1;50214:10:0;;-1:-1:-1;13079:12:1;;;-1:-1:-1;50236:28:0;12868:229:1;50181:85:0;50173:107;;;;-1:-1:-1;;;50173:107:0;;13304:2:1;50173:107:0;;;13286:21:1;13343:1;13323:18;;;13316:29;-1:-1:-1;;;13361:18:1;;;13354:39;13410:18;;50173:107:0;13102:332:1;50173:107:0;50299:9;50312:10;50299:23;50291:42;;;;-1:-1:-1;;;50291:42:0;;;;;;;:::i;:::-;50354:10;50340:25;;;;:13;:25;;;;;:36;;50369:7;;50340:25;:36;;50369:7;;50340:36;:::i;:::-;;;;-1:-1:-1;50387:30:0;;-1:-1:-1;50397:10:0;50409:7;50387:9;:30::i;37426:187::-;37483:4;37526:7;51742:1;37507:26;;:53;;;;;37547:13;;37537:7;:23;37507:53;:98;;;;-1:-1:-1;;37578:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37578:27:0;;;;37577:28;;37426:187::o;45037:196::-;45152:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45152:29:0;-1:-1:-1;;;;;45152:29:0;;;;;;;;;45197:28;;45152:24;;45197:28;;;;;;;45037:196;;;:::o;40539:2112::-;40654:35;40692:20;40704:7;40692:11;:20::i;:::-;40767:18;;40654:58;;-1:-1:-1;40725:22:0;;-1:-1:-1;;;;;40751:34:0;5907:10;-1:-1:-1;;;;;40751:34:0;;:101;;;-1:-1:-1;40819:18:0;;40802:50;;5907:10;36074:164;:::i;40802:50::-;40751:154;;;-1:-1:-1;5907:10:0;40869:20;40881:7;40869:11;:20::i;:::-;-1:-1:-1;;;;;40869:36:0;;40751:154;40725:181;;40924:17;40919:66;;40950:35;;-1:-1:-1;;;40950:35:0;;;;;;;;;;;40919:66;41022:4;-1:-1:-1;;;;;41000:26:0;:13;:18;;;-1:-1:-1;;;;;41000:26:0;;40996:67;;41035:28;;-1:-1:-1;;;41035:28:0;;;;;;;;;;;40996:67;-1:-1:-1;;;;;41078:16:0;;41074:52;;41103:23;;-1:-1:-1;;;41103:23:0;;;;;;;;;;;41074:52;41247:49;41264:1;41268:7;41277:13;:18;;;41247:8;:49::i;:::-;-1:-1:-1;;;;;41592:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41592:31:0;;;-1:-1:-1;;;;;41592:31:0;;;-1:-1:-1;;41592:31:0;;;;;;;41638:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41638:29:0;;;;;;;;;;;41684:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;41729:61:0;;;;-1:-1:-1;;;41774:15:0;41729:61;;;;;;;;;;;42064:11;;;42094:24;;;;;:29;42064:11;;42094:29;42090:445;;42319:13;;42305:11;:27;42301:219;;;42389:18;;;42357:24;;;:11;:24;;;;;;;;:50;;42472:28;;;;-1:-1:-1;;;;;42430:70:0;-1:-1:-1;;;42430:70:0;-1:-1:-1;;;;;;42430:70:0;;;-1:-1:-1;;;;;42357:50:0;;;42430:70;;;;;;;42301:219;41567:979;42582:7;42578:2;-1:-1:-1;;;;;42563:27:0;42572:4;-1:-1:-1;;;;;42563:27:0;;;;;;;;;;;42601:42;40643:2008;;40539:2112;;;:::o;32584:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32694:7:0;;51742:1;32743:23;;:47;;;;;32777:13;;32770:4;:20;32743:47;32739:886;;;32811:31;32845:17;;;:11;:17;;;;;;;;;32811:51;;;;;;;;;-1:-1:-1;;;;;32811:51:0;;;;-1:-1:-1;;;32811:51:0;;-1:-1:-1;;;;;32811:51:0;;;;;;;;-1:-1:-1;;;32811:51:0;;;;;;;;;;;;;;32881:729;;32931:14;;-1:-1:-1;;;;;32931:28:0;;32927:101;;32995:9;32584:1108;-1:-1:-1;;;32584:1108:0:o;32927:101::-;-1:-1:-1;;;33370:6:0;33415:17;;;;:11;:17;;;;;;;;;33403:29;;;;;;;;;-1:-1:-1;;;;;33403:29:0;;;;;-1:-1:-1;;;33403:29:0;;-1:-1:-1;;;;;33403:29:0;;;;;;;;-1:-1:-1;;;33403:29:0;;;;;;;;;;;;;33463:28;33459:109;;33531:9;32584:1108;-1:-1:-1;;;32584:1108:0:o;33459:109::-;33330:261;;;32792:833;32739:886;33653:31;;-1:-1:-1;;;33653:31:0;;;;;;;;;;;37621:104;37690:27;37700:2;37704:8;37690:27;;;;;;;;;;;;:9;:27::i;45725:667::-;45909:72;;-1:-1:-1;;;45909:72:0;;45888:4;;-1:-1:-1;;;;;45909:36:0;;;;;:72;;5907:10;;45960:4;;45966:7;;45975:5;;45909:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45909:72:0;;;;;;;;-1:-1:-1;;45909:72:0;;;;;;;;;;;;:::i;:::-;;;45905:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46143:13:0;;46139:235;;46189:40;;-1:-1:-1;;;46189:40:0;;;;;;;;;;;46139:235;46332:6;46326:13;46317:6;46313:2;46309:15;46302:38;45905:480;-1:-1:-1;;;;;;46028:55:0;-1:-1:-1;;;46028:55:0;;-1:-1:-1;45905:480:0;45725:667;;;;;;:::o;51542:102::-;51602:13;51632:7;51625:14;;;;;:::i;24289:723::-;24345:13;24566:10;24562:53;;-1:-1:-1;;24593:10:0;;;;;;;;;;;;-1:-1:-1;;;24593:10:0;;;;;24289:723::o;24562:53::-;24640:5;24625:12;24681:78;24688:9;;24681:78;;24714:8;;;;:::i;:::-;;-1:-1:-1;24737:10:0;;-1:-1:-1;24745:2:0;24737:10;;:::i;:::-;;;24681:78;;;24769:19;24801:6;-1:-1:-1;;;;;24791:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24791:17:0;;24769:39;;24819:154;24826:10;;24819:154;;24853:11;24863:1;24853:11;;:::i;:::-;;-1:-1:-1;24922:10:0;24930:2;24922:5;:10;:::i;:::-;24909:24;;:2;:24;:::i;:::-;24896:39;;24879:6;24886;24879:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;24879:56:0;;;;;;;;-1:-1:-1;24950:11:0;24959:2;24950:11;;:::i;:::-;;;24819:154;;3682:190;3807:4;3860;3831:25;3844:5;3851:4;3831:12;:25::i;:::-;:33;;3682:190;-1:-1:-1;;;;3682:190:0:o;38088:163::-;38211:32;38217:2;38221:8;38231:5;38238:4;38211:5;:32::i;4234:675::-;4317:7;4360:4;4317:7;4375:497;4399:5;:12;4395:1;:16;4375:497;;;4433:20;4456:5;4462:1;4456:8;;;;;;;;:::i;:::-;;;;;;;4433:31;;4499:12;4483;:28;4479:382;;4985:13;5035:15;;;5071:4;5064:15;;;5118:4;5102:21;;4611:57;;4479:382;;;4985:13;5035:15;;;5071:4;5064:15;;;5118:4;5102:21;;4788:57;;4479:382;-1:-1:-1;4413:3:0;;;;:::i;:::-;;;;4375:497;;;-1:-1:-1;4889:12:0;4234:675;-1:-1:-1;;;4234:675:0:o;38510:1775::-;38649:20;38672:13;-1:-1:-1;;;;;38700:16:0;;38696:48;;38725:19;;-1:-1:-1;;;38725:19:0;;;;;;;;;;;38696:48;38759:13;38755:44;;38781:18;;-1:-1:-1;;;38781:18:0;;;;;;;;;;;38755:44;-1:-1:-1;;;;;39150:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;39209:49:0;;-1:-1:-1;;;;;39150:44:0;;;;;;;39209:49;;;;-1:-1:-1;;39150:44:0;;;;;;39209:49;;;;;;;;;;;;;;;;39275:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39325:66:0;;;;-1:-1:-1;;;39375:15:0;39325:66;;;;;;;;;;39275:25;39472:23;;;39516:4;:23;;;;-1:-1:-1;;;;;;39524:13:0;;7184:20;7232:8;;39524:15;39512:641;;;39560:314;39591:38;;39616:12;;-1:-1:-1;;;;;39591:38:0;;;39608:1;;39591:38;;39608:1;;39591:38;39657:69;39696:1;39700:2;39704:14;;;;;;39720:5;39657:30;:69::i;:::-;39652:174;;39762:40;;-1:-1:-1;;;39762:40:0;;;;;;;;;;;39652:174;39869:3;39853:12;:19;;39560:314;;39955:12;39938:13;;:29;39934:43;;39969:8;;;39934:43;39512:641;;;40018:120;40049:40;;40074:14;;;;;-1:-1:-1;;;;;40049:40:0;;;40066:1;;40049:40;;40066:1;;40049:40;40133:3;40117:12;:19;;40018:120;;39512:641;-1:-1:-1;40167:13:0;:28;40217:60;36802:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;3055:127::-;3116:10;3111:3;3107:20;3104:1;3097:31;3147:4;3144:1;3137:15;3171:4;3168:1;3161:15;3187:632;3252:5;-1:-1:-1;;;;;3323:2:1;3315:6;3312:14;3309:40;;;3329:18;;:::i;:::-;3404:2;3398:9;3372:2;3458:15;;-1:-1:-1;;3454:24:1;;;3480:2;3450:33;3446:42;3434:55;;;3504:18;;;3524:22;;;3501:46;3498:72;;;3550:18;;:::i;:::-;3590:10;3586:2;3579:22;3619:6;3610:15;;3649:6;3641;3634:22;3689:3;3680:6;3675:3;3671:16;3668:25;3665:45;;;3706:1;3703;3696:12;3665:45;3756:6;3751:3;3744:4;3736:6;3732:17;3719:44;3811:1;3804:4;3795:6;3787;3783:19;3779:30;3772:41;;;;3187:632;;;;;:::o;3824:451::-;3893:6;3946:2;3934:9;3925:7;3921:23;3917:32;3914:52;;;3962:1;3959;3952:12;3914:52;4002:9;3989:23;-1:-1:-1;;;;;4027:6:1;4024:30;4021:50;;;4067:1;4064;4057:12;4021:50;4090:22;;4143:4;4135:13;;4131:27;-1:-1:-1;4121:55:1;;4172:1;4169;4162:12;4121:55;4195:74;4261:7;4256:2;4243:16;4238:2;4234;4230:11;4195:74;:::i;4280:367::-;4343:8;4353:6;4407:3;4400:4;4392:6;4388:17;4384:27;4374:55;;4425:1;4422;4415:12;4374:55;-1:-1:-1;4448:20:1;;-1:-1:-1;;;;;4480:30:1;;4477:50;;;4523:1;4520;4513:12;4477:50;4560:4;4552:6;4548:17;4536:29;;4620:3;4613:4;4603:6;4600:1;4596:14;4588:6;4584:27;4580:38;4577:47;4574:67;;;4637:1;4634;4627:12;4574:67;4280:367;;;;;:::o;4652:773::-;4774:6;4782;4790;4798;4851:2;4839:9;4830:7;4826:23;4822:32;4819:52;;;4867:1;4864;4857:12;4819:52;4907:9;4894:23;-1:-1:-1;;;;;4977:2:1;4969:6;4966:14;4963:34;;;4993:1;4990;4983:12;4963:34;5032:70;5094:7;5085:6;5074:9;5070:22;5032:70;:::i;:::-;5121:8;;-1:-1:-1;5006:96:1;-1:-1:-1;5209:2:1;5194:18;;5181:32;;-1:-1:-1;5225:16:1;;;5222:36;;;5254:1;5251;5244:12;5222:36;;5293:72;5357:7;5346:8;5335:9;5331:24;5293:72;:::i;:::-;4652:773;;;;-1:-1:-1;5384:8:1;-1:-1:-1;;;;4652:773:1:o;5430:186::-;5489:6;5542:2;5530:9;5521:7;5517:23;5513:32;5510:52;;;5558:1;5555;5548:12;5510:52;5581:29;5600:9;5581:29;:::i;5621:347::-;5686:6;5694;5747:2;5735:9;5726:7;5722:23;5718:32;5715:52;;;5763:1;5760;5753:12;5715:52;5786:29;5805:9;5786:29;:::i;:::-;5776:39;;5865:2;5854:9;5850:18;5837:32;5912:5;5905:13;5898:21;5891:5;5888:32;5878:60;;5934:1;5931;5924:12;5878:60;5957:5;5947:15;;;5621:347;;;;;:::o;5973:667::-;6068:6;6076;6084;6092;6145:3;6133:9;6124:7;6120:23;6116:33;6113:53;;;6162:1;6159;6152:12;6113:53;6185:29;6204:9;6185:29;:::i;:::-;6175:39;;6233:38;6267:2;6256:9;6252:18;6233:38;:::i;:::-;6223:48;;6318:2;6307:9;6303:18;6290:32;6280:42;;6373:2;6362:9;6358:18;6345:32;-1:-1:-1;;;;;6392:6:1;6389:30;6386:50;;;6432:1;6429;6422:12;6386:50;6455:22;;6508:4;6500:13;;6496:27;-1:-1:-1;6486:55:1;;6537:1;6534;6527:12;6486:55;6560:74;6626:7;6621:2;6608:16;6603:2;6599;6595:11;6560:74;:::i;:::-;6550:84;;;5973:667;;;;;;;:::o;6645:505::-;6740:6;6748;6756;6809:2;6797:9;6788:7;6784:23;6780:32;6777:52;;;6825:1;6822;6815:12;6777:52;6861:9;6848:23;6838:33;;6922:2;6911:9;6907:18;6894:32;-1:-1:-1;;;;;6941:6:1;6938:30;6935:50;;;6981:1;6978;6971:12;6935:50;7020:70;7082:7;7073:6;7062:9;7058:22;7020:70;:::i;:::-;6645:505;;7109:8;;-1:-1:-1;6994:96:1;;-1:-1:-1;;;;6645:505:1:o;7155:260::-;7223:6;7231;7284:2;7272:9;7263:7;7259:23;7255:32;7252:52;;;7300:1;7297;7290:12;7252:52;7323:29;7342:9;7323:29;:::i;:::-;7313:39;;7371:38;7405:2;7394:9;7390:18;7371:38;:::i;:::-;7361:48;;7155:260;;;;;:::o;7420:380::-;7499:1;7495:12;;;;7542;;;7563:61;;7617:4;7609:6;7605:17;7595:27;;7563:61;7670:2;7662:6;7659:14;7639:18;7636:38;7633:161;;;7716:10;7711:3;7707:20;7704:1;7697:31;7751:4;7748:1;7741:15;7779:4;7776:1;7769:15;7633:161;;7420:380;;;:::o;7805:331::-;8007:2;7989:21;;;8046:1;8026:18;;;8019:29;-1:-1:-1;;;8079:2:1;8064:18;;8057:38;8127:2;8112:18;;7805:331::o;8501:127::-;8562:10;8557:3;8553:20;8550:1;8543:31;8593:4;8590:1;8583:15;8617:4;8614:1;8607:15;8633:168;8673:7;8739:1;8735;8731:6;8727:14;8724:1;8721:21;8716:1;8709:9;8702:17;8698:45;8695:71;;;8746:18;;:::i;:::-;-1:-1:-1;8786:9:1;;8633:168::o;8806:127::-;8867:10;8862:3;8858:20;8855:1;8848:31;8898:4;8895:1;8888:15;8922:4;8919:1;8912:15;8938:120;8978:1;9004;8994:35;;9009:18;;:::i;:::-;-1:-1:-1;9043:9:1;;8938:120::o;9406:127::-;9467:10;9462:3;9458:20;9455:1;9448:31;9498:4;9495:1;9488:15;9522:4;9519:1;9512:15;9538:128;9578:3;9609:1;9605:6;9602:1;9599:13;9596:39;;;9615:18;;:::i;:::-;-1:-1:-1;9651:9:1;;9538:128::o;9671:135::-;9710:3;-1:-1:-1;;9731:17:1;;9728:43;;;9751:18;;:::i;:::-;-1:-1:-1;9798:1:1;9787:13;;9671:135::o;9811:334::-;10013:2;9995:21;;;10052:2;10032:18;;;10025:30;-1:-1:-1;;;10086:2:1;10071:18;;10064:40;10136:2;10121:18;;9811:334::o;10482:331::-;10684:2;10666:21;;;10723:1;10703:18;;;10696:29;-1:-1:-1;;;10756:2:1;10741:18;;10734:38;10804:2;10789:18;;10482:331::o;10818:329::-;11020:2;11002:21;;;11059:1;11039:18;;;11032:29;-1:-1:-1;;;11092:2:1;11077:18;;11070:36;11138:2;11123:18;;10818:329::o;11152:332::-;11354:2;11336:21;;;11393:1;11373:18;;;11366:29;-1:-1:-1;;;11426:2:1;11411:18;;11404:39;11475:2;11460:18;;11152:332::o;11891:637::-;12171:3;12209:6;12203:13;12225:53;12271:6;12266:3;12259:4;12251:6;12247:17;12225:53;:::i;:::-;12341:13;;12300:16;;;;12363:57;12341:13;12300:16;12397:4;12385:17;;12363:57;:::i;:::-;-1:-1:-1;;;12442:20:1;;12471:22;;;12520:1;12509:13;;11891:637;-1:-1:-1;;;;11891:637:1:o;13782:489::-;-1:-1:-1;;;;;14051:15:1;;;14033:34;;14103:15;;14098:2;14083:18;;14076:43;14150:2;14135:18;;14128:34;;;14198:3;14193:2;14178:18;;14171:31;;;13976:4;;14219:46;;14245:19;;14237:6;14219:46;:::i;:::-;14211:54;13782:489;-1:-1:-1;;;;;;13782:489:1:o;14276:249::-;14345:6;14398:2;14386:9;14377:7;14373:23;14369:32;14366:52;;;14414:1;14411;14404:12;14366:52;14446:9;14440:16;14465:30;14489:5;14465:30;:::i;14530:125::-;14570:4;14598:1;14595;14592:8;14589:34;;;14603:18;;:::i;:::-;-1:-1:-1;14640:9:1;;14530:125::o;14660:112::-;14692:1;14718;14708:35;;14723:18;;:::i;:::-;-1:-1:-1;14757:9:1;;14660:112::o

Swarm Source

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