ETH Price: $2,958.43 (-1.19%)
Gas: 7 Gwei

Token

HijabiQueens (HQ)
 

Overview

Max Total Supply

2,500 HQ

Holders

553

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HQ
0x5be5f7e86a2da8db6b422be58968856aefdd9f79
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A limited NFT collection of 5000 Hijabi Queens & 5000 Bearded Kings. Owning either one grants you VIP access to the HQ club. The club is being built by passionate women and serves as a network for Muzzy entrepreneurs and creators to thrive.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HijabiQueens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-15
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata 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 that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). 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 tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). 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) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 TransferToNonERC721ReceiverImplementer();
                } 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.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

// File: contracts/HijabiQueens.sol


pragma solidity ^0.8.7;




contract HijabiQueens is ERC721A, Ownable {
    using Strings for uint256;
    address breedingContract;

    string public baseApiURI;
    bytes32 private whitelistRoot;
  

    //General Settings
    uint16 public maxMintAmountPerTransaction = 5;
    uint16 public maxMintAmountPerWallet = 5;

    //whitelisting Settings
    uint16 public maxMintAmountPerWhitelist = 2;
   

    //Inventory
    uint256 public maxSupply = 10001;

    //Prices
    uint256 public cost = 0.09 ether;
    uint256 public whitelistCost = 0.09 ether;

    //Utility
    bool public paused = true;
    bool public whiteListingSale = false;

    //mapping
    mapping(address => uint256) private whitelistedMints;

    constructor(string memory _baseUrl) ERC721A("HijabiQueens", "HQ") {
        baseApiURI = _baseUrl;
    }

    //This function will be used to extend the project with more capabilities 
    function setBreedingContractAddress(address _bAddress) public onlyOwner {
        breedingContract = _bAddress;
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = _numberMinted(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    //this function can be called only from the extending contract
    function mintExternal(address _address, uint256 _mintAmount) external {
        require(
            msg.sender == breedingContract,
            "Sorry you dont have permission to mint"
        );
        _safeMint(_address, _mintAmount);
    }

    function setWhitelistingRoot(bytes32 _root) public onlyOwner {
        whitelistRoot = _root;
    }

   

 
    // Verify that a given leaf is in the tree.
    function _verify(
        bytes32 _leafNode,
        bytes32[] memory proof
    ) internal view returns (bool) {
        return MerkleProof.verify(proof, whitelistRoot, _leafNode);
    }

    // Generate the leaf node (just the hash of tokenID concatenated with the account address)
    function _leaf(address account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    //whitelist mint
    function mintWhitelist(
        bytes32[] calldata proof,
        uint256 _mintAmount
    ) public payable {
     

     
                //Normal WL Verifications
                require(
                    _verify(_leaf(msg.sender), proof),
                    "Invalid proof"
                );
                require(
                    (whitelistedMints[msg.sender] + _mintAmount) <=
                        maxMintAmountPerWhitelist,
                    "Exceeds Max Mint amount"
                );

                require(
                    msg.value >= (whitelistCost * _mintAmount),
                    "Insuffient funds"
                );

                //END WL Verifications

                //Mint
                _mintLoop(msg.sender, _mintAmount);
                whitelistedMints[msg.sender] =
                    whitelistedMints[msg.sender] +
                    _mintAmount;
    }

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

    // public
    function mint(uint256 _mintAmount) public payable {
        if (msg.sender != owner()) {
            uint256 ownerTokenCount = balanceOf(msg.sender);

            require(!paused);
            require(!whiteListingSale, "You cant mint on Presale");
            require(_mintAmount > 0, "Mint amount should be greater than 0");
            require(
                _mintAmount <= maxMintAmountPerTransaction,
                "Sorry you cant mint this amount at once"
            );
            require(
                totalSupply() + _mintAmount <= maxSupply,
                "Exceeds Max Supply"
            );
            require(
                (ownerTokenCount + _mintAmount) <= maxMintAmountPerWallet,
                "Sorry you cant mint more"
            );

            require(msg.value >= cost * _mintAmount, "Insuffient funds");
        }

        _mintLoop(msg.sender, _mintAmount);
    }

    function gift(address _to, uint256 _mintAmount) public onlyOwner {
        _mintLoop(_to, _mintAmount);
    }

    function airdrop(address[] memory _airdropAddresses) public onlyOwner {
        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, 1);
        }
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
                : "";
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setWhitelistingCost(uint256 _newCost) public onlyOwner {
        whitelistCost = _newCost;
    }

    function setmaxMintAmountPerTransaction(uint16 _amount) public onlyOwner {
        maxMintAmountPerTransaction = _amount;
    }

    function setMaxMintAmountPerWallet(uint16 _amount) public onlyOwner {
        maxMintAmountPerWallet = _amount;
    }

    function setMaxMintAmountPerWhitelist(uint16 _amount) public onlyOwner {
        maxMintAmountPerWhitelist = _amount;
    }

    function setMaxSupply(uint256 _supply) public onlyOwner {
        maxSupply = _supply;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseApiURI = _newBaseURI;
    }

    function togglePause() public onlyOwner {
        paused = !paused;
    }

    function toggleWhiteSale() public onlyOwner {
        whiteListingSale = !whiteListingSale;
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    function withdraw() public payable onlyOwner {
        (bool hq, ) = payable(owner()).call{value: address(this).balance}("");
        require(hq);

    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUrl","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseApiURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWhitelist","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintExternal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bAddress","type":"address"}],"name":"setBreedingContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistingCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistingRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteSale","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListingSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600b805465ffffffffffff1916640200050005179055612711600c5567013fbe85edc90000600d819055600e55600f805461ffff191660011790553480156200004c57600080fd5b5060405162002caa38038062002caa8339810160408190526200006f9162000209565b604080518082018252600c81526b48696a616269517565656e7360a01b602080830191825283518085019094526002845261485160f01b908401528151919291620000bd9160019162000163565b508051620000d390600290602084019062000163565b505050620000f0620000ea6200010d60201b60201c565b62000111565b80516200010590600990602084019062000163565b505062000338565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017190620002e5565b90600052602060002090601f016020900481019282620001955760008555620001e0565b82601f10620001b057805160ff1916838001178555620001e0565b82800160010185558215620001e0579182015b82811115620001e0578251825591602001919060010190620001c3565b50620001ee929150620001f2565b5090565b5b80821115620001ee5760008155600101620001f3565b600060208083850312156200021d57600080fd5b82516001600160401b03808211156200023557600080fd5b818501915085601f8301126200024a57600080fd5b8151818111156200025f576200025f62000322565b604051601f8201601f19908116603f011681019083821181831017156200028a576200028a62000322565b816040528281528886848701011115620002a357600080fd5b600093505b82841015620002c75784840186015181850187015292850192620002a8565b82841115620002d95760008684830101525b98975050505050505050565b600181811c90821680620002fa57607f821691505b602082108114156200031c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61296280620003486000396000f3fe6080604052600436106102935760003560e01c80639231ab2a1161015a578063d5abeb01116100c1578063e985e9c51161007a578063e985e9c5146107f6578063ea4446221461083f578063ed8161791461085f578063ee89121214610874578063f2fde38b14610894578063f4da1846146108b457600080fd5b8063d5abeb011461074b578063dc33e68114610761578063dfc33dd114610781578063e5a88cdb146107a1578063e7b99ec7146107c0578063e97800cb146107d657600080fd5b8063bbb8974411610113578063bbb897441461069a578063bc951b91146106b5578063c4ae3168146106d6578063c87b56dd146106eb578063cbce4c971461070b578063cef117291461072b57600080fd5b80639231ab2a146105c957806395d89b411461061f578063a0712d6814610634578063a22cb46514610647578063a6d612f914610667578063b88d4fde1461067a57600080fd5b8063438b6300116101fe57806368570bd6116101b757806368570bd6146105165780636f8b44b01461053657806370a0823114610556578063715018a614610576578063729ad39e1461058b5780638da5cb5b146105ab57600080fd5b8063438b63001461044f57806344a0d68a1461047c5780634f6ccce71461049c57806355f804b3146104bc5780635c975abb146104dc5780636352211e146104f657600080fd5b806323b872dd1161025057806323b872dd1461039c5780632cefffa7146103bc5780632f745c59146103f25780633ccfd60b1461041257806341827f131461041a57806342842e0e1461042f57600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b31461032757806313faede61461034957806318160ddd1461036d575b600080fd5b3480156102a457600080fd5b506102b86102b33660046125cc565b6108d4565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610941565b6040516102c4919061274e565b3480156102fb57600080fd5b5061030f61030a3660046125b3565b6109d3565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b5061034761034236600461245c565b610a17565b005b34801561035557600080fd5b5061035f600d5481565b6040519081526020016102c4565b34801561037957600080fd5b5061035f6000546001600160801b03600160801b82048116918116919091031690565b3480156103a857600080fd5b506103476103b7366004612369565b610aa5565b3480156103c857600080fd5b50600b546103df90640100000000900461ffff1681565b60405161ffff90911681526020016102c4565b3480156103fe57600080fd5b5061035f61040d36600461245c565b610ab0565b610347610bac565b34801561042657600080fd5b506102e2610c53565b34801561043b57600080fd5b5061034761044a366004612369565b610ce1565b34801561045b57600080fd5b5061046f61046a36600461231b565b610cfc565b6040516102c4919061270a565b34801561048857600080fd5b506103476104973660046125b3565b610d9d565b3480156104a857600080fd5b5061035f6104b73660046125b3565b610dcc565b3480156104c857600080fd5b506103476104d7366004612606565b610e76565b3480156104e857600080fd5b50600f546102b89060ff1681565b34801561050257600080fd5b5061030f6105113660046125b3565b610eb7565b34801561052257600080fd5b5061034761053136600461231b565b610ec9565b34801561054257600080fd5b506103476105513660046125b3565b610f15565b34801561056257600080fd5b5061035f61057136600461231b565b610f44565b34801561058257600080fd5b50610347610f92565b34801561059757600080fd5b506103476105a6366004612486565b610fc8565b3480156105b757600080fd5b506007546001600160a01b031661030f565b3480156105d557600080fd5b506105e96105e43660046125b3565b61103a565b6040805182516001600160a01b031681526020808401516001600160401b031690820152918101511515908201526060016102c4565b34801561062b57600080fd5b506102e2611060565b6103476106423660046125b3565b61106f565b34801561065357600080fd5b50610347610662366004612420565b6112ed565b610347610675366004612539565b611383565b34801561068657600080fd5b506103476106953660046123a5565b611537565b3480156106a657600080fd5b50600b546103df9061ffff1681565b3480156106c157600080fd5b50600b546103df9062010000900461ffff1681565b3480156106e257600080fd5b50610347611571565b3480156106f757600080fd5b506102e26107063660046125b3565b6115af565b34801561071757600080fd5b5061034761072636600461245c565b61167a565b34801561073757600080fd5b5061034761074636600461264e565b6116ae565b34801561075757600080fd5b5061035f600c5481565b34801561076d57600080fd5b5061035f61077c36600461231b565b6116f8565b34801561078d57600080fd5b5061034761079c3660046125b3565b611703565b3480156107ad57600080fd5b50600f546102b890610100900460ff1681565b3480156107cc57600080fd5b5061035f600e5481565b3480156107e257600080fd5b506103476107f136600461264e565b611732565b34801561080257600080fd5b506102b8610811366004612336565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561084b57600080fd5b5061034761085a36600461264e565b611774565b34801561086b57600080fd5b506103476117c2565b34801561088057600080fd5b5061034761088f3660046125b3565b611809565b3480156108a057600080fd5b506103476108af36600461231b565b611838565b3480156108c057600080fd5b506103476108cf36600461245c565b6118d0565b60006001600160e01b031982166380ac58cd60e01b148061090557506001600160e01b03198216635b5e139f60e01b145b8061092057506001600160e01b0319821663780e9d6360e01b145b8061093b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461095090612854565b80601f016020809104026020016040519081016040528092919081815260200182805461097c90612854565b80156109c95780601f1061099e576101008083540402835291602001916109c9565b820191906000526020600020905b8154815290600101906020018083116109ac57829003601f168201915b5050505050905090565b60006109de82611943565b6109fb576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a2282610eb7565b9050806001600160a01b0316836001600160a01b03161415610a575760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a775750610a758133610811565b155b15610a95576040516367d9dca160e11b815260040160405180910390fd5b610aa0838383611977565b505050565b610aa08383836119d3565b6000610abb83610f44565b8210610ada576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610ba657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610b525750610b9e565b80516001600160a01b031615610b6757805192505b876001600160a01b0316836001600160a01b03161415610b9c5786841415610b955750935061093b92505050565b6001909301925b505b600101610aeb565b50600080fd5b6007546001600160a01b03163314610bdf5760405162461bcd60e51b8152600401610bd690612761565b60405180910390fd5b6000610bf36007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c3d576040519150601f19603f3d011682016040523d82523d6000602084013e610c42565b606091505b5050905080610c5057600080fd5b50565b60098054610c6090612854565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8c90612854565b8015610cd95780601f10610cae57610100808354040283529160200191610cd9565b820191906000526020600020905b815481529060010190602001808311610cbc57829003601f168201915b505050505081565b610aa083838360405180602001604052806000815250611537565b60606000610d0983611bf0565b90506000816001600160401b03811115610d2557610d25612900565b604051908082528060200260200182016040528015610d4e578160200160208202803683370190505b50905060005b82811015610d9557610d668582610ab0565b828281518110610d7857610d786128ea565b602090810291909101015280610d8d8161288f565b915050610d54565b509392505050565b6007546001600160a01b03163314610dc75760405162461bcd60e51b8152600401610bd690612761565b600d55565b600080546001600160801b031681805b82811015610e5c57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610e535785831415610e4c5750949350505050565b6001909201915b50600101610ddc565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610ea05760405162461bcd60e51b8152600401610bd690612761565b8051610eb390600990602084019061220f565b5050565b6000610ec282611c45565b5192915050565b6007546001600160a01b03163314610ef35760405162461bcd60e51b8152600401610bd690612761565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b03163314610f3f5760405162461bcd60e51b8152600401610bd690612761565b600c55565b60006001600160a01b038216610f6d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610fbc5760405162461bcd60e51b8152600401610bd690612761565b610fc66000611d67565b565b6007546001600160a01b03163314610ff25760405162461bcd60e51b8152600401610bd690612761565b60005b8151811015610eb3576000828281518110611012576110126128ea565b60200260200101519050611027816001611939565b50806110328161288f565b915050610ff5565b604080516060810182526000808252602082018190529181019190915261093b82611c45565b60606002805461095090612854565b6007546001600160a01b031633146112e357600061108c33610f44565b600f5490915060ff161561109f57600080fd5b600f54610100900460ff16156110f75760405162461bcd60e51b815260206004820152601860248201527f596f752063616e74206d696e74206f6e2050726573616c6500000000000000006044820152606401610bd6565b600082116111535760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610bd6565b600b5461ffff168211156111b95760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b6064820152608401610bd6565b600c54826111df6000546001600160801b03600160801b82048116918116919091031690565b6111e991906127c6565b111561122c5760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610bd6565b600b5462010000900461ffff1661124383836127c6565b11156112915760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f726500000000000000006044820152606401610bd6565b81600d5461129f91906127f2565b3410156112e15760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610bd6565b505b610c503382611939565b6001600160a01b0382163314156113175760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b604080513360601b6bffffffffffffffffffffffff191660208083019190915282516014818403018152603490920190925280519101206113f790848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611db992505050565b6114335760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610bd6565b600b543360009081526010602052604090205464010000000090910461ffff169061145f9083906127c6565b11156114ad5760405162461bcd60e51b815260206004820152601760248201527f45786365656473204d6178204d696e7420616d6f756e740000000000000000006044820152606401610bd6565b80600e546114bb91906127f2565b3410156114fd5760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610bd6565b6115073382611939565b336000908152601060205260409020546115229082906127c6565b33600090815260106020526040902055505050565b6115428484846119d3565b61154e84848484611dc8565b61156b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b0316331461159b5760405162461bcd60e51b8152600401610bd690612761565b600f805460ff19811660ff90911615179055565b60606115ba82611943565b61161e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bd6565b6000611628611ed7565b905060008151116116485760405180602001604052806000815250611673565b8061165284611ee6565b60405160200161166392919061269e565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146116a45760405162461bcd60e51b8152600401610bd690612761565b610eb38282611939565b6007546001600160a01b031633146116d85760405162461bcd60e51b8152600401610bd690612761565b600b805461ffff909216620100000263ffff000019909216919091179055565b600061093b82611bf0565b6007546001600160a01b0316331461172d5760405162461bcd60e51b8152600401610bd690612761565b600e55565b6007546001600160a01b0316331461175c5760405162461bcd60e51b8152600401610bd690612761565b600b805461ffff191661ffff92909216919091179055565b6007546001600160a01b0316331461179e5760405162461bcd60e51b8152600401610bd690612761565b600b805461ffff9092166401000000000265ffff0000000019909216919091179055565b6007546001600160a01b031633146117ec5760405162461bcd60e51b8152600401610bd690612761565b600f805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146118335760405162461bcd60e51b8152600401610bd690612761565b600a55565b6007546001600160a01b031633146118625760405162461bcd60e51b8152600401610bd690612761565b6001600160a01b0381166118c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd6565b610c5081611d67565b6008546001600160a01b031633146119395760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b6064820152608401610bd6565b610eb38282611fe3565b600080546001600160801b03168210801561093b575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119de82611c45565b80519091506000906001600160a01b0316336001600160a01b03161480611a0c57508151611a0c9033610811565b80611a27575033611a1c846109d3565b6001600160a01b0316145b905080611a4757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a7c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611aa357604051633a954ecd60e21b815260040160405180910390fd5b611ab36000848460000151611977565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611ba6576000546001600160801b0316811015611ba657825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006001600160a01b038216611c19576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260046020526040902054600160401b90046001600160401b031690565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611d4e57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d4c5780516001600160a01b031615611ce3579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d47579392505050565b611ce3565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061167382600a5485611ffd565b60006001600160a01b0384163b15611ecb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e0c9033908990889088906004016126cd565b602060405180830381600087803b158015611e2657600080fd5b505af1925050508015611e56575060408051601f3d908101601f19168201909252611e53918101906125e9565b60015b611eb1573d808015611e84576040519150601f19603f3d011682016040523d82523d6000602084013e611e89565b606091505b508051611ea9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ecf565b5060015b949350505050565b60606009805461095090612854565b606081611f0a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f345780611f1e8161288f565b9150611f2d9050600a836127de565b9150611f0e565b6000816001600160401b03811115611f4e57611f4e612900565b6040519080825280601f01601f191660200182016040528015611f78576020820181803683370190505b5090505b8415611ecf57611f8d600183612811565b9150611f9a600a866128aa565b611fa59060306127c6565b60f81b818381518110611fba57611fba6128ea565b60200101906001600160f81b031916908160001a905350611fdc600a866127de565b9450611f7c565b610eb3828260405180602001604052806000815250612013565b60008261200a8584612020565b14949350505050565b610aa0838383600161208c565b600081815b8451811015610d95576000858281518110612042576120426128ea565b602002602001015190508083116120685760008381526020829052604090209250612079565b600081815260208490526040902092505b50806120848161288f565b915050612025565b6000546001600160801b03166001600160a01b0385166120be57604051622e076360e81b815260040160405180910390fd5b836120dc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156121e95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156121bf57506121bd6000888488611dc8565b155b156121dd576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101612168565b50600080546001600160801b0319166001600160801b0392909216919091179055611be9565b82805461221b90612854565b90600052602060002090601f01602090048101928261223d5760008555612283565b82601f1061225657805160ff1916838001178555612283565b82800160010185558215612283579182015b82811115612283578251825591602001919060010190612268565b5061228f929150612293565b5090565b5b8082111561228f5760008155600101612294565b60006001600160401b038311156122c1576122c1612900565b6122d4601f8401601f1916602001612796565b90508281528383830111156122e857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461231657600080fd5b919050565b60006020828403121561232d57600080fd5b611673826122ff565b6000806040838503121561234957600080fd5b612352836122ff565b9150612360602084016122ff565b90509250929050565b60008060006060848603121561237e57600080fd5b612387846122ff565b9250612395602085016122ff565b9150604084013590509250925092565b600080600080608085870312156123bb57600080fd5b6123c4856122ff565b93506123d2602086016122ff565b92506040850135915060608501356001600160401b038111156123f457600080fd5b8501601f8101871361240557600080fd5b612414878235602084016122a8565b91505092959194509250565b6000806040838503121561243357600080fd5b61243c836122ff565b91506020830135801515811461245157600080fd5b809150509250929050565b6000806040838503121561246f57600080fd5b612478836122ff565b946020939093013593505050565b6000602080838503121561249957600080fd5b82356001600160401b03808211156124b057600080fd5b818501915085601f8301126124c457600080fd5b8135818111156124d6576124d6612900565b8060051b91506124e7848301612796565b8181528481019084860184860187018a101561250257600080fd5b600095505b8386101561252c57612518816122ff565b835260019590950194918601918601612507565b5098975050505050505050565b60008060006040848603121561254e57600080fd5b83356001600160401b038082111561256557600080fd5b818601915086601f83011261257957600080fd5b81358181111561258857600080fd5b8760208260051b850101111561259d57600080fd5b6020928301989097509590910135949350505050565b6000602082840312156125c557600080fd5b5035919050565b6000602082840312156125de57600080fd5b813561167381612916565b6000602082840312156125fb57600080fd5b815161167381612916565b60006020828403121561261857600080fd5b81356001600160401b0381111561262e57600080fd5b8201601f8101841361263f57600080fd5b611ecf848235602084016122a8565b60006020828403121561266057600080fd5b813561ffff8116811461167357600080fd5b6000815180845261268a816020860160208601612828565b601f01601f19169290920160200192915050565b600083516126b0818460208801612828565b8351908301906126c4818360208801612828565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061270090830184612672565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561274257835183529284019291840191600101612726565b50909695505050505050565b6020815260006116736020830184612672565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156127be576127be612900565b604052919050565b600082198211156127d9576127d96128be565b500190565b6000826127ed576127ed6128d4565b500490565b600081600019048311821515161561280c5761280c6128be565b500290565b600082821015612823576128236128be565b500390565b60005b8381101561284357818101518382015260200161282b565b8381111561156b5750506000910152565b600181811c9082168061286857607f821691505b6020821081141561288957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128a3576128a36128be565b5060010190565b6000826128b9576128b96128d4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c5057600080fdfea2646970667358221220d747a31727000831e30f8c17737eaefadb5b30d69584a77fe088d5f08b68d7b564736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f75732d63656e7472616c312d68696a616269717565656e732d36333065622e636c6f756466756e6374696f6e732e6e65742f6170702f746f6b656e2f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c80639231ab2a1161015a578063d5abeb01116100c1578063e985e9c51161007a578063e985e9c5146107f6578063ea4446221461083f578063ed8161791461085f578063ee89121214610874578063f2fde38b14610894578063f4da1846146108b457600080fd5b8063d5abeb011461074b578063dc33e68114610761578063dfc33dd114610781578063e5a88cdb146107a1578063e7b99ec7146107c0578063e97800cb146107d657600080fd5b8063bbb8974411610113578063bbb897441461069a578063bc951b91146106b5578063c4ae3168146106d6578063c87b56dd146106eb578063cbce4c971461070b578063cef117291461072b57600080fd5b80639231ab2a146105c957806395d89b411461061f578063a0712d6814610634578063a22cb46514610647578063a6d612f914610667578063b88d4fde1461067a57600080fd5b8063438b6300116101fe57806368570bd6116101b757806368570bd6146105165780636f8b44b01461053657806370a0823114610556578063715018a614610576578063729ad39e1461058b5780638da5cb5b146105ab57600080fd5b8063438b63001461044f57806344a0d68a1461047c5780634f6ccce71461049c57806355f804b3146104bc5780635c975abb146104dc5780636352211e146104f657600080fd5b806323b872dd1161025057806323b872dd1461039c5780632cefffa7146103bc5780632f745c59146103f25780633ccfd60b1461041257806341827f131461041a57806342842e0e1461042f57600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b31461032757806313faede61461034957806318160ddd1461036d575b600080fd5b3480156102a457600080fd5b506102b86102b33660046125cc565b6108d4565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610941565b6040516102c4919061274e565b3480156102fb57600080fd5b5061030f61030a3660046125b3565b6109d3565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b5061034761034236600461245c565b610a17565b005b34801561035557600080fd5b5061035f600d5481565b6040519081526020016102c4565b34801561037957600080fd5b5061035f6000546001600160801b03600160801b82048116918116919091031690565b3480156103a857600080fd5b506103476103b7366004612369565b610aa5565b3480156103c857600080fd5b50600b546103df90640100000000900461ffff1681565b60405161ffff90911681526020016102c4565b3480156103fe57600080fd5b5061035f61040d36600461245c565b610ab0565b610347610bac565b34801561042657600080fd5b506102e2610c53565b34801561043b57600080fd5b5061034761044a366004612369565b610ce1565b34801561045b57600080fd5b5061046f61046a36600461231b565b610cfc565b6040516102c4919061270a565b34801561048857600080fd5b506103476104973660046125b3565b610d9d565b3480156104a857600080fd5b5061035f6104b73660046125b3565b610dcc565b3480156104c857600080fd5b506103476104d7366004612606565b610e76565b3480156104e857600080fd5b50600f546102b89060ff1681565b34801561050257600080fd5b5061030f6105113660046125b3565b610eb7565b34801561052257600080fd5b5061034761053136600461231b565b610ec9565b34801561054257600080fd5b506103476105513660046125b3565b610f15565b34801561056257600080fd5b5061035f61057136600461231b565b610f44565b34801561058257600080fd5b50610347610f92565b34801561059757600080fd5b506103476105a6366004612486565b610fc8565b3480156105b757600080fd5b506007546001600160a01b031661030f565b3480156105d557600080fd5b506105e96105e43660046125b3565b61103a565b6040805182516001600160a01b031681526020808401516001600160401b031690820152918101511515908201526060016102c4565b34801561062b57600080fd5b506102e2611060565b6103476106423660046125b3565b61106f565b34801561065357600080fd5b50610347610662366004612420565b6112ed565b610347610675366004612539565b611383565b34801561068657600080fd5b506103476106953660046123a5565b611537565b3480156106a657600080fd5b50600b546103df9061ffff1681565b3480156106c157600080fd5b50600b546103df9062010000900461ffff1681565b3480156106e257600080fd5b50610347611571565b3480156106f757600080fd5b506102e26107063660046125b3565b6115af565b34801561071757600080fd5b5061034761072636600461245c565b61167a565b34801561073757600080fd5b5061034761074636600461264e565b6116ae565b34801561075757600080fd5b5061035f600c5481565b34801561076d57600080fd5b5061035f61077c36600461231b565b6116f8565b34801561078d57600080fd5b5061034761079c3660046125b3565b611703565b3480156107ad57600080fd5b50600f546102b890610100900460ff1681565b3480156107cc57600080fd5b5061035f600e5481565b3480156107e257600080fd5b506103476107f136600461264e565b611732565b34801561080257600080fd5b506102b8610811366004612336565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561084b57600080fd5b5061034761085a36600461264e565b611774565b34801561086b57600080fd5b506103476117c2565b34801561088057600080fd5b5061034761088f3660046125b3565b611809565b3480156108a057600080fd5b506103476108af36600461231b565b611838565b3480156108c057600080fd5b506103476108cf36600461245c565b6118d0565b60006001600160e01b031982166380ac58cd60e01b148061090557506001600160e01b03198216635b5e139f60e01b145b8061092057506001600160e01b0319821663780e9d6360e01b145b8061093b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461095090612854565b80601f016020809104026020016040519081016040528092919081815260200182805461097c90612854565b80156109c95780601f1061099e576101008083540402835291602001916109c9565b820191906000526020600020905b8154815290600101906020018083116109ac57829003601f168201915b5050505050905090565b60006109de82611943565b6109fb576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a2282610eb7565b9050806001600160a01b0316836001600160a01b03161415610a575760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a775750610a758133610811565b155b15610a95576040516367d9dca160e11b815260040160405180910390fd5b610aa0838383611977565b505050565b610aa08383836119d3565b6000610abb83610f44565b8210610ada576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610ba657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610b525750610b9e565b80516001600160a01b031615610b6757805192505b876001600160a01b0316836001600160a01b03161415610b9c5786841415610b955750935061093b92505050565b6001909301925b505b600101610aeb565b50600080fd5b6007546001600160a01b03163314610bdf5760405162461bcd60e51b8152600401610bd690612761565b60405180910390fd5b6000610bf36007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c3d576040519150601f19603f3d011682016040523d82523d6000602084013e610c42565b606091505b5050905080610c5057600080fd5b50565b60098054610c6090612854565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8c90612854565b8015610cd95780601f10610cae57610100808354040283529160200191610cd9565b820191906000526020600020905b815481529060010190602001808311610cbc57829003601f168201915b505050505081565b610aa083838360405180602001604052806000815250611537565b60606000610d0983611bf0565b90506000816001600160401b03811115610d2557610d25612900565b604051908082528060200260200182016040528015610d4e578160200160208202803683370190505b50905060005b82811015610d9557610d668582610ab0565b828281518110610d7857610d786128ea565b602090810291909101015280610d8d8161288f565b915050610d54565b509392505050565b6007546001600160a01b03163314610dc75760405162461bcd60e51b8152600401610bd690612761565b600d55565b600080546001600160801b031681805b82811015610e5c57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610e535785831415610e4c5750949350505050565b6001909201915b50600101610ddc565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610ea05760405162461bcd60e51b8152600401610bd690612761565b8051610eb390600990602084019061220f565b5050565b6000610ec282611c45565b5192915050565b6007546001600160a01b03163314610ef35760405162461bcd60e51b8152600401610bd690612761565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b03163314610f3f5760405162461bcd60e51b8152600401610bd690612761565b600c55565b60006001600160a01b038216610f6d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610fbc5760405162461bcd60e51b8152600401610bd690612761565b610fc66000611d67565b565b6007546001600160a01b03163314610ff25760405162461bcd60e51b8152600401610bd690612761565b60005b8151811015610eb3576000828281518110611012576110126128ea565b60200260200101519050611027816001611939565b50806110328161288f565b915050610ff5565b604080516060810182526000808252602082018190529181019190915261093b82611c45565b60606002805461095090612854565b6007546001600160a01b031633146112e357600061108c33610f44565b600f5490915060ff161561109f57600080fd5b600f54610100900460ff16156110f75760405162461bcd60e51b815260206004820152601860248201527f596f752063616e74206d696e74206f6e2050726573616c6500000000000000006044820152606401610bd6565b600082116111535760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610bd6565b600b5461ffff168211156111b95760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b6064820152608401610bd6565b600c54826111df6000546001600160801b03600160801b82048116918116919091031690565b6111e991906127c6565b111561122c5760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610bd6565b600b5462010000900461ffff1661124383836127c6565b11156112915760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f726500000000000000006044820152606401610bd6565b81600d5461129f91906127f2565b3410156112e15760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610bd6565b505b610c503382611939565b6001600160a01b0382163314156113175760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b604080513360601b6bffffffffffffffffffffffff191660208083019190915282516014818403018152603490920190925280519101206113f790848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611db992505050565b6114335760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610bd6565b600b543360009081526010602052604090205464010000000090910461ffff169061145f9083906127c6565b11156114ad5760405162461bcd60e51b815260206004820152601760248201527f45786365656473204d6178204d696e7420616d6f756e740000000000000000006044820152606401610bd6565b80600e546114bb91906127f2565b3410156114fd5760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610bd6565b6115073382611939565b336000908152601060205260409020546115229082906127c6565b33600090815260106020526040902055505050565b6115428484846119d3565b61154e84848484611dc8565b61156b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b0316331461159b5760405162461bcd60e51b8152600401610bd690612761565b600f805460ff19811660ff90911615179055565b60606115ba82611943565b61161e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bd6565b6000611628611ed7565b905060008151116116485760405180602001604052806000815250611673565b8061165284611ee6565b60405160200161166392919061269e565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146116a45760405162461bcd60e51b8152600401610bd690612761565b610eb38282611939565b6007546001600160a01b031633146116d85760405162461bcd60e51b8152600401610bd690612761565b600b805461ffff909216620100000263ffff000019909216919091179055565b600061093b82611bf0565b6007546001600160a01b0316331461172d5760405162461bcd60e51b8152600401610bd690612761565b600e55565b6007546001600160a01b0316331461175c5760405162461bcd60e51b8152600401610bd690612761565b600b805461ffff191661ffff92909216919091179055565b6007546001600160a01b0316331461179e5760405162461bcd60e51b8152600401610bd690612761565b600b805461ffff9092166401000000000265ffff0000000019909216919091179055565b6007546001600160a01b031633146117ec5760405162461bcd60e51b8152600401610bd690612761565b600f805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146118335760405162461bcd60e51b8152600401610bd690612761565b600a55565b6007546001600160a01b031633146118625760405162461bcd60e51b8152600401610bd690612761565b6001600160a01b0381166118c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd6565b610c5081611d67565b6008546001600160a01b031633146119395760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b6064820152608401610bd6565b610eb38282611fe3565b600080546001600160801b03168210801561093b575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119de82611c45565b80519091506000906001600160a01b0316336001600160a01b03161480611a0c57508151611a0c9033610811565b80611a27575033611a1c846109d3565b6001600160a01b0316145b905080611a4757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a7c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611aa357604051633a954ecd60e21b815260040160405180910390fd5b611ab36000848460000151611977565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611ba6576000546001600160801b0316811015611ba657825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006001600160a01b038216611c19576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260046020526040902054600160401b90046001600160401b031690565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611d4e57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d4c5780516001600160a01b031615611ce3579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d47579392505050565b611ce3565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061167382600a5485611ffd565b60006001600160a01b0384163b15611ecb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e0c9033908990889088906004016126cd565b602060405180830381600087803b158015611e2657600080fd5b505af1925050508015611e56575060408051601f3d908101601f19168201909252611e53918101906125e9565b60015b611eb1573d808015611e84576040519150601f19603f3d011682016040523d82523d6000602084013e611e89565b606091505b508051611ea9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ecf565b5060015b949350505050565b60606009805461095090612854565b606081611f0a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f345780611f1e8161288f565b9150611f2d9050600a836127de565b9150611f0e565b6000816001600160401b03811115611f4e57611f4e612900565b6040519080825280601f01601f191660200182016040528015611f78576020820181803683370190505b5090505b8415611ecf57611f8d600183612811565b9150611f9a600a866128aa565b611fa59060306127c6565b60f81b818381518110611fba57611fba6128ea565b60200101906001600160f81b031916908160001a905350611fdc600a866127de565b9450611f7c565b610eb3828260405180602001604052806000815250612013565b60008261200a8584612020565b14949350505050565b610aa0838383600161208c565b600081815b8451811015610d95576000858281518110612042576120426128ea565b602002602001015190508083116120685760008381526020829052604090209250612079565b600081815260208490526040902092505b50806120848161288f565b915050612025565b6000546001600160801b03166001600160a01b0385166120be57604051622e076360e81b815260040160405180910390fd5b836120dc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156121e95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156121bf57506121bd6000888488611dc8565b155b156121dd576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101612168565b50600080546001600160801b0319166001600160801b0392909216919091179055611be9565b82805461221b90612854565b90600052602060002090601f01602090048101928261223d5760008555612283565b82601f1061225657805160ff1916838001178555612283565b82800160010185558215612283579182015b82811115612283578251825591602001919060010190612268565b5061228f929150612293565b5090565b5b8082111561228f5760008155600101612294565b60006001600160401b038311156122c1576122c1612900565b6122d4601f8401601f1916602001612796565b90508281528383830111156122e857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461231657600080fd5b919050565b60006020828403121561232d57600080fd5b611673826122ff565b6000806040838503121561234957600080fd5b612352836122ff565b9150612360602084016122ff565b90509250929050565b60008060006060848603121561237e57600080fd5b612387846122ff565b9250612395602085016122ff565b9150604084013590509250925092565b600080600080608085870312156123bb57600080fd5b6123c4856122ff565b93506123d2602086016122ff565b92506040850135915060608501356001600160401b038111156123f457600080fd5b8501601f8101871361240557600080fd5b612414878235602084016122a8565b91505092959194509250565b6000806040838503121561243357600080fd5b61243c836122ff565b91506020830135801515811461245157600080fd5b809150509250929050565b6000806040838503121561246f57600080fd5b612478836122ff565b946020939093013593505050565b6000602080838503121561249957600080fd5b82356001600160401b03808211156124b057600080fd5b818501915085601f8301126124c457600080fd5b8135818111156124d6576124d6612900565b8060051b91506124e7848301612796565b8181528481019084860184860187018a101561250257600080fd5b600095505b8386101561252c57612518816122ff565b835260019590950194918601918601612507565b5098975050505050505050565b60008060006040848603121561254e57600080fd5b83356001600160401b038082111561256557600080fd5b818601915086601f83011261257957600080fd5b81358181111561258857600080fd5b8760208260051b850101111561259d57600080fd5b6020928301989097509590910135949350505050565b6000602082840312156125c557600080fd5b5035919050565b6000602082840312156125de57600080fd5b813561167381612916565b6000602082840312156125fb57600080fd5b815161167381612916565b60006020828403121561261857600080fd5b81356001600160401b0381111561262e57600080fd5b8201601f8101841361263f57600080fd5b611ecf848235602084016122a8565b60006020828403121561266057600080fd5b813561ffff8116811461167357600080fd5b6000815180845261268a816020860160208601612828565b601f01601f19169290920160200192915050565b600083516126b0818460208801612828565b8351908301906126c4818360208801612828565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061270090830184612672565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561274257835183529284019291840191600101612726565b50909695505050505050565b6020815260006116736020830184612672565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156127be576127be612900565b604052919050565b600082198211156127d9576127d96128be565b500190565b6000826127ed576127ed6128d4565b500490565b600081600019048311821515161561280c5761280c6128be565b500290565b600082821015612823576128236128be565b500390565b60005b8381101561284357818101518382015260200161282b565b8381111561156b5750506000910152565b600181811c9082168061286857607f821691505b6020821081141561288957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128a3576128a36128be565b5060010190565b6000826128b9576128b96128d4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c5057600080fdfea2646970667358221220d747a31727000831e30f8c17737eaefadb5b30d69584a77fe088d5f08b68d7b564736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f75732d63656e7472616c312d68696a616269717565656e732d36333065622e636c6f756466756e6374696f6e732e6e65742f6170702f746f6b656e2f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUrl (string): https://us-central1-hijabiqueens-630eb.cloudfunctions.net/app/token/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f75732d63656e7472616c312d68696a616269717565656e73
Arg [3] : 2d36333065622e636c6f756466756e6374696f6e732e6e65742f6170702f746f
Arg [4] : 6b656e2f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48774:6861:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32238:372;;;;;;;;;;-1:-1:-1;32238:372:0;;;;;:::i;:::-;;:::i;:::-;;;8626:14:1;;8619:22;8601:41;;8589:2;8574:18;32238:372:0;;;;;;;;34848:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36351:204::-;;;;;;;;;;-1:-1:-1;36351:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7287:32:1;;;7269:51;;7257:2;7242:18;36351:204:0;7123:203:1;35914:371:0;;;;;;;;;;-1:-1:-1;35914:371:0;;;;;:::i;:::-;;:::i;:::-;;49244:32;;;;;;;;;;;;;;;;;;;14156:25:1;;;14144:2;14129:18;49244:32:0;14010:177:1;29475:280:0;;;;;;;;;;;;29528:7;29720:12;-1:-1:-1;;;;;;;;29720:12:0;;;;29704:13;;;:28;;;;29697:35;;29475:280;37208:170;;;;;;;;;;-1:-1:-1;37208:170:0;;;;;:::i;:::-;;:::i;49115:43::-;;;;;;;;;;-1:-1:-1;49115:43:0;;;;;;;;;;;;;;13991:6:1;13979:19;;;13961:38;;13949:2;13934:18;49115:43:0;13817:188:1;31061:1105:0;;;;;;;;;;-1:-1:-1;31061:1105:0;;;;;:::i;:::-;;:::i;55475:157::-;;;:::i;48888:24::-;;;;;;;;;;;;;:::i;37449:185::-;;;;;;;;;;-1:-1:-1;37449:185:0;;;;;:::i;:::-;;:::i;49822:394::-;;;;;;;;;;-1:-1:-1;49822:394:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54159:86::-;;;;;;;;;;-1:-1:-1;54159:86:0;;;;;:::i;:::-;;:::i;30048:713::-;;;;;;;;;;-1:-1:-1;30048:713:0;;;;;:::i;:::-;;:::i;54867:107::-;;;;;;;;;;-1:-1:-1;54867:107:0;;;;;:::i;:::-;;:::i;49348:25::-;;;;;;;;;;-1:-1:-1;49348:25:0;;;;;;;;34657:124;;;;;;;;;;-1:-1:-1;34657:124:0;;;;;:::i;:::-;;:::i;49695:119::-;;;;;;;;;;-1:-1:-1;49695:119:0;;;;;:::i;:::-;;:::i;54765:94::-;;;;;;;;;;-1:-1:-1;54765:94:0;;;;;:::i;:::-;;:::i;32674:206::-;;;;;;;;;;-1:-1:-1;32674:206:0;;;;;:::i;:::-;;:::i;7119:103::-;;;;;;;;;;;;;:::i;53303:234::-;;;;;;;;;;-1:-1:-1;53303:234:0;;;;;:::i;:::-;;:::i;6468:87::-;;;;;;;;;;-1:-1:-1;6541:6:0;;-1:-1:-1;;;;;6541:6:0;6468:87;;55300:167;;;;;;;;;;-1:-1:-1;55300:167:0;;;;;:::i;:::-;;:::i;:::-;;;;13603:13:1;;-1:-1:-1;;;;;13599:39:1;13581:58;;13699:4;13687:17;;;13681:24;-1:-1:-1;;;;;13677:49:1;13655:20;;;13648:79;13785:17;;;13779:24;13772:32;13765:40;13743:20;;;13736:70;13569:2;13554:18;55300:167:0;13373:439:1;35017:104:0;;;;;;;;;;;;;:::i;52251:925::-;;;;;;:::i;:::-;;:::i;36627:279::-;;;;;;;;;;-1:-1:-1;36627:279:0;;;;;:::i;:::-;;:::i;51169:938::-;;;;;;:::i;:::-;;:::i;37705:342::-;;;;;;;;;;-1:-1:-1;37705:342:0;;;;;:::i;:::-;;:::i;48985:45::-;;;;;;;;;;-1:-1:-1;48985:45:0;;;;;;;;49037:40;;;;;;;;;;-1:-1:-1;49037:40:0;;;;;;;;;;;54982:75;;;;;;;;;;;;;:::i;53664:487::-;;;;;;;;;;-1:-1:-1;53664:487:0;;;;;:::i;:::-;;:::i;53184:111::-;;;;;;;;;;-1:-1:-1;53184:111:0;;;;;:::i;:::-;;:::i;54505:119::-;;;;;;;;;;-1:-1:-1;54505:119:0;;;;;:::i;:::-;;:::i;49189:32::-;;;;;;;;;;;;;;;;52115:113;;;;;;;;;;-1:-1:-1;52115:113:0;;;;;:::i;:::-;;:::i;54253:107::-;;;;;;;;;;-1:-1:-1;54253:107:0;;;;;:::i;:::-;;:::i;49380:36::-;;;;;;;;;;-1:-1:-1;49380:36:0;;;;;;;;;;;49283:41;;;;;;;;;;;;;;;;54368:129;;;;;;;;;;-1:-1:-1;54368:129:0;;;;;:::i;:::-;;:::i;36977:164::-;;;;;;;;;;-1:-1:-1;36977:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37098:25:0;;;37074:4;37098:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36977:164;54632:125;;;;;;;;;;-1:-1:-1;54632:125:0;;;;;:::i;:::-;;:::i;55065:99::-;;;;;;;;;;;;;:::i;50550:101::-;;;;;;;;;;-1:-1:-1;50550:101:0;;;;;:::i;:::-;;:::i;7377:201::-;;;;;;;;;;-1:-1:-1;7377:201:0;;;;;:::i;:::-;;:::i;50292:250::-;;;;;;;;;;-1:-1:-1;50292:250:0;;;;;:::i;:::-;;:::i;32238:372::-;32340:4;-1:-1:-1;;;;;;32377:40:0;;-1:-1:-1;;;32377:40:0;;:105;;-1:-1:-1;;;;;;;32434:48:0;;-1:-1:-1;;;32434:48:0;32377:105;:172;;;-1:-1:-1;;;;;;;32499:50:0;;-1:-1:-1;;;32499:50:0;32377:172;:225;;;-1:-1:-1;;;;;;;;;;19361:40:0;;;32566:36;32357:245;32238:372;-1:-1:-1;;32238:372:0:o;34848:100::-;34902:13;34935:5;34928:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34848:100;:::o;36351:204::-;36419:7;36444:16;36452:7;36444;:16::i;:::-;36439:64;;36469:34;;-1:-1:-1;;;36469:34:0;;;;;;;;;;;36439:64;-1:-1:-1;36523:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36523:24:0;;36351:204::o;35914:371::-;35987:13;36003:24;36019:7;36003:15;:24::i;:::-;35987:40;;36048:5;-1:-1:-1;;;;;36042:11:0;:2;-1:-1:-1;;;;;36042:11:0;;36038:48;;;36062:24;;-1:-1:-1;;;36062:24:0;;;;;;;;;;;36038:48;5272:10;-1:-1:-1;;;;;36103:21:0;;;;;;:63;;-1:-1:-1;36129:37:0;36146:5;5272:10;36977:164;:::i;36129:37::-;36128:38;36103:63;36099:138;;;36190:35;;-1:-1:-1;;;36190:35:0;;;;;;;;;;;36099:138;36249:28;36258:2;36262:7;36271:5;36249:8;:28::i;:::-;35976:309;35914:371;;:::o;37208:170::-;37342:28;37352:4;37358:2;37362:7;37342:9;:28::i;31061:1105::-;31150:7;31183:16;31193:5;31183:9;:16::i;:::-;31174:5;:25;31170:61;;31208:23;;-1:-1:-1;;;31208:23:0;;;;;;;;;;;31170:61;31242:22;31267:13;;-1:-1:-1;;;;;31267:13:0;;31242:22;;31517:557;31537:14;31533:1;:18;31517:557;;;31577:31;31611:14;;;:11;:14;;;;;;;;;31577:48;;;;;;;;;-1:-1:-1;;;;;31577:48:0;;;;-1:-1:-1;;;31577:48:0;;-1:-1:-1;;;;;31577:48:0;;;;;;;;-1:-1:-1;;;31577:48:0;;;;;;;;;;;;;;;;31644:73;;31689:8;;;31644:73;31739:14;;-1:-1:-1;;;;;31739:28:0;;31735:111;;31812:14;;;-1:-1:-1;31735:111:0;31889:5;-1:-1:-1;;;;;31868:26:0;:17;-1:-1:-1;;;;;31868:26:0;;31864:195;;;31938:5;31923:11;:20;31919:85;;;-1:-1:-1;31979:1:0;-1:-1:-1;31972:8:0;;-1:-1:-1;;;31972:8:0;31919:85;32026:13;;;;;31864:195;31558:516;31517:557;31553:3;;31517:557;;;;32150:8;;;55475:157;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;;;;;;;;;55532:7:::1;55553;6541:6:::0;;-1:-1:-1;;;;;6541:6:0;;6468:87;55553:7:::1;-1:-1:-1::0;;;;;55545:21:0::1;55574;55545:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55531:69;;;55619:2;55611:11;;;::::0;::::1;;55520:112;55475:157::o:0;48888:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37449:185::-;37587:39;37604:4;37610:2;37614:7;37587:39;;;;;;;;;;;;:16;:39::i;49822:394::-;49909:16;49943:23;49969:21;49983:6;49969:13;:21::i;:::-;49943:47;;50001:25;50043:15;-1:-1:-1;;;;;50029:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50029:30:0;;50001:58;;50075:9;50070:113;50090:15;50086:1;:19;50070:113;;;50141:30;50161:6;50169:1;50141:19;:30::i;:::-;50127:8;50136:1;50127:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;50107:3;;;;:::i;:::-;;;;50070:113;;;-1:-1:-1;50200:8:0;49822:394;-1:-1:-1;;;49822:394:0:o;54159:86::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;54222:4:::1;:15:::0;54159:86::o;30048:713::-;30115:7;30160:13;;-1:-1:-1;;;;;30160:13:0;30115:7;;30374:328;30394:14;30390:1;:18;30374:328;;;30434:31;30468:14;;;:11;:14;;;;;;;;;30434:48;;;;;;;;;-1:-1:-1;;;;;30434:48:0;;;;-1:-1:-1;;;30434:48:0;;-1:-1:-1;;;;;30434:48:0;;;;;;;;-1:-1:-1;;;30434:48:0;;;;;;;;;;;;;;30501:186;;30566:5;30551:11;:20;30547:85;;;-1:-1:-1;30607:1:0;30048:713;-1:-1:-1;;;;30048:713:0:o;30547:85::-;30654:13;;;;;30501:186;-1:-1:-1;30410:3:0;;30374:328;;;;30730:23;;-1:-1:-1;;;30730:23:0;;;;;;;;;;;54867:107;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;54942:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54867:107:::0;:::o;34657:124::-;34721:7;34748:20;34760:7;34748:11;:20::i;:::-;:25;;34657:124;-1:-1:-1;;34657:124:0:o;49695:119::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;49778:16:::1;:28:::0;;-1:-1:-1;;;;;;49778:28:0::1;-1:-1:-1::0;;;;;49778:28:0;;;::::1;::::0;;;::::1;::::0;;49695:119::o;54765:94::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;54832:9:::1;:19:::0;54765:94::o;32674:206::-;32738:7;-1:-1:-1;;;;;32762:19:0;;32758:60;;32790:28;;-1:-1:-1;;;32790:28:0;;;;;;;;;;;32758:60;-1:-1:-1;;;;;;32844:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;32844:27:0;;32674:206::o;7119:103::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;7184:30:::1;7211:1;7184:18;:30::i;:::-;7119:103::o:0;53303:234::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;53389:9:::1;53384:146;53408:17;:24;53404:1;:28;53384:146;;;53454:10;53467:17;53485:1;53467:20;;;;;;;;:::i;:::-;;;;;;;53454:33;;53502:16;53512:2;53516:1;53502:9;:16::i;:::-;-1:-1:-1::0;53434:3:0;::::1;::::0;::::1;:::i;:::-;;;;53384:146;;55300:167:::0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;55439:20:0;55451:7;55439:11;:20::i;35017:104::-;35073:13;35106:7;35099:14;;;;;:::i;52251:925::-;6541:6;;-1:-1:-1;;;;;6541:6:0;52316:10;:21;52312:810;;52354:23;52380:21;52390:10;52380:9;:21::i;:::-;52427:6;;52354:47;;-1:-1:-1;52427:6:0;;52426:7;52418:16;;;;;;52458;;;;;;;52457:17;52449:54;;;;-1:-1:-1;;;52449:54:0;;9833:2:1;52449:54:0;;;9815:21:1;9872:2;9852:18;;;9845:30;9911:26;9891:18;;;9884:54;9955:18;;52449:54:0;9631:348:1;52449:54:0;52540:1;52526:11;:15;52518:64;;;;-1:-1:-1;;;52518:64:0;;12123:2:1;52518:64:0;;;12105:21:1;12162:2;12142:18;;;12135:30;12201:34;12181:18;;;12174:62;-1:-1:-1;;;12252:18:1;;;12245:34;12296:19;;52518:64:0;11921:400:1;52518:64:0;52638:27;;;;52623:42;;;52597:143;;;;-1:-1:-1;;;52597:143:0;;10938:2:1;52597:143:0;;;10920:21:1;10977:2;10957:18;;;10950:30;11016:34;10996:18;;;10989:62;-1:-1:-1;;;11067:18:1;;;11060:37;11114:19;;52597:143:0;10736:403:1;52597:143:0;52812:9;;52797:11;52781:13;29528:7;29720:12;-1:-1:-1;;;;;;;;29720:12:0;;;;29704:13;;;:28;;;;29697:35;;29475:280;52781:13;:27;;;;:::i;:::-;:40;;52755:120;;;;-1:-1:-1;;;52755:120:0;;9079:2:1;52755:120:0;;;9061:21:1;9118:2;9098:18;;;9091:30;-1:-1:-1;;;9137:18:1;;;9130:48;9195:18;;52755:120:0;8877:342:1;52755:120:0;52951:22;;;;;;;52917:29;52935:11;52917:15;:29;:::i;:::-;52916:57;;52890:143;;;;-1:-1:-1;;;52890:143:0;;13222:2:1;52890:143:0;;;13204:21:1;13261:2;13241:18;;;13234:30;13300:26;13280:18;;;13273:54;13344:18;;52890:143:0;13020:348:1;52890:143:0;53078:11;53071:4;;:18;;;;:::i;:::-;53058:9;:31;;53050:60;;;;-1:-1:-1;;;53050:60:0;;10593:2:1;53050:60:0;;;10575:21:1;10632:2;10612:18;;;10605:30;-1:-1:-1;;;10651:18:1;;;10644:46;10707:18;;53050:60:0;10391:340:1;53050:60:0;52339:783;52312:810;53134:34;53144:10;53156:11;53134:9;:34::i;36627:279::-;-1:-1:-1;;;;;36718:24:0;;5272:10;36718:24;36714:54;;;36751:17;;-1:-1:-1;;;36751:17:0;;;;;;;;;;;36714:54;5272:10;36781:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36781:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36781:53:0;;;;;;;;;;36850:48;;8601:41:1;;;36781:42:0;;5272:10;36850:48;;8574:18:1;36850:48:0;;;;;;;36627:279;;:::o;51169:938::-;51105:25;;;51401:10;6353:2:1;6349:15;-1:-1:-1;;6345:53:1;51105:25:0;;;;6333:66:1;;;;51105:25:0;;;;;;;;;6415:12:1;;;;51105:25:0;;;51095:36;;;;;51387:33;;51414:5;;51387:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51387:7:0;;-1:-1:-1;;;51387:33:0:i;:::-;51357:120;;;;-1:-1:-1;;;51357:120:0;;12528:2:1;51357:120:0;;;12510:21:1;12567:2;12547:18;;;12540:30;-1:-1:-1;;;12586:18:1;;;12579:43;12639:18;;51357:120:0;12326:337:1;51357:120:0;51599:25;;51544:10;51527:28;;;;:16;:28;;;;;;51599:25;;;;;;;51527:42;;51558:11;;51527:42;:::i;:::-;51526:98;;51496:195;;;;-1:-1:-1;;;51496:195:0;;12870:2:1;51496:195:0;;;12852:21:1;12909:2;12889:18;;;12882:30;12948:25;12928:18;;;12921:53;12991:18;;51496:195:0;12668:347:1;51496:195:0;51772:11;51756:13;;:27;;;;:::i;:::-;51742:9;:42;;51712:132;;;;-1:-1:-1;;;51712:132:0;;10593:2:1;51712:132:0;;;10575:21:1;10632:2;10612:18;;;10605:30;-1:-1:-1;;;10651:18:1;;;10644:46;10707:18;;51712:132:0;10391:340:1;51712:132:0;51931:34;51941:10;51953:11;51931:9;:34::i;:::-;52053:10;52036:28;;;;:16;:28;;;;;;:63;;52088:11;;52036:63;:::i;:::-;52001:10;51984:28;;;;:16;:28;;;;;:115;-1:-1:-1;;;51169:938:0:o;37705:342::-;37872:28;37882:4;37888:2;37892:7;37872:9;:28::i;:::-;37916:48;37939:4;37945:2;37949:7;37958:5;37916:22;:48::i;:::-;37911:129;;37988:40;;-1:-1:-1;;;37988:40:0;;;;;;;;;;;37911:129;37705:342;;;;:::o;54982:75::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;55043:6:::1;::::0;;-1:-1:-1;;55033:16:0;::::1;55043:6;::::0;;::::1;55042:7;55033:16;::::0;;54982:75::o;53664:487::-;53782:13;53835:16;53843:7;53835;:16::i;:::-;53813:113;;;;-1:-1:-1;;;53813:113:0;;11707:2:1;53813:113:0;;;11689:21:1;11746:2;11726:18;;;11719:30;11785:34;11765:18;;;11758:62;-1:-1:-1;;;11836:18:1;;;11829:45;11891:19;;53813:113:0;11505:411:1;53813:113:0;53937:28;53968:10;:8;:10::i;:::-;53937:41;;54040:1;54015:14;54009:28;:32;:134;;;;;;;;;;;;;;;;;54085:14;54101:18;:7;:16;:18::i;:::-;54068:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54009:134;53989:154;53664:487;-1:-1:-1;;;53664:487:0:o;53184:111::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;53260:27:::1;53270:3;53275:11;53260:9;:27::i;54505:119::-:0;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;54584:22:::1;:32:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;54584:32:0;;::::1;::::0;;;::::1;::::0;;54505:119::o;52115:113::-;52173:7;52200:20;52214:5;52200:13;:20::i;54253:107::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;54328:13:::1;:24:::0;54253:107::o;54368:129::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;54452:27:::1;:37:::0;;-1:-1:-1;;54452:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;54368:129::o;54632:125::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;54714:25:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;54714:35:0;;::::1;::::0;;;::::1;::::0;;54632:125::o;55065:99::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;55140:16:::1;::::0;;-1:-1:-1;;55120:36:0;::::1;55140:16;::::0;;;::::1;;;55139:17;55120:36:::0;;::::1;;::::0;;55065:99::o;50550:101::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;50622:13:::1;:21:::0;50550:101::o;7377:201::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7466:22:0;::::1;7458:73;;;::::0;-1:-1:-1;;;7458:73:0;;9426:2:1;7458:73:0::1;::::0;::::1;9408:21:1::0;9465:2;9445:18;;;9438:30;9504:34;9484:18;;;9477:62;-1:-1:-1;;;9555:18:1;;;9548:36;9601:19;;7458:73:0::1;9224:402:1::0;7458:73:0::1;7542:28;7561:8;7542:18;:28::i;50292:250::-:0;50409:16;;-1:-1:-1;;;;;50409:16:0;50395:10;:30;50373:118;;;;-1:-1:-1;;;50373:118:0;;10186:2:1;50373:118:0;;;10168:21:1;10225:2;10205:18;;;10198:30;10264:34;10244:18;;;10237:62;-1:-1:-1;;;10315:18:1;;;10308:36;10361:19;;50373:118:0;9984:402:1;50373:118:0;50502:32;50512:8;50522:11;50502:9;:32::i;38302:144::-;38359:4;38393:13;;-1:-1:-1;;;;;38393:13:0;38383:23;;:55;;;;-1:-1:-1;;38411:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;38411:27:0;;;;38410:28;;38302:144::o;45518:196::-;45633:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45633:29:0;-1:-1:-1;;;;;45633:29:0;;;;;;;;;45678:28;;45633:24;;45678:28;;;;;;;45518:196;;;:::o;41019:2112::-;41134:35;41172:20;41184:7;41172:11;:20::i;:::-;41247:18;;41134:58;;-1:-1:-1;41205:22:0;;-1:-1:-1;;;;;41231:34:0;5272:10;-1:-1:-1;;;;;41231:34:0;;:101;;;-1:-1:-1;41299:18:0;;41282:50;;5272:10;36977:164;:::i;41282:50::-;41231:154;;;-1:-1:-1;5272:10:0;41349:20;41361:7;41349:11;:20::i;:::-;-1:-1:-1;;;;;41349:36:0;;41231:154;41205:181;;41404:17;41399:66;;41430:35;;-1:-1:-1;;;41430:35:0;;;;;;;;;;;41399:66;41502:4;-1:-1:-1;;;;;41480:26:0;:13;:18;;;-1:-1:-1;;;;;41480:26:0;;41476:67;;41515:28;;-1:-1:-1;;;41515:28:0;;;;;;;;;;;41476:67;-1:-1:-1;;;;;41558:16:0;;41554:52;;41583:23;;-1:-1:-1;;;41583:23:0;;;;;;;;;;;41554:52;41727:49;41744:1;41748:7;41757:13;:18;;;41727:8;:49::i;:::-;-1:-1:-1;;;;;42072:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42072:31:0;;;-1:-1:-1;;;;;42072:31:0;;;-1:-1:-1;;42072:31:0;;;;;;;42118:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42118:29:0;;;;;;;;;;;42164:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42209:61:0;;;;-1:-1:-1;;;42254:15:0;42209:61;;;;;;;;;;;42544:11;;;42574:24;;;;;:29;42544:11;;42574:29;42570:445;;42799:13;;-1:-1:-1;;;;;42799:13:0;42785:27;;42781:219;;;42869:18;;;42837:24;;;:11;:24;;;;;;;;:50;;42952:28;;;;-1:-1:-1;;;;;42910:70:0;-1:-1:-1;;;42910:70:0;-1:-1:-1;;;;;;42910:70:0;;;-1:-1:-1;;;;;42837:50:0;;;42910:70;;;;;;;42781:219;42047:979;43062:7;43058:2;-1:-1:-1;;;;;43043:27:0;43052:4;-1:-1:-1;;;;;43043:27:0;;;;;;;;;;;43081:42;41123:2008;;41019:2112;;;:::o;32888:207::-;32949:7;-1:-1:-1;;;;;32973:19:0;;32969:59;;33001:27;;-1:-1:-1;;;33001:27:0;;;;;;;;;;;32969:59;-1:-1:-1;;;;;;33054:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;33054:32:0;;-1:-1:-1;;;;;33054:32:0;;32888:207::o;33512:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;33678:13:0;;33622:7;;-1:-1:-1;;;;;33678:13:0;33671:20;;33667:861;;;33712:31;33746:17;;;:11;:17;;;;;;;;;33712:51;;;;;;;;;-1:-1:-1;;;;;33712:51:0;;;;-1:-1:-1;;;33712:51:0;;-1:-1:-1;;;;;33712:51:0;;;;;;;;-1:-1:-1;;;33712:51:0;;;;;;;;;;;;;;33782:731;;33832:14;;-1:-1:-1;;;;;33832:28:0;;33828:101;;33896:9;33512:1083;-1:-1:-1;;;33512:1083:0:o;33828:101::-;-1:-1:-1;;;34273:6:0;34318:17;;;;:11;:17;;;;;;;;;34306:29;;;;;;;;;-1:-1:-1;;;;;34306:29:0;;;;;-1:-1:-1;;;34306:29:0;;-1:-1:-1;;;;;34306:29:0;;;;;;;;-1:-1:-1;;;34306:29:0;;;;;;;;;;;;;34366:28;34362:109;;34434:9;33512:1083;-1:-1:-1;;;33512:1083:0:o;34362:109::-;34233:261;;;33693:835;33667:861;34556:31;;-1:-1:-1;;;34556:31:0;;;;;;;;;;;7738:191;7831:6;;;-1:-1:-1;;;;;7848:17:0;;;-1:-1:-1;;;;;;7848:17:0;;;;;;;7881:40;;7831:6;;;7848:17;7831:6;;7881:40;;7812:16;;7881:40;7801:128;7738:191;:::o;50718:::-;50826:4;50850:51;50869:5;50876:13;;50891:9;50850:18;:51::i;46279:790::-;46434:4;-1:-1:-1;;;;;46455:13:0;;9464:19;:23;46451:611;;46491:72;;-1:-1:-1;;;46491:72:0;;-1:-1:-1;;;;;46491:36:0;;;;;:72;;5272:10;;46542:4;;46548:7;;46557:5;;46491:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46491:72:0;;;;;;;;-1:-1:-1;;46491:72:0;;;;;;;;;;;;:::i;:::-;;;46487:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46737:13:0;;46733:259;;46787:40;;-1:-1:-1;;;46787:40:0;;;;;;;;;;;46733:259;46942:6;46936:13;46927:6;46923:2;46919:15;46912:38;46487:520;-1:-1:-1;;;;;;46614:55:0;-1:-1:-1;;;46614:55:0;;-1:-1:-1;46607:62:0;;46451:611;-1:-1:-1;47046:4:0;46451:611;46279:790;;;;;;:::o;53545:111::-;53605:13;53638:10;53631:17;;;;;:::i;2754:723::-;2810:13;3031:10;3027:53;;-1:-1:-1;;3058:10:0;;;;;;;;;;;;-1:-1:-1;;;3058:10:0;;;;;2754:723::o;3027:53::-;3105:5;3090:12;3146:78;3153:9;;3146:78;;3179:8;;;;:::i;:::-;;-1:-1:-1;3202:10:0;;-1:-1:-1;3210:2:0;3202:10;;:::i;:::-;;;3146:78;;;3234:19;3266:6;-1:-1:-1;;;;;3256:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3256:17:0;;3234:39;;3284:154;3291:10;;3284:154;;3318:11;3328:1;3318:11;;:::i;:::-;;-1:-1:-1;3387:10:0;3395:2;3387:5;:10;:::i;:::-;3374:24;;:2;:24;:::i;:::-;3361:39;;3344:6;3351;3344:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3344:56:0;;;;;;;;-1:-1:-1;3415:11:0;3424:2;3415:11;;:::i;:::-;;;3284:154;;38454:104;38523:27;38533:2;38537:8;38523:27;;;;;;;;;;;;:9;:27::i;923:190::-;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;;923:190;-1:-1:-1;;;;923:190:0:o;38921:163::-;39044:32;39050:2;39054:8;39064:5;39071:4;39044:5;:32::i;1475:675::-;1558:7;1601:4;1558:7;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;1852:57;;1720:382;;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;2029:57;;1720:382;-1:-1:-1;1654:3:0;;;;:::i;:::-;;;;1616:497;;39343:1422;39482:20;39505:13;-1:-1:-1;;;;;39505:13:0;-1:-1:-1;;;;;39533:16:0;;39529:48;;39558:19;;-1:-1:-1;;;39558:19:0;;;;;;;;;;;39529:48;39592:13;39588:44;;39614:18;;-1:-1:-1;;;39614:18:0;;;;;;;;;;;39588:44;-1:-1:-1;;;;;39984:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;40043:49:0;;-1:-1:-1;;;;;39984:44:0;;;;;;;40043:49;;;-1:-1:-1;;;;;39984:44:0;;;;;;40043:49;;;;;;;;;;;;;;;;40109:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;40159:66:0;;;;-1:-1:-1;;;40209:15:0;40159:66;;;;;;;;;;;40109:25;;40294:328;40314:8;40310:1;:12;40294:328;;;40353:38;;40378:12;;-1:-1:-1;;;;;40353:38:0;;;40370:1;;40353:38;;40370:1;;40353:38;40414:4;:68;;;;;40423:59;40454:1;40458:2;40462:12;40476:5;40423:22;:59::i;:::-;40422:60;40414:68;40410:164;;;40514:40;;-1:-1:-1;;;40514:40:0;;;;;;;;;;;40410:164;40592:14;;;;;40324:3;40294:328;;;-1:-1:-1;40638:13:0;:37;;-1:-1:-1;;;;;;40638:37:0;-1:-1:-1;;;;;40638:37:0;;;;;;;;;;40697:60;37705:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;-1:-1:-1;;;;;1811:6:1;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;-1:-1:-1;;;;;2958:2:1;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:1;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:1;2674:963;-1:-1:-1;;;;;;;;2674:963:1:o;3642:689::-;3737:6;3745;3753;3806:2;3794:9;3785:7;3781:23;3777:32;3774:52;;;3822:1;3819;3812:12;3774:52;3862:9;3849:23;-1:-1:-1;;;;;3932:2:1;3924:6;3921:14;3918:34;;;3948:1;3945;3938:12;3918:34;3986:6;3975:9;3971:22;3961:32;;4031:7;4024:4;4020:2;4016:13;4012:27;4002:55;;4053:1;4050;4043:12;4002:55;4093:2;4080:16;4119:2;4111:6;4108:14;4105:34;;;4135:1;4132;4125:12;4105:34;4190:7;4183:4;4173:6;4170:1;4166:14;4162:2;4158:23;4154:34;4151:47;4148:67;;;4211:1;4208;4201:12;4148:67;4242:4;4234:13;;;;4266:6;;-1:-1:-1;4304:20:1;;;;4291:34;;3642:689;-1:-1:-1;;;;3642:689:1:o;4336:180::-;4395:6;4448:2;4436:9;4427:7;4423:23;4419:32;4416:52;;;4464:1;4461;4454:12;4416:52;-1:-1:-1;4487:23:1;;4336:180;-1:-1:-1;4336:180:1:o;4521:245::-;4579:6;4632:2;4620:9;4611:7;4607:23;4603:32;4600:52;;;4648:1;4645;4638:12;4600:52;4687:9;4674:23;4706:30;4730:5;4706:30;:::i;4771:249::-;4840:6;4893:2;4881:9;4872:7;4868:23;4864:32;4861:52;;;4909:1;4906;4899:12;4861:52;4941:9;4935:16;4960:30;4984:5;4960:30;:::i;5025:450::-;5094:6;5147:2;5135:9;5126:7;5122:23;5118:32;5115:52;;;5163:1;5160;5153:12;5115:52;5203:9;5190:23;-1:-1:-1;;;;;5228:6:1;5225:30;5222:50;;;5268:1;5265;5258:12;5222:50;5291:22;;5344:4;5336:13;;5332:27;-1:-1:-1;5322:55:1;;5373:1;5370;5363:12;5322:55;5396:73;5461:7;5456:2;5443:16;5438:2;5434;5430:11;5396:73;:::i;5480:272::-;5538:6;5591:2;5579:9;5570:7;5566:23;5562:32;5559:52;;;5607:1;5604;5597:12;5559:52;5646:9;5633:23;5696:6;5689:5;5685:18;5678:5;5675:29;5665:57;;5718:1;5715;5708:12;5942:257;5983:3;6021:5;6015:12;6048:6;6043:3;6036:19;6064:63;6120:6;6113:4;6108:3;6104:14;6097:4;6090:5;6086:16;6064:63;:::i;:::-;6181:2;6160:15;-1:-1:-1;;6156:29:1;6147:39;;;;6188:4;6143:50;;5942:257;-1:-1:-1;;5942:257:1:o;6438:470::-;6617:3;6655:6;6649:13;6671:53;6717:6;6712:3;6705:4;6697:6;6693:17;6671:53;:::i;:::-;6787:13;;6746:16;;;;6809:57;6787:13;6746:16;6843:4;6831:17;;6809:57;:::i;:::-;6882:20;;6438:470;-1:-1:-1;;;;6438:470:1:o;7331:488::-;-1:-1:-1;;;;;7600:15:1;;;7582:34;;7652:15;;7647:2;7632:18;;7625:43;7699:2;7684:18;;7677:34;;;7747:3;7742:2;7727:18;;7720:31;;;7525:4;;7768:45;;7793:19;;7785:6;7768:45;:::i;:::-;7760:53;7331:488;-1:-1:-1;;;;;;7331:488:1:o;7824:632::-;7995:2;8047:21;;;8117:13;;8020:18;;;8139:22;;;7966:4;;7995:2;8218:15;;;;8192:2;8177:18;;;7966:4;8261:169;8275:6;8272:1;8269:13;8261:169;;;8336:13;;8324:26;;8405:15;;;;8370:12;;;;8297:1;8290:9;8261:169;;;-1:-1:-1;8447:3:1;;7824:632;-1:-1:-1;;;;;;7824:632:1:o;8653:219::-;8802:2;8791:9;8784:21;8765:4;8822:44;8862:2;8851:9;8847:18;8839:6;8822:44;:::i;11144:356::-;11346:2;11328:21;;;11365:18;;;11358:30;11424:34;11419:2;11404:18;;11397:62;11491:2;11476:18;;11144:356::o;14192:275::-;14263:2;14257:9;14328:2;14309:13;;-1:-1:-1;;14305:27:1;14293:40;;-1:-1:-1;;;;;14348:34:1;;14384:22;;;14345:62;14342:88;;;14410:18;;:::i;:::-;14446:2;14439:22;14192:275;;-1:-1:-1;14192:275:1:o;14472:128::-;14512:3;14543:1;14539:6;14536:1;14533:13;14530:39;;;14549:18;;:::i;:::-;-1:-1:-1;14585:9:1;;14472:128::o;14605:120::-;14645:1;14671;14661:35;;14676:18;;:::i;:::-;-1:-1:-1;14710:9:1;;14605:120::o;14730:168::-;14770:7;14836:1;14832;14828:6;14824:14;14821:1;14818:21;14813:1;14806:9;14799:17;14795:45;14792:71;;;14843:18;;:::i;:::-;-1:-1:-1;14883:9:1;;14730:168::o;14903:125::-;14943:4;14971:1;14968;14965:8;14962:34;;;14976:18;;:::i;:::-;-1:-1:-1;15013:9:1;;14903:125::o;15033:258::-;15105:1;15115:113;15129:6;15126:1;15123:13;15115:113;;;15205:11;;;15199:18;15186:11;;;15179:39;15151:2;15144:10;15115:113;;;15246:6;15243:1;15240:13;15237:48;;;-1:-1:-1;;15281:1:1;15263:16;;15256:27;15033:258::o;15296:380::-;15375:1;15371:12;;;;15418;;;15439:61;;15493:4;15485:6;15481:17;15471:27;;15439:61;15546:2;15538:6;15535:14;15515:18;15512:38;15509:161;;;15592:10;15587:3;15583:20;15580:1;15573:31;15627:4;15624:1;15617:15;15655:4;15652:1;15645:15;15509:161;;15296:380;;;:::o;15681:135::-;15720:3;-1:-1:-1;;15741:17:1;;15738:43;;;15761:18;;:::i;:::-;-1:-1:-1;15808:1:1;15797:13;;15681:135::o;15821:112::-;15853:1;15879;15869:35;;15884:18;;:::i;:::-;-1:-1:-1;15918:9:1;;15821:112::o;15938:127::-;15999:10;15994:3;15990:20;15987:1;15980:31;16030:4;16027:1;16020:15;16054:4;16051:1;16044:15;16070:127;16131:10;16126:3;16122:20;16119:1;16112:31;16162:4;16159:1;16152:15;16186:4;16183:1;16176:15;16202:127;16263:10;16258:3;16254:20;16251:1;16244:31;16294:4;16291:1;16284:15;16318:4;16315:1;16308:15;16334:127;16395:10;16390:3;16386:20;16383:1;16376:31;16426:4;16423:1;16416:15;16450:4;16447:1;16440:15;16466:131;-1:-1:-1;;;;;;16540:32:1;;16530:43;;16520:71;;16587:1;16584;16577:12

Swarm Source

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