ETH Price: $2,914.35 (-10.08%)
Gas: 18 Gwei

Token

HOOKS Alpha Pass (HALLPASS)
 

Overview

Max Total Supply

316 HALLPASS

Holders

272

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HALLPASS
0xAc9D910A2311362674198Cfe374a89c0a51E17A1
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:
HOOKSAlphaPass

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/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 (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/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/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/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// 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: HOOKS Alpha Pass/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // 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) private _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;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @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)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? baseURI //string(abi.encodePacked(baseURI, tokenId.toString()))
        : ""; // ipfs://bafkreibwgn2ockzh54ttt5wuckkqleubgolzh4ywyvaanz7vp2rlgqbwzy
  }

  /**
   * @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);
    require(to != owner, "ERC721A: approval to current owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @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 tokenId < currentIndex;
  }

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    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 ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, 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)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

  /**
   * @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);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a 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 _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      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("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * 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`.
   */
  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.
   *
   * 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` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: HOOKS Alpha Pass/HOOKS Alpha Pass.sol

pragma solidity ^0.8.0;

contract HOOKSAlphaPass is Ownable, ERC721A, ReentrancyGuard {
  uint256 public maxPerAddressDuringMint;
  uint256 public salesStartTime;
  bool phase1;
  bool phase2;
  bool phase3;
  uint256 phase1Amount;
  uint256 phase2Amount;
  uint256 phase3Amount;
  uint256 phase2Price;
  uint256 phase3Price;
  mapping(address => bool) public isTeam;
  
  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 salesStartTime_
  ) ERC721A("HOOKS Alpha Pass", "HALLPASS", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = 1;
    salesStartTime = salesStartTime_;
    phase1 = true;
    phase1Amount = 300;
    phase2Amount = 1300;
    phase3Amount = 4820;
    phase2Price = 80000000000000000; // 0.08 ETH
    phase3Price = 400000000000000000; // 0.4 ETH
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  receive() payable external {}

  function publicMint(uint256 quantity) external payable callerIsUser {
    require(
      salesStartTime != 0 && block.timestamp >= salesStartTime,
      "sale has not started yet"
    );
    require(
      totalSupply() + quantity <= collectionSize,
      "not enough remaining reserved for desired mint amount"
    );
    if(totalSupply()==phase1Amount) {
        phase1 = false;
        phase2 = true;
        maxPerAddressDuringMint = 2;
    }
    else if(totalSupply() <= phase2Amount && totalSupply() + quantity > phase2Amount) {
        phase2 = false;
        phase3 = true;
    }
    else if(totalSupply() <= phase3Amount &&  totalSupply() + quantity > phase3Amount) {
        phase3 = false;
        require(quantity <= 2);
        uint256 phase3Quantity = phase3Amount - totalSupply();
        require(msg.value==phase3Price*phase3Quantity);
        _safeMint(msg.sender, phase3Quantity);
        quantity -= phase3Quantity;
    }
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    if(totalSupply() <= phase2Amount && totalSupply() + quantity > phase2Amount) {
        maxPerAddressDuringMint = 5;
    }
    if(phase1) {
        _safeMint(msg.sender, quantity);
    }
    else if(phase2) {
        uint256 freeQuantity;
        if(totalSupply() < phase1Amount){
            freeQuantity = phase1Amount - totalSupply();
            quantity -= freeQuantity;
        }
        require(msg.value==phase2Price*quantity);
        _safeMint(msg.sender, quantity+freeQuantity);
    }
    else if(phase3) {
        uint256 phase2Quantity;
        if(totalSupply() < phase2Amount){
            phase2Quantity = phase2Amount - totalSupply();
            quantity -= phase2Quantity;
        }
        require(msg.value==phase3Price*quantity+phase2Price*phase2Quantity);
        _safeMint(msg.sender, quantity+phase2Quantity);
    }
    else {
        require(isTeam[msg.sender], "UNAUTHORIZED");
        _safeMint(msg.sender, quantity);
    } 
  }

  // // metadata URI
  string private _baseTokenURI;

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

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }
  
  function getIsTeam(address addr) public view returns(bool) {
    return isTeam[addr];
  }

  function setIsTeam(address addr, bool _isteam) public onlyOwner nonReentrant {
    isTeam[addr] = _isteam;
  }

  function withdrawEth() public onlyOwner nonReentrant {
      uint256 balance = address(this).balance;
      uint256 fee = (balance)/100;
      balance -= fee;
      payable(owner()).transfer(balance);
      payable(address(0x16D6037b9976bE034d79b8cce863fF82d2BBbC67)).transfer(fee);
  }

  function updatePrices(uint256 _phase2Price, uint256 _phase3Price) public onlyOwner nonReentrant {
      phase2Price = _phase2Price;
      phase3Price = _phase3Price;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"salesStartTime_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getIsTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salesStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"_isteam","type":"bool"}],"name":"setIsTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phase2Price","type":"uint256"},{"internalType":"uint256","name":"_phase3Price","type":"uint256"}],"name":"updatePrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600060015560006008553480156200001b57600080fd5b5060405162002b5b38038062002b5b8339810160408190526200003e91620002f5565b6040518060400160405280601081526020016f484f4f4b5320416c706861205061737360801b8152506040518060400160405280600881526020016748414c4c5041535360c01b8152508484620000a46200009e620001fb60201b60201c565b620001ff565b60008111620001115760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001735760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000108565b8351620001889060029060208701906200024f565b5082516200019e9060039060208601906200024f565b5060a091909152608052505060016009819055600a819055600b91909155600c805460ff19169091179055505061012c600d55610514600e556112d4600f5567011c37937e08000060105567058d15e17628000060115562000360565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200025d9062000324565b90600052602060002090601f016020900481019282620002815760008555620002cc565b82601f106200029c57805160ff1916838001178555620002cc565b82800160010185558215620002cc579182015b82811115620002cc578251825591602001919060010190620002af565b50620002da929150620002de565b5090565b5b80821115620002da5760008155600101620002df565b6000806000606084860312156200030b57600080fd5b8351925060208401519150604084015190509250925092565b600181811c908216806200033957607f821691505b6020821081036200035a57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516127b9620003a260003960008181611b5701528181611b810152611f3b015260008181610a9e01528181611942015261197401526127b96000f3fe6080604052600436106101e75760003560e01c806370a0823111610102578063b88d4fde11610095578063dc33e68111610064578063dc33e681146105ac578063e985e9c5146105cc578063ef88d7f014610615578063f2fde38b1461063557600080fd5b8063b88d4fde1461051d578063c87b56dd1461053d578063d5788ce11461055d578063d7224ba01461059657600080fd5b80639231ab2a116100d15780639231ab2a1461048557806395d89b41146104d3578063a0ef91df146104e8578063a22cb465146104fd57600080fd5b806370a082311461041c578063715018a61461043c5780638bc35c2f146104515780638da5cb5b1461046757600080fd5b8063248519141161017a57806342842e0e1161014957806342842e0e1461039c5780634f6ccce7146103bc57806355f804b3146103dc5780636352211e146103fc57600080fd5b806324851914146103195780632d20fb60146103495780632db11544146103695780632f745c591461037c57600080fd5b8063095ea7b3116101b6578063095ea7b3146102a457806318160ddd146102c45780631b54c025146102e357806323b872dd146102f957600080fd5b806301ffc9a7146101f357806304d32d001461022857806306fdde031461024a578063081812fc1461026c57600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021361020e3660046121ff565b610655565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004612238565b6106c2565b005b34801561025657600080fd5b5061025f61074d565b60405161021f91906122c1565b34801561027857600080fd5b5061028c6102873660046122d4565b6107df565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf3660046122ed565b61086a565b3480156102d057600080fd5b506001545b60405190815260200161021f565b3480156102ef57600080fd5b506102d5600b5481565b34801561030557600080fd5b50610248610314366004612317565b610981565b34801561032557600080fd5b50610213610334366004612353565b60126020526000908152604090205460ff1681565b34801561035557600080fd5b506102486103643660046122d4565b61098c565b6102486103773660046122d4565b6109ee565b34801561038857600080fd5b506102d56103973660046122ed565b610e14565b3480156103a857600080fd5b506102486103b7366004612317565b610f8b565b3480156103c857600080fd5b506102d56103d73660046122d4565b610fa6565b3480156103e857600080fd5b506102486103f736600461236e565b61100f565b34801561040857600080fd5b5061028c6104173660046122d4565b611045565b34801561042857600080fd5b506102d5610437366004612353565b611057565b34801561044857600080fd5b506102486110e8565b34801561045d57600080fd5b506102d5600a5481565b34801561047357600080fd5b506000546001600160a01b031661028c565b34801561049157600080fd5b506104a56104a03660046122d4565b61111e565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161021f565b3480156104df57600080fd5b5061025f61113b565b3480156104f457600080fd5b5061024861114a565b34801561050957600080fd5b50610248610518366004612238565b61124d565b34801561052957600080fd5b506102486105383660046123f6565b611311565b34801561054957600080fd5b5061025f6105583660046122d4565b61134a565b34801561056957600080fd5b50610213610578366004612353565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156105a257600080fd5b506102d560085481565b3480156105b857600080fd5b506102d56105c7366004612353565b6113ee565b3480156105d857600080fd5b506102136105e73660046124d2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561062157600080fd5b50610248610630366004612505565b6113f9565b34801561064157600080fd5b50610248610650366004612353565b611455565b60006001600160e01b031982166380ac58cd60e01b148061068657506001600160e01b03198216635b5e139f60e01b145b806106a157506001600160e01b0319821663780e9d6360e01b145b806106bc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146106f55760405162461bcd60e51b81526004016106ec90612527565b60405180910390fd5b6002600954036107175760405162461bcd60e51b81526004016106ec9061255c565b600260099081556001600160a01b03929092166000908152601260205260409020805460ff191691151591909117905560019055565b60606002805461075c90612593565b80601f016020809104026020016040519081016040528092919081815260200182805461078890612593565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b60006107ec826001541190565b61084e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016106ec565b506000908152600660205260409020546001600160a01b031690565b600061087582611045565b9050806001600160a01b0316836001600160a01b0316036108e35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106ec565b336001600160a01b03821614806108ff57506108ff81336105e7565b6109715760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106ec565b61097c8383836114ed565b505050565b61097c838383611549565b6000546001600160a01b031633146109b65760405162461bcd60e51b81526004016106ec90612527565b6002600954036109d85760405162461bcd60e51b81526004016106ec9061255c565b60026009556109e6816118d1565b506001600955565b323314610a3d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106ec565b600b5415801590610a505750600b544210155b610a9c5760405162461bcd60e51b815260206004820152601860248201527f73616c6520686173206e6f74207374617274656420796574000000000000000060448201526064016106ec565b7f000000000000000000000000000000000000000000000000000000000000000081610ac760015490565b610ad191906125e3565b1115610b3d5760405162461bcd60e51b815260206004820152603560248201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f6044820152741c8819195cda5c9959081b5a5b9d08185b5bdd5b9d605a1b60648201526084016106ec565b600d5460015403610b6157600c805461ffff19166101001790556002600a55610c36565b600e5460015411158015610b895750600e5481610b7d60015490565b610b8791906125e3565b115b15610ba457600c805462ffff00191662010000179055610c36565b600f5460015411158015610bcc5750600f5481610bc060015490565b610bca91906125e3565b115b15610c3657600c805462ff0000191690556002811115610beb57600080fd5b6000610bf660015490565b600f54610c0391906125fb565b905080601154610c139190612612565b3414610c1e57600080fd5b610c283382611abb565b610c3281836125fb565b9150505b600a5481610c43336113ee565b610c4d91906125e3565b1115610c945760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016106ec565b600e5460015411158015610cbc5750600e5481610cb060015490565b610cba91906125e3565b115b15610cc7576005600a555b600c5460ff1615610cdf57610cdc3382611abb565b50565b600c54610100900460ff1615610d52576000600d54610cfd60015490565b1015610d2257600154600d54610d1391906125fb565b9050610d1f81836125fb565b91505b81601054610d309190612612565b3414610d3b57600080fd5b610d4e33610d4983856125e3565b611abb565b5050565b600c5462010000900460ff1615610dbc576000600e54610d7160015490565b1015610d9657600154600e54610d8791906125fb565b9050610d9381836125fb565b91505b80601054610da49190612612565b82601154610db29190612612565b610d3091906125e3565b3360009081526012602052604090205460ff16610e0a5760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b60448201526064016106ec565b610cdc3382611abb565b6000610e1f83611057565b8210610e785760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106ec565b6000610e8360015490565b905060008060005b83811015610f2b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ede57805192505b876001600160a01b0316836001600160a01b031603610f1857868403610f0a575093506106bc92505050565b83610f1481612631565b9450505b5080610f2381612631565b915050610e8b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106ec565b61097c83838360405180602001604052806000815250611311565b6000610fb160015490565b821061100b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106ec565b5090565b6000546001600160a01b031633146110395760405162461bcd60e51b81526004016106ec90612527565b61097c60138383612159565b600061105082611ad5565b5192915050565b60006001600160a01b0382166110c35760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106ec565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146111125760405162461bcd60e51b81526004016106ec90612527565b61111c6000611c7f565b565b60408051808201909152600080825260208201526106bc82611ad5565b60606003805461075c90612593565b6000546001600160a01b031633146111745760405162461bcd60e51b81526004016106ec90612527565b6002600954036111965760405162461bcd60e51b81526004016106ec9061255c565b60026009554760006111a960648361264a565b90506111b581836125fb565b91506111c96000546001600160a01b031690565b6001600160a01b03166108fc839081150290604051600060405180830381858888f19350505050158015611201573d6000803e3d6000fd5b506040517316d6037b9976be034d79b8cce863ff82d2bbbc679082156108fc029083906000818181858888f19350505050158015611243573d6000803e3d6000fd5b5050600160095550565b336001600160a01b038316036112a55760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106ec565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61131c848484611549565b61132884848484611ccf565b6113445760405162461bcd60e51b81526004016106ec9061266c565b50505050565b6060611357826001541190565b6113bb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ec565b60006113c5611dd1565b905060008151116113e557604051806020016040528060008152506113e7565b805b9392505050565b60006106bc82611de0565b6000546001600160a01b031633146114235760405162461bcd60e51b81526004016106ec90612527565b6002600954036114455760405162461bcd60e51b81526004016106ec9061255c565b6010919091556011556001600955565b6000546001600160a01b0316331461147f5760405162461bcd60e51b81526004016106ec90612527565b6001600160a01b0381166114e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ec565b610cdc81611c7f565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061155482611ad5565b80519091506000906001600160a01b0316336001600160a01b0316148061158b575033611580846107df565b6001600160a01b0316145b8061159d5750815161159d90336105e7565b9050806116075760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106ec565b846001600160a01b031682600001516001600160a01b03161461167b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106ec565b6001600160a01b0384166116df5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106ec565b6116ef60008484600001516114ed565b6001600160a01b03851660009081526005602052604081208054600192906117219084906001600160801b03166126bf565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261176d918591166126e7565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556117f58460016125e3565b6000818152600460205260409020549091506001600160a01b03166118875761181f816001541190565b156118875760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816119215760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016106ec565b6000600161192f84846125e3565b61193991906125fb565b905061196660017f00000000000000000000000000000000000000000000000000000000000000006125fb565b81111561199b5761199860017f00000000000000000000000000000000000000000000000000000000000000006125fb565b90505b6119a6816001541190565b611a015760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016106ec565b815b818111611aa7576000818152600460205260409020546001600160a01b0316611a95576000611a3182611ad5565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611a9f81612631565b915050611a03565b50611ab38160016125e3565b600855505050565b610d4e828260405180602001604052806000815250611e7e565b6040805180820190915260008082526020820152611af4826001541190565b611b535760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106ec565b60007f00000000000000000000000000000000000000000000000000000000000000008310611bb457611ba67f0000000000000000000000000000000000000000000000000000000000000000846125fb565b611bb19060016125e3565b90505b825b818110611c1e576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c0b57949350505050565b5080611c1681612712565b915050611bb6565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106ec565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611dc557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d13903390899088908890600401612729565b6020604051808303816000875af1925050508015611d4e575060408051601f3d908101601f19168201909252611d4b91810190612766565b60015b611dab573d808015611d7c576040519150601f19603f3d011682016040523d82523d6000602084013e611d81565b606091505b508051600003611da35760405162461bcd60e51b81526004016106ec9061266c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dc9565b5060015b949350505050565b60606013805461075c90612593565b60006001600160a01b038216611e525760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016106ec565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611ee15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106ec565b611eec816001541190565b15611f395760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106ec565b7f0000000000000000000000000000000000000000000000000000000000000000831115611fb45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106ec565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906120109087906126e7565b6001600160801b0316815260200185836020015161202e91906126e7565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561214e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121126000888488611ccf565b61212e5760405162461bcd60e51b81526004016106ec9061266c565b8161213881612631565b925050808061214690612631565b9150506120c5565b5060018190556118c9565b82805461216590612593565b90600052602060002090601f01602090048101928261218757600085556121cd565b82601f106121a05782800160ff198235161785556121cd565b828001600101855582156121cd579182015b828111156121cd5782358255916020019190600101906121b2565b5061100b9291505b8082111561100b57600081556001016121d5565b6001600160e01b031981168114610cdc57600080fd5b60006020828403121561221157600080fd5b81356113e7816121e9565b80356001600160a01b038116811461223357600080fd5b919050565b6000806040838503121561224b57600080fd5b6122548361221c565b91506020830135801515811461226957600080fd5b809150509250929050565b6000815180845260005b8181101561229a5760208185018101518683018201520161227e565b818111156122ac576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006113e76020830184612274565b6000602082840312156122e657600080fd5b5035919050565b6000806040838503121561230057600080fd5b6123098361221c565b946020939093013593505050565b60008060006060848603121561232c57600080fd5b6123358461221c565b92506123436020850161221c565b9150604084013590509250925092565b60006020828403121561236557600080fd5b6113e78261221c565b6000806020838503121561238157600080fd5b823567ffffffffffffffff8082111561239957600080fd5b818501915085601f8301126123ad57600080fd5b8135818111156123bc57600080fd5b8660208285010111156123ce57600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561240c57600080fd5b6124158561221c565b93506124236020860161221c565b925060408501359150606085013567ffffffffffffffff8082111561244757600080fd5b818701915087601f83011261245b57600080fd5b81358181111561246d5761246d6123e0565b604051601f8201601f19908116603f01168101908382118183101715612495576124956123e0565b816040528281528a60208487010111156124ae57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156124e557600080fd5b6124ee8361221c565b91506124fc6020840161221c565b90509250929050565b6000806040838503121561251857600080fd5b50508035926020909101359150565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600181811c908216806125a757607f821691505b6020821081036125c757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156125f6576125f66125cd565b500190565b60008282101561260d5761260d6125cd565b500390565b600081600019048311821515161561262c5761262c6125cd565b500290565b600060018201612643576126436125cd565b5060010190565b60008261266757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03838116908316818110156126df576126df6125cd565b039392505050565b60006001600160801b03808316818516808303821115612709576127096125cd565b01949350505050565b600081612721576127216125cd565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061275c90830184612274565b9695505050505050565b60006020828403121561277857600080fd5b81516113e7816121e956fea26469706673582212209436cfad3e8d14cf2a62024b8cf26760b8e09f01bc39eb871fc9017c9bff600a64736f6c634300080e0033000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000062ae967f

Deployed Bytecode

0x6080604052600436106101e75760003560e01c806370a0823111610102578063b88d4fde11610095578063dc33e68111610064578063dc33e681146105ac578063e985e9c5146105cc578063ef88d7f014610615578063f2fde38b1461063557600080fd5b8063b88d4fde1461051d578063c87b56dd1461053d578063d5788ce11461055d578063d7224ba01461059657600080fd5b80639231ab2a116100d15780639231ab2a1461048557806395d89b41146104d3578063a0ef91df146104e8578063a22cb465146104fd57600080fd5b806370a082311461041c578063715018a61461043c5780638bc35c2f146104515780638da5cb5b1461046757600080fd5b8063248519141161017a57806342842e0e1161014957806342842e0e1461039c5780634f6ccce7146103bc57806355f804b3146103dc5780636352211e146103fc57600080fd5b806324851914146103195780632d20fb60146103495780632db11544146103695780632f745c591461037c57600080fd5b8063095ea7b3116101b6578063095ea7b3146102a457806318160ddd146102c45780631b54c025146102e357806323b872dd146102f957600080fd5b806301ffc9a7146101f357806304d32d001461022857806306fdde031461024a578063081812fc1461026c57600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021361020e3660046121ff565b610655565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004612238565b6106c2565b005b34801561025657600080fd5b5061025f61074d565b60405161021f91906122c1565b34801561027857600080fd5b5061028c6102873660046122d4565b6107df565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf3660046122ed565b61086a565b3480156102d057600080fd5b506001545b60405190815260200161021f565b3480156102ef57600080fd5b506102d5600b5481565b34801561030557600080fd5b50610248610314366004612317565b610981565b34801561032557600080fd5b50610213610334366004612353565b60126020526000908152604090205460ff1681565b34801561035557600080fd5b506102486103643660046122d4565b61098c565b6102486103773660046122d4565b6109ee565b34801561038857600080fd5b506102d56103973660046122ed565b610e14565b3480156103a857600080fd5b506102486103b7366004612317565b610f8b565b3480156103c857600080fd5b506102d56103d73660046122d4565b610fa6565b3480156103e857600080fd5b506102486103f736600461236e565b61100f565b34801561040857600080fd5b5061028c6104173660046122d4565b611045565b34801561042857600080fd5b506102d5610437366004612353565b611057565b34801561044857600080fd5b506102486110e8565b34801561045d57600080fd5b506102d5600a5481565b34801561047357600080fd5b506000546001600160a01b031661028c565b34801561049157600080fd5b506104a56104a03660046122d4565b61111e565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161021f565b3480156104df57600080fd5b5061025f61113b565b3480156104f457600080fd5b5061024861114a565b34801561050957600080fd5b50610248610518366004612238565b61124d565b34801561052957600080fd5b506102486105383660046123f6565b611311565b34801561054957600080fd5b5061025f6105583660046122d4565b61134a565b34801561056957600080fd5b50610213610578366004612353565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156105a257600080fd5b506102d560085481565b3480156105b857600080fd5b506102d56105c7366004612353565b6113ee565b3480156105d857600080fd5b506102136105e73660046124d2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561062157600080fd5b50610248610630366004612505565b6113f9565b34801561064157600080fd5b50610248610650366004612353565b611455565b60006001600160e01b031982166380ac58cd60e01b148061068657506001600160e01b03198216635b5e139f60e01b145b806106a157506001600160e01b0319821663780e9d6360e01b145b806106bc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146106f55760405162461bcd60e51b81526004016106ec90612527565b60405180910390fd5b6002600954036107175760405162461bcd60e51b81526004016106ec9061255c565b600260099081556001600160a01b03929092166000908152601260205260409020805460ff191691151591909117905560019055565b60606002805461075c90612593565b80601f016020809104026020016040519081016040528092919081815260200182805461078890612593565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b60006107ec826001541190565b61084e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016106ec565b506000908152600660205260409020546001600160a01b031690565b600061087582611045565b9050806001600160a01b0316836001600160a01b0316036108e35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106ec565b336001600160a01b03821614806108ff57506108ff81336105e7565b6109715760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106ec565b61097c8383836114ed565b505050565b61097c838383611549565b6000546001600160a01b031633146109b65760405162461bcd60e51b81526004016106ec90612527565b6002600954036109d85760405162461bcd60e51b81526004016106ec9061255c565b60026009556109e6816118d1565b506001600955565b323314610a3d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106ec565b600b5415801590610a505750600b544210155b610a9c5760405162461bcd60e51b815260206004820152601860248201527f73616c6520686173206e6f74207374617274656420796574000000000000000060448201526064016106ec565b7f000000000000000000000000000000000000000000000000000000000000138881610ac760015490565b610ad191906125e3565b1115610b3d5760405162461bcd60e51b815260206004820152603560248201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f6044820152741c8819195cda5c9959081b5a5b9d08185b5bdd5b9d605a1b60648201526084016106ec565b600d5460015403610b6157600c805461ffff19166101001790556002600a55610c36565b600e5460015411158015610b895750600e5481610b7d60015490565b610b8791906125e3565b115b15610ba457600c805462ffff00191662010000179055610c36565b600f5460015411158015610bcc5750600f5481610bc060015490565b610bca91906125e3565b115b15610c3657600c805462ff0000191690556002811115610beb57600080fd5b6000610bf660015490565b600f54610c0391906125fb565b905080601154610c139190612612565b3414610c1e57600080fd5b610c283382611abb565b610c3281836125fb565b9150505b600a5481610c43336113ee565b610c4d91906125e3565b1115610c945760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016106ec565b600e5460015411158015610cbc5750600e5481610cb060015490565b610cba91906125e3565b115b15610cc7576005600a555b600c5460ff1615610cdf57610cdc3382611abb565b50565b600c54610100900460ff1615610d52576000600d54610cfd60015490565b1015610d2257600154600d54610d1391906125fb565b9050610d1f81836125fb565b91505b81601054610d309190612612565b3414610d3b57600080fd5b610d4e33610d4983856125e3565b611abb565b5050565b600c5462010000900460ff1615610dbc576000600e54610d7160015490565b1015610d9657600154600e54610d8791906125fb565b9050610d9381836125fb565b91505b80601054610da49190612612565b82601154610db29190612612565b610d3091906125e3565b3360009081526012602052604090205460ff16610e0a5760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b60448201526064016106ec565b610cdc3382611abb565b6000610e1f83611057565b8210610e785760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106ec565b6000610e8360015490565b905060008060005b83811015610f2b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ede57805192505b876001600160a01b0316836001600160a01b031603610f1857868403610f0a575093506106bc92505050565b83610f1481612631565b9450505b5080610f2381612631565b915050610e8b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106ec565b61097c83838360405180602001604052806000815250611311565b6000610fb160015490565b821061100b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106ec565b5090565b6000546001600160a01b031633146110395760405162461bcd60e51b81526004016106ec90612527565b61097c60138383612159565b600061105082611ad5565b5192915050565b60006001600160a01b0382166110c35760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106ec565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146111125760405162461bcd60e51b81526004016106ec90612527565b61111c6000611c7f565b565b60408051808201909152600080825260208201526106bc82611ad5565b60606003805461075c90612593565b6000546001600160a01b031633146111745760405162461bcd60e51b81526004016106ec90612527565b6002600954036111965760405162461bcd60e51b81526004016106ec9061255c565b60026009554760006111a960648361264a565b90506111b581836125fb565b91506111c96000546001600160a01b031690565b6001600160a01b03166108fc839081150290604051600060405180830381858888f19350505050158015611201573d6000803e3d6000fd5b506040517316d6037b9976be034d79b8cce863ff82d2bbbc679082156108fc029083906000818181858888f19350505050158015611243573d6000803e3d6000fd5b5050600160095550565b336001600160a01b038316036112a55760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106ec565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61131c848484611549565b61132884848484611ccf565b6113445760405162461bcd60e51b81526004016106ec9061266c565b50505050565b6060611357826001541190565b6113bb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ec565b60006113c5611dd1565b905060008151116113e557604051806020016040528060008152506113e7565b805b9392505050565b60006106bc82611de0565b6000546001600160a01b031633146114235760405162461bcd60e51b81526004016106ec90612527565b6002600954036114455760405162461bcd60e51b81526004016106ec9061255c565b6010919091556011556001600955565b6000546001600160a01b0316331461147f5760405162461bcd60e51b81526004016106ec90612527565b6001600160a01b0381166114e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ec565b610cdc81611c7f565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061155482611ad5565b80519091506000906001600160a01b0316336001600160a01b0316148061158b575033611580846107df565b6001600160a01b0316145b8061159d5750815161159d90336105e7565b9050806116075760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106ec565b846001600160a01b031682600001516001600160a01b03161461167b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106ec565b6001600160a01b0384166116df5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106ec565b6116ef60008484600001516114ed565b6001600160a01b03851660009081526005602052604081208054600192906117219084906001600160801b03166126bf565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261176d918591166126e7565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556117f58460016125e3565b6000818152600460205260409020549091506001600160a01b03166118875761181f816001541190565b156118875760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816119215760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016106ec565b6000600161192f84846125e3565b61193991906125fb565b905061196660017f00000000000000000000000000000000000000000000000000000000000013886125fb565b81111561199b5761199860017f00000000000000000000000000000000000000000000000000000000000013886125fb565b90505b6119a6816001541190565b611a015760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016106ec565b815b818111611aa7576000818152600460205260409020546001600160a01b0316611a95576000611a3182611ad5565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611a9f81612631565b915050611a03565b50611ab38160016125e3565b600855505050565b610d4e828260405180602001604052806000815250611e7e565b6040805180820190915260008082526020820152611af4826001541190565b611b535760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106ec565b60007f00000000000000000000000000000000000000000000000000000000000000058310611bb457611ba67f0000000000000000000000000000000000000000000000000000000000000005846125fb565b611bb19060016125e3565b90505b825b818110611c1e576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c0b57949350505050565b5080611c1681612712565b915050611bb6565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106ec565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611dc557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d13903390899088908890600401612729565b6020604051808303816000875af1925050508015611d4e575060408051601f3d908101601f19168201909252611d4b91810190612766565b60015b611dab573d808015611d7c576040519150601f19603f3d011682016040523d82523d6000602084013e611d81565b606091505b508051600003611da35760405162461bcd60e51b81526004016106ec9061266c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dc9565b5060015b949350505050565b60606013805461075c90612593565b60006001600160a01b038216611e525760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016106ec565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611ee15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106ec565b611eec816001541190565b15611f395760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106ec565b7f0000000000000000000000000000000000000000000000000000000000000005831115611fb45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106ec565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906120109087906126e7565b6001600160801b0316815260200185836020015161202e91906126e7565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561214e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121126000888488611ccf565b61212e5760405162461bcd60e51b81526004016106ec9061266c565b8161213881612631565b925050808061214690612631565b9150506120c5565b5060018190556118c9565b82805461216590612593565b90600052602060002090601f01602090048101928261218757600085556121cd565b82601f106121a05782800160ff198235161785556121cd565b828001600101855582156121cd579182015b828111156121cd5782358255916020019190600101906121b2565b5061100b9291505b8082111561100b57600081556001016121d5565b6001600160e01b031981168114610cdc57600080fd5b60006020828403121561221157600080fd5b81356113e7816121e9565b80356001600160a01b038116811461223357600080fd5b919050565b6000806040838503121561224b57600080fd5b6122548361221c565b91506020830135801515811461226957600080fd5b809150509250929050565b6000815180845260005b8181101561229a5760208185018101518683018201520161227e565b818111156122ac576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006113e76020830184612274565b6000602082840312156122e657600080fd5b5035919050565b6000806040838503121561230057600080fd5b6123098361221c565b946020939093013593505050565b60008060006060848603121561232c57600080fd5b6123358461221c565b92506123436020850161221c565b9150604084013590509250925092565b60006020828403121561236557600080fd5b6113e78261221c565b6000806020838503121561238157600080fd5b823567ffffffffffffffff8082111561239957600080fd5b818501915085601f8301126123ad57600080fd5b8135818111156123bc57600080fd5b8660208285010111156123ce57600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561240c57600080fd5b6124158561221c565b93506124236020860161221c565b925060408501359150606085013567ffffffffffffffff8082111561244757600080fd5b818701915087601f83011261245b57600080fd5b81358181111561246d5761246d6123e0565b604051601f8201601f19908116603f01168101908382118183101715612495576124956123e0565b816040528281528a60208487010111156124ae57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156124e557600080fd5b6124ee8361221c565b91506124fc6020840161221c565b90509250929050565b6000806040838503121561251857600080fd5b50508035926020909101359150565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600181811c908216806125a757607f821691505b6020821081036125c757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156125f6576125f66125cd565b500190565b60008282101561260d5761260d6125cd565b500390565b600081600019048311821515161561262c5761262c6125cd565b500290565b600060018201612643576126436125cd565b5060010190565b60008261266757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03838116908316818110156126df576126df6125cd565b039392505050565b60006001600160801b03808316818516808303821115612709576127096125cd565b01949350505050565b600081612721576127216125cd565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061275c90830184612274565b9695505050505050565b60006020828403121561277857600080fd5b81516113e7816121e956fea26469706673582212209436cfad3e8d14cf2a62024b8cf26760b8e09f01bc39eb871fc9017c9bff600a64736f6c634300080e0033

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

000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000062ae967f

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 5
Arg [1] : collectionSize_ (uint256): 5000
Arg [2] : salesStartTime_ (uint256): 1655608959

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [2] : 0000000000000000000000000000000000000000000000000000000062ae967f


Deployed Bytecode Sourcemap

59390:4413:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31460:370;;;;;;;;;;-1:-1:-1;31460:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;31460:370:0;;;;;;;;63212:112;;;;;;;;;;-1:-1:-1;63212:112:0;;;;;:::i;:::-;;:::i;:::-;;33186:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34791:204::-;;;;;;;;;;-1:-1:-1;34791:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2173:32:1;;;2155:51;;2143:2;2128:18;34791:204:0;2009:203:1;34354:379:0;;;;;;;;;;-1:-1:-1;34354:379:0;;;;;:::i;:::-;;:::i;30021:94::-;;;;;;;;;;-1:-1:-1;30097:12:0;;30021:94;;;2622:25:1;;;2610:2;2595:18;30021:94:0;2476:177:1;59499:29:0;;;;;;;;;;;;;;;;35641:142;;;;;;;;;;-1:-1:-1;35641:142:0;;;;;:::i;:::-;;:::i;59704:38::-;;;;;;;;;;-1:-1:-1;59704:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;62723:118;;;;;;;;;;-1:-1:-1;62723:118:0;;;;;:::i;:::-;;:::i;60362:2078::-;;;;;;:::i;:::-;;:::i;30652:744::-;;;;;;;;;;-1:-1:-1;30652:744:0;;;;;:::i;:::-;;:::i;35846:157::-;;;;;;;;;;-1:-1:-1;35846:157:0;;;;;:::i;:::-;;:::i;30184:177::-;;;;;;;;;;-1:-1:-1;30184:177:0;;;;;:::i;:::-;;:::i;62617:100::-;;;;;;;;;;-1:-1:-1;62617:100:0;;;;;:::i;:::-;;:::i;33009:118::-;;;;;;;;;;-1:-1:-1;33009:118:0;;;;;:::i;:::-;;:::i;31886:211::-;;;;;;;;;;-1:-1:-1;31886:211:0;;;;;:::i;:::-;;:::i;58496:103::-;;;;;;;;;;;;;:::i;59456:38::-;;;;;;;;;;;;;;;;57845:87;;;;;;;;;;-1:-1:-1;57891:7:0;57918:6;-1:-1:-1;;;;;57918:6:0;57845:87;;62960:147;;;;;;;;;;-1:-1:-1;62960:147:0;;;;;:::i;:::-;;:::i;:::-;;;;4009:13:1;;-1:-1:-1;;;;;4005:39:1;3987:58;;4105:4;4093:17;;;4087:24;4113:18;4083:49;4061:20;;;4054:79;;;;3960:18;62960:147:0;3779:360:1;33341:98:0;;;;;;;;;;;;;:::i;63330:292::-;;;;;;;;;;;;;:::i;35059:274::-;;;;;;;;;;-1:-1:-1;35059:274:0;;;;;:::i;:::-;;:::i;36066:311::-;;;;;;;;;;-1:-1:-1;36066:311:0;;;;;:::i;:::-;;:::i;33502:474::-;;;;;;;;;;-1:-1:-1;33502:474:0;;;;;:::i;:::-;;:::i;63115:91::-;;;;;;;;;;-1:-1:-1;63115:91:0;;;;;:::i;:::-;-1:-1:-1;;;;;63188:12:0;63168:4;63188:12;;;:6;:12;;;;;;;;;63115:91;40481:43;;;;;;;;;;;;;;;;62847:107;;;;;;;;;;-1:-1:-1;62847:107:0;;;;;:::i;:::-;;:::i;35396:186::-;;;;;;;;;;-1:-1:-1;35396:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;35541:25:0;;;35518:4;35541:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35396:186;63628:172;;;;;;;;;;-1:-1:-1;63628:172:0;;;;;:::i;:::-;;:::i;58754:201::-;;;;;;;;;;-1:-1:-1;58754:201:0;;;;;:::i;:::-;;:::i;31460:370::-;31587:4;-1:-1:-1;;;;;;31617:40:0;;-1:-1:-1;;;31617:40:0;;:99;;-1:-1:-1;;;;;;;31668:48:0;;-1:-1:-1;;;31668:48:0;31617:99;:160;;;-1:-1:-1;;;;;;;31727:50:0;;-1:-1:-1;;;31727:50:0;31617:160;:207;;;-1:-1:-1;;;;;;;;;;13607:40:0;;;31788:36;31603:221;31460:370;-1:-1:-1;;31460:370:0:o;63212:112::-;57891:7;57918:6;-1:-1:-1;;;;;57918:6:0;27564:10;58065:23;58057:68;;;;-1:-1:-1;;;58057:68:0;;;;;;;:::i;:::-;;;;;;;;;22244:1:::1;22842:7;;:19:::0;22834:63:::1;;;;-1:-1:-1::0;;;22834:63:0::1;;;;;;;:::i;:::-;22244:1;22975:7;:18:::0;;;-1:-1:-1;;;;;63296:12:0;;;::::2;;::::0;;;:6:::2;:12;::::0;;;;:22;;-1:-1:-1;;63296:22:0::2;::::0;::::2;;::::0;;;::::2;::::0;;-1:-1:-1;23154:22:0;;63212:112::o;33186:94::-;33240:13;33269:5;33262:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33186:94;:::o;34791:204::-;34859:7;34883:16;34891:7;36703:12;;-1:-1:-1;36693:22:0;36616:105;34883:16;34875:74;;;;-1:-1:-1;;;34875:74:0;;7245:2:1;34875:74:0;;;7227:21:1;7284:2;7264:18;;;7257:30;7323:34;7303:18;;;7296:62;-1:-1:-1;;;7374:18:1;;;7367:43;7427:19;;34875:74:0;7043:409:1;34875:74:0;-1:-1:-1;34965:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34965:24:0;;34791:204::o;34354:379::-;34423:13;34439:24;34455:7;34439:15;:24::i;:::-;34423:40;;34484:5;-1:-1:-1;;;;;34478:11:0;:2;-1:-1:-1;;;;;34478:11:0;;34470:58;;;;-1:-1:-1;;;34470:58:0;;7659:2:1;34470:58:0;;;7641:21:1;7698:2;7678:18;;;7671:30;7737:34;7717:18;;;7710:62;-1:-1:-1;;;7788:18:1;;;7781:32;7830:19;;34470:58:0;7457:398:1;34470:58:0;27564:10;-1:-1:-1;;;;;34553:21:0;;;;:62;;-1:-1:-1;34578:37:0;34595:5;27564:10;35396:186;:::i;34578:37::-;34537:153;;;;-1:-1:-1;;;34537:153:0;;8062:2:1;34537:153:0;;;8044:21:1;8101:2;8081:18;;;8074:30;8140:34;8120:18;;;8113:62;8211:27;8191:18;;;8184:55;8256:19;;34537:153:0;7860:421:1;34537:153:0;34699:28;34708:2;34712:7;34721:5;34699:8;:28::i;:::-;34416:317;34354:379;;:::o;35641:142::-;35749:28;35759:4;35765:2;35769:7;35749:9;:28::i;62723:118::-;57891:7;57918:6;-1:-1:-1;;;;;57918:6:0;27564:10;58065:23;58057:68;;;;-1:-1:-1;;;58057:68:0;;;;;;;:::i;:::-;22244:1:::1;22842:7;;:19:::0;22834:63:::1;;;;-1:-1:-1::0;;;22834:63:0::1;;;;;;;:::i;:::-;22244:1;22975:7;:18:::0;62807:28:::2;62826:8:::0;62807:18:::2;:28::i;:::-;-1:-1:-1::0;22200:1:0::1;23154:7;:22:::0;62723:118::o;60362:2078::-;60249:9;60262:10;60249:23;60241:66;;;;-1:-1:-1;;;60241:66:0;;8488:2:1;60241:66:0;;;8470:21:1;8527:2;8507:18;;;8500:30;8566:32;8546:18;;;8539:60;8616:18;;60241:66:0;8286:354:1;60241:66:0;60453:14:::1;::::0;:19;;::::1;::::0;:56:::1;;;60495:14;;60476:15;:33;;60453:56;60437:114;;;::::0;-1:-1:-1;;;60437:114:0;;8847:2:1;60437:114:0::1;::::0;::::1;8829:21:1::0;8886:2;8866:18;;;8859:30;8925:26;8905:18;;;8898:54;8969:18;;60437:114:0::1;8645:348:1::0;60437:114:0::1;60602:14;60590:8;60574:13;30097:12:::0;;;30021:94;60574:13:::1;:24;;;;:::i;:::-;:42;;60558:129;;;::::0;-1:-1:-1;;;60558:129:0;;9465:2:1;60558:129:0::1;::::0;::::1;9447:21:1::0;9504:2;9484:18;;;9477:30;9543:34;9523:18;;;9516:62;-1:-1:-1;;;9594:18:1;;;9587:51;9655:19;;60558:129:0::1;9263:417:1::0;60558:129:0::1;60712:12;::::0;30097;;60697:27;60694:633:::1;;60737:6;:14:::0;;-1:-1:-1;;60762:13:0;60737:14:::1;60762:13;::::0;;60812:1:::1;60786:23;:27:::0;60694:633:::1;;;60852:12;::::0;30097;;60835:29:::1;;:72;;;;;60895:12;;60884:8;60868:13;30097:12:::0;;;30021:94;60868:13:::1;:24;;;;:::i;:::-;:39;60835:72;60832:495;;;60920:6;:14:::0;;-1:-1:-1;;60945:13:0;;::::1;::::0;;60832:495:::1;;;60997:12;::::0;30097;;60980:29:::1;;:73;;;;;61041:12;;61030:8;61014:13;30097:12:::0;;;30021:94;61014:13:::1;:24;;;;:::i;:::-;:39;60980:73;60977:350;;;61066:6;:14:::0;;-1:-1:-1;;61066:14:0::1;::::0;;:6:::1;61099:13:::0;::::1;;61091:22;;;::::0;::::1;;61124;61164:13;30097:12:::0;;;30021:94;61164:13:::1;61149:12;;:28;;;;:::i;:::-;61124:53;;61219:14;61207:11;;:26;;;;:::i;:::-;61196:9;:37;61188:46;;;::::0;::::1;;61245:37;61255:10;61267:14;61245:9;:37::i;:::-;61293:26;61305:14:::0;61293:26;::::1;:::i;:::-;;;61055:272;60977:350;61388:23;;61376:8;61349:24;61362:10;61349:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;61333:118;;;::::0;-1:-1:-1;;;61333:118:0;;10190:2:1;61333:118:0::1;::::0;::::1;10172:21:1::0;10229:2;10209:18;;;10202:30;-1:-1:-1;;;10248:18:1;;;10241:52;10310:18;;61333:118:0::1;9988:346:1::0;61333:118:0::1;61478:12;::::0;30097;;61461:29:::1;;:72;;;;;61521:12;;61510:8;61494:13;30097:12:::0;;;30021:94;61494:13:::1;:24;;;;:::i;:::-;:39;61461:72;61458:123;;;61572:1;61546:23;:27:::0;61458:123:::1;61590:6;::::0;::::1;;61587:847;;;61609:31;61619:10;61631:8;61609:9;:31::i;:::-;60362:2078:::0;:::o;61587:847::-:1;61662:6;::::0;::::1;::::0;::::1;;;61659:775;;;61681:20;61731:12;;61715:13;30097:12:::0;;;30021:94;61715:13:::1;:28;61712:141;;;30097:12:::0;;61774::::1;;:28;;;;:::i;:::-;61759:43:::0;-1:-1:-1;61817:24:0::1;61759:43:::0;61817:24;::::1;:::i;:::-;;;61712:141;61894:8;61882:11;;:20;;;;:::i;:::-;61871:9;:31;61863:40;;;::::0;::::1;;61914:44;61924:10;61936:21;61945:12:::0;61936:8;:21:::1;:::i;:::-;61914:9;:44::i;:::-;61670:296;60362:2078:::0;:::o;61659:775::-:1;61980:6;::::0;;;::::1;;;61977:457;;;61999:22;62051:12;;62035:13;30097:12:::0;;;30021:94;62035:13:::1;:28;62032:145;;;30097:12:::0;;62096::::1;;:28;;;;:::i;:::-;62079:45:::0;-1:-1:-1;62139:26:0::1;62079:45:::0;62139:26;::::1;:::i;:::-;;;62032:145;62239:14;62227:11;;:26;;;;:::i;:::-;62218:8;62206:11;;:20;;;;:::i;:::-;:47;;;;:::i;61977:457::-;62356:10;62349:18;::::0;;;:6:::1;:18;::::0;;;;;::::1;;62341:43;;;::::0;-1:-1:-1;;;62341:43:0;;10541:2:1;62341:43:0::1;::::0;::::1;10523:21:1::0;10580:2;10560:18;;;10553:30;-1:-1:-1;;;10599:18:1;;;10592:42;10651:18;;62341:43:0::1;10339:336:1::0;62341:43:0::1;62395:31;62405:10;62417:8;62395:9;:31::i;30652:744::-:0;30761:7;30796:16;30806:5;30796:9;:16::i;:::-;30788:5;:24;30780:71;;;;-1:-1:-1;;;30780:71:0;;10882:2:1;30780:71:0;;;10864:21:1;10921:2;10901:18;;;10894:30;10960:34;10940:18;;;10933:62;-1:-1:-1;;;11011:18:1;;;11004:32;11053:19;;30780:71:0;10680:398:1;30780:71:0;30858:22;30883:13;30097:12;;;30021:94;30883:13;30858:38;;30903:19;30933:25;30983:9;30978:350;31002:14;30998:1;:18;30978:350;;;31032:31;31066:14;;;:11;:14;;;;;;;;;31032:48;;;;;;;;;-1:-1:-1;;;;;31032:48:0;;;;;-1:-1:-1;;;31032:48:0;;;;;;;;;;;;31093:28;31089:89;;31154:14;;;-1:-1:-1;31089:89:0;31211:5;-1:-1:-1;;;;;31190:26:0;:17;-1:-1:-1;;;;;31190:26:0;;31186:135;;31248:5;31233:11;:20;31229:59;;-1:-1:-1;31275:1:0;-1:-1:-1;31268:8:0;;-1:-1:-1;;;31268:8:0;31229:59;31298:13;;;;:::i;:::-;;;;31186:135;-1:-1:-1;31018:3:0;;;;:::i;:::-;;;;30978:350;;;-1:-1:-1;31334:56:0;;-1:-1:-1;;;31334:56:0;;11425:2:1;31334:56:0;;;11407:21:1;11464:2;11444:18;;;11437:30;11503:34;11483:18;;;11476:62;-1:-1:-1;;;11554:18:1;;;11547:44;11608:19;;31334:56:0;11223:410:1;35846:157:0;35958:39;35975:4;35981:2;35985:7;35958:39;;;;;;;;;;;;:16;:39::i;30184:177::-;30251:7;30283:13;30097:12;;;30021:94;30283:13;30275:5;:21;30267:69;;;;-1:-1:-1;;;30267:69:0;;11840:2:1;30267:69:0;;;11822:21:1;11879:2;11859:18;;;11852:30;11918:34;11898:18;;;11891:62;-1:-1:-1;;;11969:18:1;;;11962:33;12012:19;;30267:69:0;11638:399:1;30267:69:0;-1:-1:-1;30350:5:0;30184:177::o;62617:100::-;57891:7;57918:6;-1:-1:-1;;;;;57918:6:0;27564:10;58065:23;58057:68;;;;-1:-1:-1;;;58057:68:0;;;;;;;:::i;:::-;62688:23:::1;:13;62704:7:::0;;62688:23:::1;:::i;33009:118::-:0;33073:7;33096:20;33108:7;33096:11;:20::i;:::-;:25;;33009:118;-1:-1:-1;;33009:118:0:o;31886:211::-;31950:7;-1:-1:-1;;;;;31974:19:0;;31966:75;;;;-1:-1:-1;;;31966:75:0;;12244:2:1;31966:75:0;;;12226:21:1;12283:2;12263:18;;;12256:30;12322:34;12302:18;;;12295:62;-1:-1:-1;;;12373:18:1;;;12366:41;12424:19;;31966:75:0;12042:407:1;31966:75:0;-1:-1:-1;;;;;;32063:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;32063:27:0;;31886:211::o;58496:103::-;57891:7;57918:6;-1:-1:-1;;;;;57918:6:0;27564:10;58065:23;58057:68;;;;-1:-1:-1;;;58057:68:0;;;;;;;:::i;:::-;58561:30:::1;58588:1;58561:18;:30::i;:::-;58496:103::o:0;62960:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;63081:20:0;63093:7;63081:11;:20::i;33341:98::-;33397:13;33426:7;33419:14;;;;;:::i;63330:292::-;57891:7;57918:6;-1:-1:-1;;;;;57918:6:0;27564:10;58065:23;58057:68;;;;-1:-1:-1;;;58057:68:0;;;;;;;:::i;:::-;22244:1:::1;22842:7;;:19:::0;22834:63:::1;;;;-1:-1:-1::0;;;22834:63:0::1;;;;;;;:::i;:::-;22244:1;22975:7;:18:::0;63410:21:::2;63392:15;63454:13;63464:3;63410:21:::0;63454:13:::2;:::i;:::-;63440:27:::0;-1:-1:-1;63476:14:0::2;63440:27:::0;63476:14;::::2;:::i;:::-;;;63507:7;57891::::0;57918:6;-1:-1:-1;;;;;57918:6:0;;57845:87;63507:7:::2;-1:-1:-1::0;;;;;63499:25:0::2;:34;63525:7;63499:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;63542:74:0::2;::::0;63558:42:::2;::::0;63542:74;::::2;;;::::0;63612:3;;63542:74:::2;::::0;;;63612:3;63558:42;63542:74;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;22200:1:0::1;23154:7;:22:::0;-1:-1:-1;63330:292:0:o;35059:274::-;27564:10;-1:-1:-1;;;;;35150:24:0;;;35142:63;;;;-1:-1:-1;;;35142:63:0;;12878:2:1;35142:63:0;;;12860:21:1;12917:2;12897:18;;;12890:30;12956:28;12936:18;;;12929:56;13002:18;;35142:63:0;12676:350:1;35142:63:0;27564:10;35214:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35214:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35214:53:0;;;;;;;;;;35279:48;;540:41:1;;;35214:42:0;;27564:10;35279:48;;513:18:1;35279:48:0;;;;;;;35059:274;;:::o;36066:311::-;36203:28;36213:4;36219:2;36223:7;36203:9;:28::i;:::-;36254:48;36277:4;36283:2;36287:7;36296:5;36254:22;:48::i;:::-;36238:133;;;;-1:-1:-1;;;36238:133:0;;;;;;;:::i;:::-;36066:311;;;;:::o;33502:474::-;33600:13;33641:16;33649:7;36703:12;;-1:-1:-1;36693:22:0;36616:105;33641:16;33625:97;;;;-1:-1:-1;;;33625:97:0;;13653:2:1;33625:97:0;;;13635:21:1;13692:2;13672:18;;;13665:30;13731:34;13711:18;;;13704:62;-1:-1:-1;;;13782:18:1;;;13775:45;13837:19;;33625:97:0;13451:411:1;33625:97:0;33731:21;33755:10;:8;:10::i;:::-;33731:34;;33810:1;33792:7;33786:21;:25;:114;;;;;;;;;;;;;;;;;33823:7;33786:114;33772:128;33502:474;-1:-1:-1;;;33502:474:0:o;62847:107::-;62905:7;62928:20;62942:5;62928:13;:20::i;63628:172::-;57891:7;57918:6;-1:-1:-1;;;;;57918:6:0;27564:10;58065:23;58057:68;;;;-1:-1:-1;;;58057:68:0;;;;;;;:::i;:::-;22244:1:::1;22842:7;;:19:::0;22834:63:::1;;;;-1:-1:-1::0;;;22834:63:0::1;;;;;;;:::i;:::-;63733:11:::2;:26:::0;;;;63768:11:::2;:26:::0;22200:1:::1;22975:7;23154:22:::0;63628:172::o;58754:201::-;57891:7;57918:6;-1:-1:-1;;;;;57918:6:0;27564:10;58065:23;58057:68;;;;-1:-1:-1;;;58057:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58843:22:0;::::1;58835:73;;;::::0;-1:-1:-1;;;58835:73:0;;14069:2:1;58835:73:0::1;::::0;::::1;14051:21:1::0;14108:2;14088:18;;;14081:30;14147:34;14127:18;;;14120:62;-1:-1:-1;;;14198:18:1;;;14191:36;14244:19;;58835:73:0::1;13867:402:1::0;58835:73:0::1;58919:28;58938:8;58919:18;:28::i;40303:172::-:0;40400:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40400:29:0;-1:-1:-1;;;;;40400:29:0;;;;;;;;;40441:28;;40400:24;;40441:28;;;;;;;40303:172;;;:::o;38668:1529::-;38765:35;38803:20;38815:7;38803:11;:20::i;:::-;38874:18;;38765:58;;-1:-1:-1;38832:22:0;;-1:-1:-1;;;;;38858:34:0;27564:10;-1:-1:-1;;;;;38858:34:0;;:81;;;-1:-1:-1;27564:10:0;38903:20;38915:7;38903:11;:20::i;:::-;-1:-1:-1;;;;;38903:36:0;;38858:81;:142;;;-1:-1:-1;38967:18:0;;38950:50;;27564:10;35396:186;:::i;38950:50::-;38832:169;;39026:17;39010:101;;;;-1:-1:-1;;;39010:101:0;;14476:2:1;39010:101:0;;;14458:21:1;14515:2;14495:18;;;14488:30;14554:34;14534:18;;;14527:62;-1:-1:-1;;;14605:18:1;;;14598:48;14663:19;;39010:101:0;14274:414:1;39010:101:0;39158:4;-1:-1:-1;;;;;39136:26:0;:13;:18;;;-1:-1:-1;;;;;39136:26:0;;39120:98;;;;-1:-1:-1;;;39120:98:0;;14895:2:1;39120:98:0;;;14877:21:1;14934:2;14914:18;;;14907:30;14973:34;14953:18;;;14946:62;-1:-1:-1;;;15024:18:1;;;15017:36;15070:19;;39120:98:0;14693:402:1;39120:98:0;-1:-1:-1;;;;;39233:16:0;;39225:66;;;;-1:-1:-1;;;39225:66:0;;15302:2:1;39225:66:0;;;15284:21:1;15341:2;15321:18;;;15314:30;15380:34;15360:18;;;15353:62;-1:-1:-1;;;15431:18:1;;;15424:35;15476:19;;39225:66:0;15100:401:1;39225:66:0;39400:49;39417:1;39421:7;39430:13;:18;;;39400:8;:49::i;:::-;-1:-1:-1;;;;;39458:18:0;;;;;;:12;:18;;;;;:31;;39488:1;;39458:18;:31;;39488:1;;-1:-1:-1;;;;;39458:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;39458:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39496:16:0;;-1:-1:-1;39496:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;39496:16:0;;:29;;-1:-1:-1;;39496:29:0;;:::i;:::-;;;-1:-1:-1;;;;;39496:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39555:43:0;;;;;;;;-1:-1:-1;;;;;39555:43:0;;;;;;39581:15;39555:43;;;;;;;;;-1:-1:-1;39532:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;39532:66:0;-1:-1:-1;;;;;;39532:66:0;;;;;;;;;;;39848:11;39544:7;-1:-1:-1;39848:11:0;:::i;:::-;39911:1;39870:24;;;:11;:24;;;;;:29;39826:33;;-1:-1:-1;;;;;;39870:29:0;39866:236;;39928:20;39936:11;36703:12;;-1:-1:-1;36693:22:0;36616:105;39928:20;39924:171;;;39988:97;;;;;;;;40015:18;;-1:-1:-1;;;;;39988:97:0;;;;;;40046:28;;;;39988:97;;;;;;;;;;-1:-1:-1;39961:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;39961:124:0;-1:-1:-1;;;;;;39961:124:0;;;;;;;;;;;;39924:171;40134:7;40130:2;-1:-1:-1;;;;;40115:27:0;40124:4;-1:-1:-1;;;;;40115:27:0;;;;;;;;;;;40149:42;38758:1439;;;38668:1529;;;:::o;40629:846::-;40719:24;;40758:12;40750:49;;;;-1:-1:-1;;;40750:49:0;;16217:2:1;40750:49:0;;;16199:21:1;16256:2;16236:18;;;16229:30;16295:26;16275:18;;;16268:54;16339:18;;40750:49:0;16015:348:1;40750:49:0;40806:16;40856:1;40825:28;40845:8;40825:17;:28;:::i;:::-;:32;;;;:::i;:::-;40806:51;-1:-1:-1;40879:18:0;40896:1;40879:14;:18;:::i;:::-;40868:8;:29;40864:81;;;40919:18;40936:1;40919:14;:18;:::i;:::-;40908:29;;40864:81;41060:17;41068:8;36703:12;;-1:-1:-1;36693:22:0;36616:105;41060:17;41052:68;;;;-1:-1:-1;;;41052:68:0;;16570:2:1;41052:68:0;;;16552:21:1;16609:2;16589:18;;;16582:30;16648:34;16628:18;;;16621:62;-1:-1:-1;;;16699:18:1;;;16692:36;16745:19;;41052:68:0;16368:402:1;41052:68:0;41144:17;41127:297;41168:8;41163:1;:13;41127:297;;41227:1;41196:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;41196:19:0;41192:225;;41242:31;41276:14;41288:1;41276:11;:14::i;:::-;41318:89;;;;;;;;41345:14;;-1:-1:-1;;;;;41318:89:0;;;;;;41372:24;;;;41318:89;;;;;;;;;;-1:-1:-1;41301:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;41301:106:0;-1:-1:-1;;;;;;41301:106:0;;;;;;;;;;;;-1:-1:-1;41192:225:0;41178:3;;;;:::i;:::-;;;;41127:297;;;-1:-1:-1;41457:12:0;:8;41468:1;41457:12;:::i;:::-;41430:24;:39;-1:-1:-1;;;40629:846:0:o;36727:98::-;36792:27;36802:2;36806:8;36792:27;;;;;;;;;;;;:9;:27::i;32349:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;32466:16:0;32474:7;36703:12;;-1:-1:-1;36693:22:0;36616:105;32466:16;32458:71;;;;-1:-1:-1;;;32458:71:0;;16977:2:1;32458:71:0;;;16959:21:1;17016:2;16996:18;;;16989:30;17055:34;17035:18;;;17028:62;-1:-1:-1;;;17106:18:1;;;17099:40;17156:19;;32458:71:0;16775:406:1;32458:71:0;32538:26;32586:12;32575:7;:23;32571:93;;32630:22;32640:12;32630:7;:22;:::i;:::-;:26;;32655:1;32630:26;:::i;:::-;32609:47;;32571:93;32692:7;32672:212;32709:18;32701:4;:26;32672:212;;32746:31;32780:17;;;:11;:17;;;;;;;;;32746:51;;;;;;;;;-1:-1:-1;;;;;32746:51:0;;;;;-1:-1:-1;;;32746:51:0;;;;;;;;;;;;32810:28;32806:71;;32858:9;32349:606;-1:-1:-1;;;;32349:606:0:o;32806:71::-;-1:-1:-1;32729:6:0;;;;:::i;:::-;;;;32672:212;;;-1:-1:-1;32892:57:0;;-1:-1:-1;;;32892:57:0;;17529:2:1;32892:57:0;;;17511:21:1;17568:2;17548:18;;;17541:30;17607:34;17587:18;;;17580:62;-1:-1:-1;;;17658:18:1;;;17651:45;17713:19;;32892:57:0;17327:411:1;59115:191:0;59189:16;59208:6;;-1:-1:-1;;;;;59225:17:0;;;-1:-1:-1;;;;;;59225:17:0;;;;;;59258:40;;59208:6;;;;;;;59258:40;;59189:16;59258:40;59178:128;59115:191;:::o;42018:690::-;42155:4;-1:-1:-1;;;;;42172:13:0;;3687:19;:23;42168:535;;42211:72;;-1:-1:-1;;;42211:72:0;;-1:-1:-1;;;;;42211:36:0;;;;;:72;;27564:10;;42262:4;;42268:7;;42277:5;;42211:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42211:72:0;;;;;;;;-1:-1:-1;;42211:72:0;;;;;;;;;;;;:::i;:::-;;;42198:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42442:6;:13;42459:1;42442:18;42438:215;;42475:61;;-1:-1:-1;;;42475:61:0;;;;;;;:::i;42438:215::-;42621:6;42615:13;42606:6;42602:2;42598:15;42591:38;42198:464;-1:-1:-1;;;;;;42333:55:0;-1:-1:-1;;;42333:55:0;;-1:-1:-1;42326:62:0;;42168:535;-1:-1:-1;42691:4:0;42168:535;42018:690;;;;;;:::o;62503:108::-;62563:13;62592;62585:20;;;;;:::i;32103:240::-;32164:7;-1:-1:-1;;;;;32196:19:0;;32180:102;;;;-1:-1:-1;;;32180:102:0;;18693:2:1;32180:102:0;;;18675:21:1;18732:2;18712:18;;;18705:30;18771:34;18751:18;;;18744:62;-1:-1:-1;;;18822:18:1;;;18815:47;18879:19;;32180:102:0;18491:413:1;32180:102:0;-1:-1:-1;;;;;;32304:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;32304:32:0;;-1:-1:-1;;;;;32304:32:0;;32103:240::o;37164:1272::-;37292:12;;-1:-1:-1;;;;;37319:16:0;;37311:62;;;;-1:-1:-1;;;37311:62:0;;19111:2:1;37311:62:0;;;19093:21:1;19150:2;19130:18;;;19123:30;19189:34;19169:18;;;19162:62;-1:-1:-1;;;19240:18:1;;;19233:31;19281:19;;37311:62:0;18909:397:1;37311:62:0;37510:21;37518:12;36703;;-1:-1:-1;36693:22:0;36616:105;37510:21;37509:22;37501:64;;;;-1:-1:-1;;;37501:64:0;;19513:2:1;37501:64:0;;;19495:21:1;19552:2;19532:18;;;19525:30;19591:31;19571:18;;;19564:59;19640:18;;37501:64:0;19311:353:1;37501:64:0;37592:12;37580:8;:24;;37572:71;;;;-1:-1:-1;;;37572:71:0;;19871:2:1;37572:71:0;;;19853:21:1;19910:2;19890:18;;;19883:30;19949:34;19929:18;;;19922:62;-1:-1:-1;;;20000:18:1;;;19993:32;20042:19;;37572:71:0;19669:398:1;37572:71:0;-1:-1:-1;;;;;37755:16:0;;37722:30;37755:16;;;:12;:16;;;;;;;;;37722:49;;;;;;;;;-1:-1:-1;;;;;37722:49:0;;;;;-1:-1:-1;;;37722:49:0;;;;;;;;;;;37797:119;;;;;;;;37817:19;;37722:49;;37797:119;;;37817:39;;37847:8;;37817:39;:::i;:::-;-1:-1:-1;;;;;37797:119:0;;;;;37900:8;37865:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;37797:119:0;;;;;;-1:-1:-1;;;;;37778:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;37778:138:0;;;;;;;;;;;;37951:43;;;;;;;;;;;37977:15;37951:43;;;;;;;;37923:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;37923:71:0;-1:-1:-1;;;;;;37923:71:0;;;;;;;;;;;;;;;;;;37935:12;;38047:281;38071:8;38067:1;:12;38047:281;;;38100:38;;38125:12;;-1:-1:-1;;;;;38100:38:0;;;38117:1;;38100:38;;38117:1;;38100:38;38165:59;38196:1;38200:2;38204:12;38218:5;38165:22;:59::i;:::-;38147:150;;;;-1:-1:-1;;;38147:150:0;;;;;;;:::i;:::-;38306:14;;;;:::i;:::-;;;;38081:3;;;;;:::i;:::-;;;;38047:281;;;-1:-1:-1;38336:12:0;:27;;;38370:60;36066:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:347::-;835:6;843;896:2;884:9;875:7;871:23;867:32;864:52;;;912:1;909;902:12;864:52;935:29;954:9;935:29;:::i;:::-;925:39;;1014:2;1003:9;999:18;986:32;1061:5;1054:13;1047:21;1040:5;1037:32;1027:60;;1083:1;1080;1073:12;1027:60;1106:5;1096:15;;;770:347;;;;;:::o;1122:472::-;1164:3;1202:5;1196:12;1229:6;1224:3;1217:19;1254:1;1264:162;1278:6;1275:1;1272:13;1264:162;;;1340:4;1396:13;;;1392:22;;1386:29;1368:11;;;1364:20;;1357:59;1293:12;1264:162;;;1444:6;1441:1;1438:13;1435:87;;;1510:1;1503:4;1494:6;1489:3;1485:16;1481:27;1474:38;1435:87;-1:-1:-1;1576:2:1;1555:15;-1:-1:-1;;1551:29:1;1542:39;;;;1583:4;1538:50;;1122:472;-1:-1:-1;;1122:472:1:o;1599:220::-;1748:2;1737:9;1730:21;1711:4;1768:45;1809:2;1798:9;1794:18;1786:6;1768:45;:::i;1824:180::-;1883:6;1936:2;1924:9;1915:7;1911:23;1907:32;1904:52;;;1952:1;1949;1942:12;1904:52;-1:-1:-1;1975:23:1;;1824:180;-1:-1:-1;1824:180:1:o;2217:254::-;2285:6;2293;2346:2;2334:9;2325:7;2321:23;2317:32;2314:52;;;2362:1;2359;2352:12;2314:52;2385:29;2404:9;2385:29;:::i;:::-;2375:39;2461:2;2446:18;;;;2433:32;;-1:-1:-1;;;2217:254:1:o;2658:328::-;2735:6;2743;2751;2804:2;2792:9;2783:7;2779:23;2775:32;2772:52;;;2820:1;2817;2810:12;2772:52;2843:29;2862:9;2843:29;:::i;:::-;2833:39;;2891:38;2925:2;2914:9;2910:18;2891:38;:::i;:::-;2881:48;;2976:2;2965:9;2961:18;2948:32;2938:42;;2658:328;;;;;:::o;2991:186::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3142:29;3161:9;3142:29;:::i;3182:592::-;3253:6;3261;3314:2;3302:9;3293:7;3289:23;3285:32;3282:52;;;3330:1;3327;3320:12;3282:52;3370:9;3357:23;3399:18;3440:2;3432:6;3429:14;3426:34;;;3456:1;3453;3446:12;3426:34;3494:6;3483:9;3479:22;3469:32;;3539:7;3532:4;3528:2;3524:13;3520:27;3510:55;;3561:1;3558;3551:12;3510:55;3601:2;3588:16;3627:2;3619:6;3616:14;3613:34;;;3643:1;3640;3633:12;3613:34;3688:7;3683:2;3674:6;3670:2;3666:15;3662:24;3659:37;3656:57;;;3709:1;3706;3699:12;3656:57;3740:2;3732:11;;;;;3762:6;;-1:-1:-1;3182:592:1;;-1:-1:-1;;;;3182:592:1:o;4144:127::-;4205:10;4200:3;4196:20;4193:1;4186:31;4236:4;4233:1;4226:15;4260:4;4257:1;4250:15;4276:1138;4371:6;4379;4387;4395;4448:3;4436:9;4427:7;4423:23;4419:33;4416:53;;;4465:1;4462;4455:12;4416:53;4488:29;4507:9;4488:29;:::i;:::-;4478:39;;4536:38;4570:2;4559:9;4555:18;4536:38;:::i;:::-;4526:48;;4621:2;4610:9;4606:18;4593:32;4583:42;;4676:2;4665:9;4661:18;4648:32;4699:18;4740:2;4732:6;4729:14;4726:34;;;4756:1;4753;4746:12;4726:34;4794:6;4783:9;4779:22;4769:32;;4839:7;4832:4;4828:2;4824:13;4820:27;4810:55;;4861:1;4858;4851:12;4810:55;4897:2;4884:16;4919:2;4915;4912:10;4909:36;;;4925:18;;:::i;:::-;5000:2;4994:9;4968:2;5054:13;;-1:-1:-1;;5050:22:1;;;5074:2;5046:31;5042:40;5030:53;;;5098:18;;;5118:22;;;5095:46;5092:72;;;5144:18;;:::i;:::-;5184:10;5180:2;5173:22;5219:2;5211:6;5204:18;5259:7;5254:2;5249;5245;5241:11;5237:20;5234:33;5231:53;;;5280:1;5277;5270:12;5231:53;5336:2;5331;5327;5323:11;5318:2;5310:6;5306:15;5293:46;5381:1;5376:2;5371;5363:6;5359:15;5355:24;5348:35;5402:6;5392:16;;;;;;;4276:1138;;;;;;;:::o;5419:260::-;5487:6;5495;5548:2;5536:9;5527:7;5523:23;5519:32;5516:52;;;5564:1;5561;5554:12;5516:52;5587:29;5606:9;5587:29;:::i;:::-;5577:39;;5635:38;5669:2;5658:9;5654:18;5635:38;:::i;:::-;5625:48;;5419:260;;;;;:::o;5684:248::-;5752:6;5760;5813:2;5801:9;5792:7;5788:23;5784:32;5781:52;;;5829:1;5826;5819:12;5781:52;-1:-1:-1;;5852:23:1;;;5922:2;5907:18;;;5894:32;;-1:-1:-1;5684:248:1:o;5937:356::-;6139:2;6121:21;;;6158:18;;;6151:30;6217:34;6212:2;6197:18;;6190:62;6284:2;6269:18;;5937:356::o;6298:355::-;6500:2;6482:21;;;6539:2;6519:18;;;6512:30;6578:33;6573:2;6558:18;;6551:61;6644:2;6629:18;;6298:355::o;6658:380::-;6737:1;6733:12;;;;6780;;;6801:61;;6855:4;6847:6;6843:17;6833:27;;6801:61;6908:2;6900:6;6897:14;6877:18;6874:38;6871:161;;6954:10;6949:3;6945:20;6942:1;6935:31;6989:4;6986:1;6979:15;7017:4;7014:1;7007:15;6871:161;;6658:380;;;:::o;8998:127::-;9059:10;9054:3;9050:20;9047:1;9040:31;9090:4;9087:1;9080:15;9114:4;9111:1;9104:15;9130:128;9170:3;9201:1;9197:6;9194:1;9191:13;9188:39;;;9207:18;;:::i;:::-;-1:-1:-1;9243:9:1;;9130:128::o;9685:125::-;9725:4;9753:1;9750;9747:8;9744:34;;;9758:18;;:::i;:::-;-1:-1:-1;9795:9:1;;9685:125::o;9815:168::-;9855:7;9921:1;9917;9913:6;9909:14;9906:1;9903:21;9898:1;9891:9;9884:17;9880:45;9877:71;;;9928:18;;:::i;:::-;-1:-1:-1;9968:9:1;;9815:168::o;11083:135::-;11122:3;11143:17;;;11140:43;;11163:18;;:::i;:::-;-1:-1:-1;11210:1:1;11199:13;;11083:135::o;12454:217::-;12494:1;12520;12510:132;;12564:10;12559:3;12555:20;12552:1;12545:31;12599:4;12596:1;12589:15;12627:4;12624:1;12617:15;12510:132;-1:-1:-1;12656:9:1;;12454:217::o;13031:415::-;13233:2;13215:21;;;13272:2;13252:18;;;13245:30;13311:34;13306:2;13291:18;;13284:62;-1:-1:-1;;;13377:2:1;13362:18;;13355:49;13436:3;13421:19;;13031:415::o;15506:246::-;15546:4;-1:-1:-1;;;;;15659:10:1;;;;15629;;15681:12;;;15678:38;;;15696:18;;:::i;:::-;15733:13;;15506:246;-1:-1:-1;;;15506:246:1:o;15757:253::-;15797:3;-1:-1:-1;;;;;15886:2:1;15883:1;15879:10;15916:2;15913:1;15909:10;15947:3;15943:2;15939:12;15934:3;15931:21;15928:47;;;15955:18;;:::i;:::-;15991:13;;15757:253;-1:-1:-1;;;;15757:253:1:o;17186:136::-;17225:3;17253:5;17243:39;;17262:18;;:::i;:::-;-1:-1:-1;;;17298:18:1;;17186:136::o;17743:489::-;-1:-1:-1;;;;;18012:15:1;;;17994:34;;18064:15;;18059:2;18044:18;;18037:43;18111:2;18096:18;;18089:34;;;18159:3;18154:2;18139:18;;18132:31;;;17937:4;;18180:46;;18206:19;;18198:6;18180:46;:::i;:::-;18172:54;17743:489;-1:-1:-1;;;;;;17743:489:1:o;18237:249::-;18306:6;18359:2;18347:9;18338:7;18334:23;18330:32;18327:52;;;18375:1;18372;18365:12;18327:52;18407:9;18401:16;18426:30;18450:5;18426:30;:::i

Swarm Source

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