ETH Price: $2,398.91 (+2.55%)

Token

QteesV2 (Qteesv2)
 

Overview

Max Total Supply

128 Qteesv2

Holders

84

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
yonihagos.eth
Balance
3 Qteesv2
0xb3390fa0a6e7bec23a1e678902c781939b582861
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Qteesv2

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-03-27
*/

// 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/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 MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Qteesv2.sol


pragma solidity ^0.8.7;




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

    string public baseApiURI;
    bytes32 private whitelistRoot;
  

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

    //whitelisting Settings
    uint16 public maxMintAmountPerWhitelist = 3;
   

    //Inventory
    uint256 public maxSupply = 5000;

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

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

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

    constructor(string memory _baseUrl) ERC721A("QteesV2", "Qteesv2") {
        baseApiURI = _baseUrl;
    }

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


    //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 withdraw() public payable onlyOwner {
        (bool hq, ) = payable(owner()).call{value: address(0xaCA90fDed6C3498228D7fC3aEc82E1ac7575Cd0d).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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_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":"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]

6080604052600c805465ffffffffffff1916640300030003179055611388600d55668e1bc9bf040000600e819055600f556010805461ffff191660011790553480156200004b57600080fd5b50604051620028ba380380620028ba8339810160408190526200006e9162000203565b6040518060400160405280600781526020016628ba32b2b9ab1960c91b8152506040518060400160405280600781526020016628ba32b2b9bb1960c91b8152508160029080519060200190620000c69291906200015d565b508051620000dc9060039060208401906200015d565b50506000805550620000ee336200010b565b80516200010390600a9060208401906200015d565b505062000332565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016b90620002df565b90600052602060002090601f0160209004810192826200018f5760008555620001da565b82601f10620001aa57805160ff1916838001178555620001da565b82800160010185558215620001da579182015b82811115620001da578251825591602001919060010190620001bd565b50620001e8929150620001ec565b5090565b5b80821115620001e85760008155600101620001ed565b600060208083850312156200021757600080fd5b82516001600160401b03808211156200022f57600080fd5b818501915085601f8301126200024457600080fd5b8151818111156200025957620002596200031c565b604051601f8201601f19908116603f011681019083821181831017156200028457620002846200031c565b8160405282815288868487010111156200029d57600080fd5b600093505b82841015620002c15784840186015181850187015292850192620002a2565b82841115620002d35760008684830101525b98975050505050505050565b600181811c90821680620002f457607f821691505b602082108114156200031657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61257880620003426000396000f3fe6080604052600436106102675760003560e01c8063a0712d6811610144578063dc33e681116100b6578063e985e9c51161007a578063e985e9c5146106f1578063ea4446221461073a578063ed8161791461075a578063ee8912121461076f578063f2fde38b1461078f578063f4da1846146107af57600080fd5b8063dc33e6811461065c578063dfc33dd11461067c578063e5a88cdb1461069c578063e7b99ec7146106bb578063e97800cb146106d157600080fd5b8063bc951b9111610108578063bc951b91146105b0578063c4ae3168146105d1578063c87b56dd146105e6578063cbce4c9714610606578063cef1172914610626578063d5abeb011461064657600080fd5b8063a0712d681461052f578063a22cb46514610542578063a6d612f914610562578063b88d4fde14610575578063bbb897441461059557600080fd5b806344a0d68a116101dd5780636f8b44b0116101a15780636f8b44b01461048757806370a08231146104a7578063715018a6146104c7578063729ad39e146104dc5780638da5cb5b146104fc57806395d89b411461051a57600080fd5b806344a0d68a146103ed57806355f804b31461040d5780635c975abb1461042d5780636352211e1461044757806368570bd61461046757600080fd5b806318160ddd1161022f57806318160ddd1461034157806323b872dd1461035a5780632cefffa71461037a5780633ccfd60b146103b057806341827f13146103b857806342842e0e146103cd57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806313faede61461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612226565b6107cf565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610821565b6040516102989190612364565b3480156102cf57600080fd5b506102e36102de36600461220d565b6108b3565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b6103163660046120b6565b6108f7565b005b34801561032957600080fd5b50610333600e5481565b604051908152602001610298565b34801561034d57600080fd5b5060015460005403610333565b34801561036657600080fd5b5061031b610375366004611fc3565b610985565b34801561038657600080fd5b50600c5461039d90640100000000900461ffff1681565b60405161ffff9091168152602001610298565b61031b610990565b3480156103c457600080fd5b506102b6610a55565b3480156103d957600080fd5b5061031b6103e8366004611fc3565b610ae3565b3480156103f957600080fd5b5061031b61040836600461220d565b610afe565b34801561041957600080fd5b5061031b610428366004612260565b610b2d565b34801561043957600080fd5b5060105461028c9060ff1681565b34801561045357600080fd5b506102e361046236600461220d565b610b6e565b34801561047357600080fd5b5061031b610482366004611f75565b610b80565b34801561049357600080fd5b5061031b6104a236600461220d565b610bcc565b3480156104b357600080fd5b506103336104c2366004611f75565b610bfb565b3480156104d357600080fd5b5061031b610c49565b3480156104e857600080fd5b5061031b6104f73660046120e0565b610c7f565b34801561050857600080fd5b506008546001600160a01b03166102e3565b34801561052657600080fd5b506102b6610cf1565b61031b61053d36600461220d565b610d00565b34801561054e57600080fd5b5061031b61055d36600461207a565b610f69565b61031b610570366004612193565b610fff565b34801561058157600080fd5b5061031b610590366004611fff565b6111b3565b3480156105a157600080fd5b50600c5461039d9061ffff1681565b3480156105bc57600080fd5b50600c5461039d9062010000900461ffff1681565b3480156105dd57600080fd5b5061031b611204565b3480156105f257600080fd5b506102b661060136600461220d565b611242565b34801561061257600080fd5b5061031b6106213660046120b6565b61130d565b34801561063257600080fd5b5061031b6106413660046122a8565b611341565b34801561065257600080fd5b50610333600d5481565b34801561066857600080fd5b50610333610677366004611f75565b61138b565b34801561068857600080fd5b5061031b61069736600461220d565b6113b9565b3480156106a857600080fd5b5060105461028c90610100900460ff1681565b3480156106c757600080fd5b50610333600f5481565b3480156106dd57600080fd5b5061031b6106ec3660046122a8565b6113e8565b3480156106fd57600080fd5b5061028c61070c366004611f90565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561074657600080fd5b5061031b6107553660046122a8565b61142a565b34801561076657600080fd5b5061031b611478565b34801561077b57600080fd5b5061031b61078a36600461220d565b6114bf565b34801561079b57600080fd5b5061031b6107aa366004611f75565b6114ee565b3480156107bb57600080fd5b5061031b6107ca3660046120b6565b611586565b60006001600160e01b031982166380ac58cd60e01b148061080057506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108309061246a565b80601f016020809104026020016040519081016040528092919081815260200182805461085c9061246a565b80156108a95780601f1061087e576101008083540402835291602001916108a9565b820191906000526020600020905b81548152906001019060200180831161088c57829003601f168201915b5050505050905090565b60006108be826115f9565b6108db576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090282610b6e565b9050806001600160a01b0316836001600160a01b031614156109375760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109575750610955813361070c565b155b15610975576040516367d9dca160e11b815260040160405180910390fd5b610980838383611624565b505050565b610980838383611680565b6008546001600160a01b031633146109c35760405162461bcd60e51b81526004016109ba90612377565b60405180910390fd5b60006109d76008546001600160a01b031690565b6001600160a01b031673aca90fded6c3498228d7fc3aec82e1ac7575cd0d6001600160a01b03163160405160006040518083038185875af1925050503d8060008114610a3f576040519150601f19603f3d011682016040523d82523d6000602084013e610a44565b606091505b5050905080610a5257600080fd5b50565b600a8054610a629061246a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8e9061246a565b8015610adb5780601f10610ab057610100808354040283529160200191610adb565b820191906000526020600020905b815481529060010190602001808311610abe57829003601f168201915b505050505081565b610980838383604051806020016040528060008152506111b3565b6008546001600160a01b03163314610b285760405162461bcd60e51b81526004016109ba90612377565b600e55565b6008546001600160a01b03163314610b575760405162461bcd60e51b81526004016109ba90612377565b8051610b6a90600a906020840190611e69565b5050565b6000610b798261186e565b5192915050565b6008546001600160a01b03163314610baa5760405162461bcd60e51b81526004016109ba90612377565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610bf65760405162461bcd60e51b81526004016109ba90612377565b600d55565b60006001600160a01b038216610c24576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c735760405162461bcd60e51b81526004016109ba90612377565b610c7d6000611988565b565b6008546001600160a01b03163314610ca95760405162461bcd60e51b81526004016109ba90612377565b60005b8151811015610b6a576000828281518110610cc957610cc9612500565b60200260200101519050610cde8160016115ef565b5080610ce9816124a5565b915050610cac565b6060600380546108309061246a565b6008546001600160a01b03163314610f5f576000610d1d33610bfb565b60105490915060ff1615610d3057600080fd5b601054610100900460ff1615610d885760405162461bcd60e51b815260206004820152601860248201527f596f752063616e74206d696e74206f6e2050726573616c65000000000000000060448201526064016109ba565b60008211610de45760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b60648201526084016109ba565b600c5461ffff16821115610e4a5760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b60648201526084016109ba565b600d5482610e5b6001546000540390565b610e6591906123dc565b1115610ea85760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b60448201526064016109ba565b600c5462010000900461ffff16610ebf83836123dc565b1115610f0d5760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f7265000000000000000060448201526064016109ba565b81600e54610f1b9190612408565b341015610f5d5760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b60448201526064016109ba565b505b610a5233826115ef565b6001600160a01b038216331415610f935760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120611073908484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506119da92505050565b6110af5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016109ba565b600c543360009081526011602052604090205464010000000090910461ffff16906110db9083906123dc565b11156111295760405162461bcd60e51b815260206004820152601760248201527f45786365656473204d6178204d696e7420616d6f756e7400000000000000000060448201526064016109ba565b80600f546111379190612408565b3410156111795760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b60448201526064016109ba565b61118333826115ef565b3360009081526011602052604090205461119e9082906123dc565b33600090815260116020526040902055505050565b6111be848484611680565b6001600160a01b0383163b151580156111e057506111de848484846119e9565b155b156111fe576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461122e5760405162461bcd60e51b81526004016109ba90612377565b6010805460ff19811660ff90911615179055565b606061124d826115f9565b6112b15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109ba565b60006112bb611ae1565b905060008151116112db5760405180602001604052806000815250611306565b806112e584611af0565b6040516020016112f69291906122f8565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113375760405162461bcd60e51b81526004016109ba90612377565b610b6a82826115ef565b6008546001600160a01b0316331461136b5760405162461bcd60e51b81526004016109ba90612377565b600c805461ffff909216620100000263ffff000019909216919091179055565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b031661081b565b6008546001600160a01b031633146113e35760405162461bcd60e51b81526004016109ba90612377565b600f55565b6008546001600160a01b031633146114125760405162461bcd60e51b81526004016109ba90612377565b600c805461ffff191661ffff92909216919091179055565b6008546001600160a01b031633146114545760405162461bcd60e51b81526004016109ba90612377565b600c805461ffff9092166401000000000265ffff0000000019909216919091179055565b6008546001600160a01b031633146114a25760405162461bcd60e51b81526004016109ba90612377565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146114e95760405162461bcd60e51b81526004016109ba90612377565b600b55565b6008546001600160a01b031633146115185760405162461bcd60e51b81526004016109ba90612377565b6001600160a01b03811661157d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ba565b610a5281611988565b6009546001600160a01b031633146115ef5760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b60648201526084016109ba565b610b6a8282611bed565b600080548210801561081b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061168b8261186e565b9050836001600160a01b031681600001516001600160a01b0316146116c25760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806116e057506116e0853361070c565b806116fb5750336116f0846108b3565b6001600160a01b0316145b90508061171b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661174257604051633a954ecd60e21b815260040160405180910390fd5b61174e60008487611624565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661182257600054821461182257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561196f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061196d5780516001600160a01b031615611904579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611968579392505050565b611904565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061130682600b5485611c07565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a1e903390899088908890600401612327565b602060405180830381600087803b158015611a3857600080fd5b505af1925050508015611a68575060408051601f3d908101601f19168201909252611a6591810190612243565b60015b611ac3573d808015611a96576040519150601f19603f3d011682016040523d82523d6000602084013e611a9b565b606091505b508051611abb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546108309061246a565b606081611b145750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b3e5780611b28816124a5565b9150611b379050600a836123f4565b9150611b18565b6000816001600160401b03811115611b5857611b58612516565b6040519080825280601f01601f191660200182016040528015611b82576020820181803683370190505b5090505b8415611ad957611b97600183612427565b9150611ba4600a866124c0565b611baf9060306123dc565b60f81b818381518110611bc457611bc4612500565b60200101906001600160f81b031916908160001a905350611be6600a866123f4565b9450611b86565b610b6a828260405180602001604052806000815250611c1d565b600082611c148584611c2a565b14949350505050565b6109808383836001611c9e565b600081815b8451811015611c96576000858281518110611c4c57611c4c612500565b60200260200101519050808311611c725760008381526020829052604090209250611c83565b600081815260208490526040902092505b5080611c8e816124a5565b915050611c2f565b509392505050565b6000546001600160a01b038516611cc757604051622e076360e81b815260040160405180910390fd5b83611ce55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d9157506001600160a01b0387163b15155b15611e1a575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611de260008884806001019550886119e9565b611dff576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611d97578260005414611e1557600080fd5b611e60565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611e1b575b50600055611867565b828054611e759061246a565b90600052602060002090601f016020900481019282611e975760008555611edd565b82601f10611eb057805160ff1916838001178555611edd565b82800160010185558215611edd579182015b82811115611edd578251825591602001919060010190611ec2565b50611ee9929150611eed565b5090565b5b80821115611ee95760008155600101611eee565b60006001600160401b03831115611f1b57611f1b612516565b611f2e601f8401601f19166020016123ac565b9050828152838383011115611f4257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f7057600080fd5b919050565b600060208284031215611f8757600080fd5b61130682611f59565b60008060408385031215611fa357600080fd5b611fac83611f59565b9150611fba60208401611f59565b90509250929050565b600080600060608486031215611fd857600080fd5b611fe184611f59565b9250611fef60208501611f59565b9150604084013590509250925092565b6000806000806080858703121561201557600080fd5b61201e85611f59565b935061202c60208601611f59565b92506040850135915060608501356001600160401b0381111561204e57600080fd5b8501601f8101871361205f57600080fd5b61206e87823560208401611f02565b91505092959194509250565b6000806040838503121561208d57600080fd5b61209683611f59565b9150602083013580151581146120ab57600080fd5b809150509250929050565b600080604083850312156120c957600080fd5b6120d283611f59565b946020939093013593505050565b600060208083850312156120f357600080fd5b82356001600160401b038082111561210a57600080fd5b818501915085601f83011261211e57600080fd5b81358181111561213057612130612516565b8060051b91506121418483016123ac565b8181528481019084860184860187018a101561215c57600080fd5b600095505b838610156121865761217281611f59565b835260019590950194918601918601612161565b5098975050505050505050565b6000806000604084860312156121a857600080fd5b83356001600160401b03808211156121bf57600080fd5b818601915086601f8301126121d357600080fd5b8135818111156121e257600080fd5b8760208260051b85010111156121f757600080fd5b6020928301989097509590910135949350505050565b60006020828403121561221f57600080fd5b5035919050565b60006020828403121561223857600080fd5b81356113068161252c565b60006020828403121561225557600080fd5b81516113068161252c565b60006020828403121561227257600080fd5b81356001600160401b0381111561228857600080fd5b8201601f8101841361229957600080fd5b611ad984823560208401611f02565b6000602082840312156122ba57600080fd5b813561ffff8116811461130657600080fd5b600081518084526122e481602086016020860161243e565b601f01601f19169290920160200192915050565b6000835161230a81846020880161243e565b83519083019061231e81836020880161243e565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061235a908301846122cc565b9695505050505050565b60208152600061130660208301846122cc565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156123d4576123d4612516565b604052919050565b600082198211156123ef576123ef6124d4565b500190565b600082612403576124036124ea565b500490565b6000816000190483118215151615612422576124226124d4565b500290565b600082821015612439576124396124d4565b500390565b60005b83811015612459578181015183820152602001612441565b838111156111fe5750506000910152565b600181811c9082168061247e57607f821691505b6020821081141561249f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124b9576124b96124d4565b5060010190565b6000826124cf576124cf6124ea565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a5257600080fdfea26469706673582212204e6fc19734092ebb26157337416a2c796aa1ea395938ed425b4d95f9f5b7ddbf64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e636c6f756466756e6374696f6e732e6e65742f6170702f71746565732f746f6b656e2f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063a0712d6811610144578063dc33e681116100b6578063e985e9c51161007a578063e985e9c5146106f1578063ea4446221461073a578063ed8161791461075a578063ee8912121461076f578063f2fde38b1461078f578063f4da1846146107af57600080fd5b8063dc33e6811461065c578063dfc33dd11461067c578063e5a88cdb1461069c578063e7b99ec7146106bb578063e97800cb146106d157600080fd5b8063bc951b9111610108578063bc951b91146105b0578063c4ae3168146105d1578063c87b56dd146105e6578063cbce4c9714610606578063cef1172914610626578063d5abeb011461064657600080fd5b8063a0712d681461052f578063a22cb46514610542578063a6d612f914610562578063b88d4fde14610575578063bbb897441461059557600080fd5b806344a0d68a116101dd5780636f8b44b0116101a15780636f8b44b01461048757806370a08231146104a7578063715018a6146104c7578063729ad39e146104dc5780638da5cb5b146104fc57806395d89b411461051a57600080fd5b806344a0d68a146103ed57806355f804b31461040d5780635c975abb1461042d5780636352211e1461044757806368570bd61461046757600080fd5b806318160ddd1161022f57806318160ddd1461034157806323b872dd1461035a5780632cefffa71461037a5780633ccfd60b146103b057806341827f13146103b857806342842e0e146103cd57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806313faede61461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612226565b6107cf565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610821565b6040516102989190612364565b3480156102cf57600080fd5b506102e36102de36600461220d565b6108b3565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b6103163660046120b6565b6108f7565b005b34801561032957600080fd5b50610333600e5481565b604051908152602001610298565b34801561034d57600080fd5b5060015460005403610333565b34801561036657600080fd5b5061031b610375366004611fc3565b610985565b34801561038657600080fd5b50600c5461039d90640100000000900461ffff1681565b60405161ffff9091168152602001610298565b61031b610990565b3480156103c457600080fd5b506102b6610a55565b3480156103d957600080fd5b5061031b6103e8366004611fc3565b610ae3565b3480156103f957600080fd5b5061031b61040836600461220d565b610afe565b34801561041957600080fd5b5061031b610428366004612260565b610b2d565b34801561043957600080fd5b5060105461028c9060ff1681565b34801561045357600080fd5b506102e361046236600461220d565b610b6e565b34801561047357600080fd5b5061031b610482366004611f75565b610b80565b34801561049357600080fd5b5061031b6104a236600461220d565b610bcc565b3480156104b357600080fd5b506103336104c2366004611f75565b610bfb565b3480156104d357600080fd5b5061031b610c49565b3480156104e857600080fd5b5061031b6104f73660046120e0565b610c7f565b34801561050857600080fd5b506008546001600160a01b03166102e3565b34801561052657600080fd5b506102b6610cf1565b61031b61053d36600461220d565b610d00565b34801561054e57600080fd5b5061031b61055d36600461207a565b610f69565b61031b610570366004612193565b610fff565b34801561058157600080fd5b5061031b610590366004611fff565b6111b3565b3480156105a157600080fd5b50600c5461039d9061ffff1681565b3480156105bc57600080fd5b50600c5461039d9062010000900461ffff1681565b3480156105dd57600080fd5b5061031b611204565b3480156105f257600080fd5b506102b661060136600461220d565b611242565b34801561061257600080fd5b5061031b6106213660046120b6565b61130d565b34801561063257600080fd5b5061031b6106413660046122a8565b611341565b34801561065257600080fd5b50610333600d5481565b34801561066857600080fd5b50610333610677366004611f75565b61138b565b34801561068857600080fd5b5061031b61069736600461220d565b6113b9565b3480156106a857600080fd5b5060105461028c90610100900460ff1681565b3480156106c757600080fd5b50610333600f5481565b3480156106dd57600080fd5b5061031b6106ec3660046122a8565b6113e8565b3480156106fd57600080fd5b5061028c61070c366004611f90565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561074657600080fd5b5061031b6107553660046122a8565b61142a565b34801561076657600080fd5b5061031b611478565b34801561077b57600080fd5b5061031b61078a36600461220d565b6114bf565b34801561079b57600080fd5b5061031b6107aa366004611f75565b6114ee565b3480156107bb57600080fd5b5061031b6107ca3660046120b6565b611586565b60006001600160e01b031982166380ac58cd60e01b148061080057506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108309061246a565b80601f016020809104026020016040519081016040528092919081815260200182805461085c9061246a565b80156108a95780601f1061087e576101008083540402835291602001916108a9565b820191906000526020600020905b81548152906001019060200180831161088c57829003601f168201915b5050505050905090565b60006108be826115f9565b6108db576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090282610b6e565b9050806001600160a01b0316836001600160a01b031614156109375760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109575750610955813361070c565b155b15610975576040516367d9dca160e11b815260040160405180910390fd5b610980838383611624565b505050565b610980838383611680565b6008546001600160a01b031633146109c35760405162461bcd60e51b81526004016109ba90612377565b60405180910390fd5b60006109d76008546001600160a01b031690565b6001600160a01b031673aca90fded6c3498228d7fc3aec82e1ac7575cd0d6001600160a01b03163160405160006040518083038185875af1925050503d8060008114610a3f576040519150601f19603f3d011682016040523d82523d6000602084013e610a44565b606091505b5050905080610a5257600080fd5b50565b600a8054610a629061246a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8e9061246a565b8015610adb5780601f10610ab057610100808354040283529160200191610adb565b820191906000526020600020905b815481529060010190602001808311610abe57829003601f168201915b505050505081565b610980838383604051806020016040528060008152506111b3565b6008546001600160a01b03163314610b285760405162461bcd60e51b81526004016109ba90612377565b600e55565b6008546001600160a01b03163314610b575760405162461bcd60e51b81526004016109ba90612377565b8051610b6a90600a906020840190611e69565b5050565b6000610b798261186e565b5192915050565b6008546001600160a01b03163314610baa5760405162461bcd60e51b81526004016109ba90612377565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610bf65760405162461bcd60e51b81526004016109ba90612377565b600d55565b60006001600160a01b038216610c24576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c735760405162461bcd60e51b81526004016109ba90612377565b610c7d6000611988565b565b6008546001600160a01b03163314610ca95760405162461bcd60e51b81526004016109ba90612377565b60005b8151811015610b6a576000828281518110610cc957610cc9612500565b60200260200101519050610cde8160016115ef565b5080610ce9816124a5565b915050610cac565b6060600380546108309061246a565b6008546001600160a01b03163314610f5f576000610d1d33610bfb565b60105490915060ff1615610d3057600080fd5b601054610100900460ff1615610d885760405162461bcd60e51b815260206004820152601860248201527f596f752063616e74206d696e74206f6e2050726573616c65000000000000000060448201526064016109ba565b60008211610de45760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b60648201526084016109ba565b600c5461ffff16821115610e4a5760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b60648201526084016109ba565b600d5482610e5b6001546000540390565b610e6591906123dc565b1115610ea85760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b60448201526064016109ba565b600c5462010000900461ffff16610ebf83836123dc565b1115610f0d5760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f7265000000000000000060448201526064016109ba565b81600e54610f1b9190612408565b341015610f5d5760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b60448201526064016109ba565b505b610a5233826115ef565b6001600160a01b038216331415610f935760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120611073908484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506119da92505050565b6110af5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016109ba565b600c543360009081526011602052604090205464010000000090910461ffff16906110db9083906123dc565b11156111295760405162461bcd60e51b815260206004820152601760248201527f45786365656473204d6178204d696e7420616d6f756e7400000000000000000060448201526064016109ba565b80600f546111379190612408565b3410156111795760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b60448201526064016109ba565b61118333826115ef565b3360009081526011602052604090205461119e9082906123dc565b33600090815260116020526040902055505050565b6111be848484611680565b6001600160a01b0383163b151580156111e057506111de848484846119e9565b155b156111fe576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461122e5760405162461bcd60e51b81526004016109ba90612377565b6010805460ff19811660ff90911615179055565b606061124d826115f9565b6112b15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109ba565b60006112bb611ae1565b905060008151116112db5760405180602001604052806000815250611306565b806112e584611af0565b6040516020016112f69291906122f8565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113375760405162461bcd60e51b81526004016109ba90612377565b610b6a82826115ef565b6008546001600160a01b0316331461136b5760405162461bcd60e51b81526004016109ba90612377565b600c805461ffff909216620100000263ffff000019909216919091179055565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b031661081b565b6008546001600160a01b031633146113e35760405162461bcd60e51b81526004016109ba90612377565b600f55565b6008546001600160a01b031633146114125760405162461bcd60e51b81526004016109ba90612377565b600c805461ffff191661ffff92909216919091179055565b6008546001600160a01b031633146114545760405162461bcd60e51b81526004016109ba90612377565b600c805461ffff9092166401000000000265ffff0000000019909216919091179055565b6008546001600160a01b031633146114a25760405162461bcd60e51b81526004016109ba90612377565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146114e95760405162461bcd60e51b81526004016109ba90612377565b600b55565b6008546001600160a01b031633146115185760405162461bcd60e51b81526004016109ba90612377565b6001600160a01b03811661157d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ba565b610a5281611988565b6009546001600160a01b031633146115ef5760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b60648201526084016109ba565b610b6a8282611bed565b600080548210801561081b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061168b8261186e565b9050836001600160a01b031681600001516001600160a01b0316146116c25760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806116e057506116e0853361070c565b806116fb5750336116f0846108b3565b6001600160a01b0316145b90508061171b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661174257604051633a954ecd60e21b815260040160405180910390fd5b61174e60008487611624565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661182257600054821461182257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561196f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061196d5780516001600160a01b031615611904579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611968579392505050565b611904565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061130682600b5485611c07565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a1e903390899088908890600401612327565b602060405180830381600087803b158015611a3857600080fd5b505af1925050508015611a68575060408051601f3d908101601f19168201909252611a6591810190612243565b60015b611ac3573d808015611a96576040519150601f19603f3d011682016040523d82523d6000602084013e611a9b565b606091505b508051611abb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546108309061246a565b606081611b145750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b3e5780611b28816124a5565b9150611b379050600a836123f4565b9150611b18565b6000816001600160401b03811115611b5857611b58612516565b6040519080825280601f01601f191660200182016040528015611b82576020820181803683370190505b5090505b8415611ad957611b97600183612427565b9150611ba4600a866124c0565b611baf9060306123dc565b60f81b818381518110611bc457611bc4612500565b60200101906001600160f81b031916908160001a905350611be6600a866123f4565b9450611b86565b610b6a828260405180602001604052806000815250611c1d565b600082611c148584611c2a565b14949350505050565b6109808383836001611c9e565b600081815b8451811015611c96576000858281518110611c4c57611c4c612500565b60200260200101519050808311611c725760008381526020829052604090209250611c83565b600081815260208490526040902092505b5080611c8e816124a5565b915050611c2f565b509392505050565b6000546001600160a01b038516611cc757604051622e076360e81b815260040160405180910390fd5b83611ce55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d9157506001600160a01b0387163b15155b15611e1a575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611de260008884806001019550886119e9565b611dff576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611d97578260005414611e1557600080fd5b611e60565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611e1b575b50600055611867565b828054611e759061246a565b90600052602060002090601f016020900481019282611e975760008555611edd565b82601f10611eb057805160ff1916838001178555611edd565b82800160010185558215611edd579182015b82811115611edd578251825591602001919060010190611ec2565b50611ee9929150611eed565b5090565b5b80821115611ee95760008155600101611eee565b60006001600160401b03831115611f1b57611f1b612516565b611f2e601f8401601f19166020016123ac565b9050828152838383011115611f4257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f7057600080fd5b919050565b600060208284031215611f8757600080fd5b61130682611f59565b60008060408385031215611fa357600080fd5b611fac83611f59565b9150611fba60208401611f59565b90509250929050565b600080600060608486031215611fd857600080fd5b611fe184611f59565b9250611fef60208501611f59565b9150604084013590509250925092565b6000806000806080858703121561201557600080fd5b61201e85611f59565b935061202c60208601611f59565b92506040850135915060608501356001600160401b0381111561204e57600080fd5b8501601f8101871361205f57600080fd5b61206e87823560208401611f02565b91505092959194509250565b6000806040838503121561208d57600080fd5b61209683611f59565b9150602083013580151581146120ab57600080fd5b809150509250929050565b600080604083850312156120c957600080fd5b6120d283611f59565b946020939093013593505050565b600060208083850312156120f357600080fd5b82356001600160401b038082111561210a57600080fd5b818501915085601f83011261211e57600080fd5b81358181111561213057612130612516565b8060051b91506121418483016123ac565b8181528481019084860184860187018a101561215c57600080fd5b600095505b838610156121865761217281611f59565b835260019590950194918601918601612161565b5098975050505050505050565b6000806000604084860312156121a857600080fd5b83356001600160401b03808211156121bf57600080fd5b818601915086601f8301126121d357600080fd5b8135818111156121e257600080fd5b8760208260051b85010111156121f757600080fd5b6020928301989097509590910135949350505050565b60006020828403121561221f57600080fd5b5035919050565b60006020828403121561223857600080fd5b81356113068161252c565b60006020828403121561225557600080fd5b81516113068161252c565b60006020828403121561227257600080fd5b81356001600160401b0381111561228857600080fd5b8201601f8101841361229957600080fd5b611ad984823560208401611f02565b6000602082840312156122ba57600080fd5b813561ffff8116811461130657600080fd5b600081518084526122e481602086016020860161243e565b601f01601f19169290920160200192915050565b6000835161230a81846020880161243e565b83519083019061231e81836020880161243e565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061235a908301846122cc565b9695505050505050565b60208152600061130660208301846122cc565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156123d4576123d4612516565b604052919050565b600082198211156123ef576123ef6124d4565b500190565b600082612403576124036124ea565b500490565b6000816000190483118215151615612422576124226124d4565b500290565b600082821015612439576124396124d4565b500390565b60005b83811015612459578181015183820152602001612441565b838111156111fe5750506000910152565b600181811c9082168061247e57607f821691505b6020821081141561249f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124b9576124b96124d4565b5060010190565b6000826124cf576124cf6124ea565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a5257600080fdfea26469706673582212204e6fc19734092ebb26157337416a2c796aa1ea395938ed425b4d95f9f5b7ddbf64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e636c6f756466756e6374696f6e732e6e65742f6170702f71746565732f746f6b656e2f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUrl (string): https://us-central1-mofos-69a62.cloudfunctions.net/app/qtees/token/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 68747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e
Arg [3] : 636c6f756466756e6374696f6e732e6e65742f6170702f71746565732f746f6b
Arg [4] : 656e2f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47228:6324:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29401:305;;;;;;;;;;-1:-1:-1;29401:305:0;;;;;:::i;:::-;;:::i;:::-;;;7989:14:1;;7982:22;7964:41;;7952:2;7937:18;29401:305:0;;;;;;;;32514:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34017:204::-;;;;;;;;;;-1:-1:-1;34017:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7287:32:1;;;7269:51;;7257:2;7242:18;34017:204:0;7123:203:1;33580:371:0;;;;;;;;;;-1:-1:-1;33580:371:0;;;;;:::i;:::-;;:::i;:::-;;47692:32;;;;;;;;;;;;;;;;;;;13075:25:1;;;13063:2;13048:18;47692:32:0;12929:177:1;28650:303:0;;;;;;;;;;-1:-1:-1;28904:12:0;;28694:7;28888:13;:28;28650:303;;34882:170;;;;;;;;;;-1:-1:-1;34882:170:0;;;;;:::i;:::-;;:::i;47564:43::-;;;;;;;;;;-1:-1:-1;47564:43:0;;;;;;;;;;;;;;12910:6:1;12898:19;;;12880:38;;12868:2;12853:18;47564:43:0;12736:188:1;53356:193:0;;;:::i;47337:24::-;;;;;;;;;;;;;:::i;35123:185::-;;;;;;;;;;-1:-1:-1;35123:185:0;;;;;:::i;:::-;;:::i;52207:86::-;;;;;;;;;;-1:-1:-1;52207:86:0;;;;;:::i;:::-;;:::i;52915:107::-;;;;;;;;;;-1:-1:-1;52915:107:0;;;;;:::i;:::-;;:::i;47796:25::-;;;;;;;;;;-1:-1:-1;47796:25:0;;;;;;;;32322:125;;;;;;;;;;-1:-1:-1;32322:125:0;;;;;:::i;:::-;;:::i;48143:119::-;;;;;;;;;;-1:-1:-1;48143:119:0;;;;;:::i;:::-;;:::i;52813:94::-;;;;;;;;;;-1:-1:-1;52813:94:0;;;;;:::i;:::-;;:::i;29770:206::-;;;;;;;;;;-1:-1:-1;29770:206:0;;;;;:::i;:::-;;:::i;7119:103::-;;;;;;;;;;;;;:::i;51351:234::-;;;;;;;;;;-1:-1:-1;51351:234:0;;;;;:::i;:::-;;:::i;6468:87::-;;;;;;;;;;-1:-1:-1;6541:6:0;;-1:-1:-1;;;;;6541:6:0;6468:87;;32683:104;;;;;;;;;;;;;:::i;50299:925::-;;;;;;:::i;:::-;;:::i;34293:287::-;;;;;;;;;;-1:-1:-1;34293:287:0;;;;;:::i;:::-;;:::i;49217:938::-;;;;;;:::i;:::-;;:::i;35379:369::-;;;;;;;;;;-1:-1:-1;35379:369:0;;;;;:::i;:::-;;:::i;47434:45::-;;;;;;;;;;-1:-1:-1;47434:45:0;;;;;;;;47486:40;;;;;;;;;;-1:-1:-1;47486:40:0;;;;;;;;;;;53030:75;;;;;;;;;;;;;:::i;51712:487::-;;;;;;;;;;-1:-1:-1;51712:487:0;;;;;:::i;:::-;;:::i;51232:111::-;;;;;;;;;;-1:-1:-1;51232:111:0;;;;;:::i;:::-;;:::i;52553:119::-;;;;;;;;;;-1:-1:-1;52553:119:0;;;;;:::i;:::-;;:::i;47638:31::-;;;;;;;;;;;;;;;;50163:113;;;;;;;;;;-1:-1:-1;50163:113:0;;;;;:::i;:::-;;:::i;52301:107::-;;;;;;;;;;-1:-1:-1;52301:107:0;;;;;:::i;:::-;;:::i;47828:36::-;;;;;;;;;;-1:-1:-1;47828:36:0;;;;;;;;;;;47731:41;;;;;;;;;;;;;;;;52416:129;;;;;;;;;;-1:-1:-1;52416:129:0;;;;;:::i;:::-;;:::i;34651:164::-;;;;;;;;;;-1:-1:-1;34651:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34772:25:0;;;34748:4;34772:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34651:164;52680:125;;;;;;;;;;-1:-1:-1;52680:125:0;;;;;:::i;:::-;;:::i;53113:99::-;;;;;;;;;;;;;:::i;48598:101::-;;;;;;;;;;-1:-1:-1;48598:101:0;;;;;:::i;:::-;;:::i;7377:201::-;;;;;;;;;;-1:-1:-1;7377:201:0;;;;;:::i;:::-;;:::i;48340:250::-;;;;;;;;;;-1:-1:-1;48340:250:0;;;;;:::i;:::-;;:::i;29401:305::-;29503:4;-1:-1:-1;;;;;;29540:40:0;;-1:-1:-1;;;29540:40:0;;:105;;-1:-1:-1;;;;;;;29597:48:0;;-1:-1:-1;;;29597:48:0;29540:105;:158;;;-1:-1:-1;;;;;;;;;;19361:40:0;;;29662:36;29520:178;29401:305;-1:-1:-1;;29401:305:0:o;32514:100::-;32568:13;32601:5;32594:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32514:100;:::o;34017:204::-;34085:7;34110:16;34118:7;34110;:16::i;:::-;34105:64;;34135:34;;-1:-1:-1;;;34135:34:0;;;;;;;;;;;34105:64;-1:-1:-1;34189:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34189:24:0;;34017:204::o;33580:371::-;33653:13;33669:24;33685:7;33669:15;:24::i;:::-;33653:40;;33714:5;-1:-1:-1;;;;;33708:11:0;:2;-1:-1:-1;;;;;33708:11:0;;33704:48;;;33728:24;;-1:-1:-1;;;33728:24:0;;;;;;;;;;;33704:48;5272:10;-1:-1:-1;;;;;33769:21:0;;;;;;:63;;-1:-1:-1;33795:37:0;33812:5;5272:10;34651:164;:::i;33795:37::-;33794:38;33769:63;33765:138;;;33856:35;;-1:-1:-1;;;33856:35:0;;;;;;;;;;;33765:138;33915:28;33924:2;33928:7;33937:5;33915:8;:28::i;:::-;33642:309;33580:371;;:::o;34882:170::-;35016:28;35026:4;35032:2;35036:7;35016:9;:28::i;53356:193::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;;;;;;;;;53413:7:::1;53434;6541:6:::0;;-1:-1:-1;;;;;6541:6:0;;6468:87;53434:7:::1;-1:-1:-1::0;;;;;53426:21:0::1;53463:42;-1:-1:-1::0;;;;;53455:59:0::1;;53426:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53412:107;;;53538:2;53530:11;;;::::0;::::1;;53401:148;53356:193::o:0;47337:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35123:185::-;35261:39;35278:4;35284:2;35288:7;35261:39;;;;;;;;;;;;:16;:39::i;52207:86::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;52270:4:::1;:15:::0;52207:86::o;52915:107::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;52990:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52915:107:::0;:::o;32322:125::-;32386:7;32413:21;32426:7;32413:12;:21::i;:::-;:26;;32322:125;-1:-1:-1;;32322:125:0:o;48143:119::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;48226:16:::1;:28:::0;;-1:-1:-1;;;;;;48226:28:0::1;-1:-1:-1::0;;;;;48226:28:0;;;::::1;::::0;;;::::1;::::0;;48143:119::o;52813:94::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;52880:9:::1;:19:::0;52813:94::o;29770:206::-;29834:7;-1:-1:-1;;;;;29858:19:0;;29854:60;;29886:28;;-1:-1:-1;;;29886:28:0;;;;;;;;;;;29854:60;-1:-1:-1;;;;;;29940:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29940:27:0;;29770: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;51351:234::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;51437:9:::1;51432:146;51456:17;:24;51452:1;:28;51432:146;;;51502:10;51515:17;51533:1;51515:20;;;;;;;;:::i;:::-;;;;;;;51502:33;;51550:16;51560:2;51564:1;51550:9;:16::i;:::-;-1:-1:-1::0;51482:3:0;::::1;::::0;::::1;:::i;:::-;;;;51432:146;;32683:104:::0;32739:13;32772:7;32765:14;;;;;:::i;50299:925::-;6541:6;;-1:-1:-1;;;;;6541:6:0;50364:10;:21;50360:810;;50402:23;50428:21;50438:10;50428:9;:21::i;:::-;50475:6;;50402:47;;-1:-1:-1;50475:6:0;;50474:7;50466:16;;;;;;50506;;;;;;;50505:17;50497:54;;;;-1:-1:-1;;;50497:54:0;;9196:2:1;50497:54:0;;;9178:21:1;9235:2;9215:18;;;9208:30;9274:26;9254:18;;;9247:54;9318:18;;50497:54:0;8994:348:1;50497:54:0;50588:1;50574:11;:15;50566:64;;;;-1:-1:-1;;;50566:64:0;;11486:2:1;50566:64:0;;;11468:21:1;11525:2;11505:18;;;11498:30;11564:34;11544:18;;;11537:62;-1:-1:-1;;;11615:18:1;;;11608:34;11659:19;;50566:64:0;11284:400:1;50566:64:0;50686:27;;;;50671:42;;;50645:143;;;;-1:-1:-1;;;50645:143:0;;10301:2:1;50645:143:0;;;10283:21:1;10340:2;10320:18;;;10313:30;10379:34;10359:18;;;10352:62;-1:-1:-1;;;10430:18:1;;;10423:37;10477:19;;50645:143:0;10099:403:1;50645:143:0;50860:9;;50845:11;50829:13;28904:12;;28694:7;28888:13;:28;;28650:303;50829:13;:27;;;;:::i;:::-;:40;;50803:120;;;;-1:-1:-1;;;50803:120:0;;8442:2:1;50803:120:0;;;8424:21:1;8481:2;8461:18;;;8454:30;-1:-1:-1;;;8500:18:1;;;8493:48;8558:18;;50803:120:0;8240:342:1;50803:120:0;50999:22;;;;;;;50965:29;50983:11;50965:15;:29;:::i;:::-;50964:57;;50938:143;;;;-1:-1:-1;;;50938:143:0;;12585:2:1;50938:143:0;;;12567:21:1;12624:2;12604:18;;;12597:30;12663:26;12643:18;;;12636:54;12707:18;;50938:143:0;12383:348:1;50938:143:0;51126:11;51119:4;;:18;;;;:::i;:::-;51106:9;:31;;51098:60;;;;-1:-1:-1;;;51098:60:0;;9956:2:1;51098:60:0;;;9938:21:1;9995:2;9975:18;;;9968:30;-1:-1:-1;;;10014:18:1;;;10007:46;10070:18;;51098:60:0;9754:340:1;51098:60:0;50387:783;50360:810;51182:34;51192:10;51204:11;51182:9;:34::i;34293:287::-;-1:-1:-1;;;;;34392:24:0;;5272:10;34392:24;34388:54;;;34425:17;;-1:-1:-1;;;34425:17:0;;;;;;;;;;;34388:54;5272:10;34455:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34455:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34455:53:0;;;;;;;;;;34524:48;;7964:41:1;;;34455:42:0;;5272:10;34524:48;;7937:18:1;34524:48:0;;;;;;;34293:287;;:::o;49217:938::-;49153:25;;;49449:10;6353:2:1;6349:15;-1:-1:-1;;6345:53:1;49153:25:0;;;;6333:66:1;;;;49153:25:0;;;;;;;;;6415:12:1;;;;49153:25:0;;;49143:36;;;;;49435:33;;49462:5;;49435:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49435:7:0;;-1:-1:-1;;;49435:33:0:i;:::-;49405:120;;;;-1:-1:-1;;;49405:120:0;;11891:2:1;49405:120:0;;;11873:21:1;11930:2;11910:18;;;11903:30;-1:-1:-1;;;11949:18:1;;;11942:43;12002:18;;49405:120:0;11689:337:1;49405:120:0;49647:25;;49592:10;49575:28;;;;:16;:28;;;;;;49647:25;;;;;;;49575:42;;49606:11;;49575:42;:::i;:::-;49574:98;;49544:195;;;;-1:-1:-1;;;49544:195:0;;12233:2:1;49544:195:0;;;12215:21:1;12272:2;12252:18;;;12245:30;12311:25;12291:18;;;12284:53;12354:18;;49544:195:0;12031:347:1;49544:195:0;49820:11;49804:13;;:27;;;;:::i;:::-;49790:9;:42;;49760:132;;;;-1:-1:-1;;;49760:132:0;;9956:2:1;49760:132:0;;;9938:21:1;9995:2;9975:18;;;9968:30;-1:-1:-1;;;10014:18:1;;;10007:46;10070:18;;49760:132:0;9754:340:1;49760:132:0;49979:34;49989:10;50001:11;49979:9;:34::i;:::-;50101:10;50084:28;;;;:16;:28;;;;;;:63;;50136:11;;50084:63;:::i;:::-;50049:10;50032:28;;;;:16;:28;;;;;:115;-1:-1:-1;;;49217:938:0:o;35379:369::-;35546:28;35556:4;35562:2;35566:7;35546:9;:28::i;:::-;-1:-1:-1;;;;;35589:13:0;;9464:19;:23;;35589:76;;;;;35609:56;35640:4;35646:2;35650:7;35659:5;35609:30;:56::i;:::-;35608:57;35589:76;35585:156;;;35689:40;;-1:-1:-1;;;35689:40:0;;;;;;;;;;;35585:156;35379:369;;;;:::o;53030:75::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;53091:6:::1;::::0;;-1:-1:-1;;53081:16:0;::::1;53091:6;::::0;;::::1;53090:7;53081:16;::::0;;53030:75::o;51712:487::-;51830:13;51883:16;51891:7;51883;:16::i;:::-;51861:113;;;;-1:-1:-1;;;51861:113:0;;11070:2:1;51861:113:0;;;11052:21:1;11109:2;11089:18;;;11082:30;11148:34;11128:18;;;11121:62;-1:-1:-1;;;11199:18:1;;;11192:45;11254:19;;51861:113:0;10868:411:1;51861:113:0;51985:28;52016:10;:8;:10::i;:::-;51985:41;;52088:1;52063:14;52057:28;:32;:134;;;;;;;;;;;;;;;;;52133:14;52149:18;:7;:16;:18::i;:::-;52116:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52057:134;52037:154;51712:487;-1:-1:-1;;;51712:487:0:o;51232:111::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;51308:27:::1;51318:3;51323:11;51308:9;:27::i;52553:119::-:0;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;52632:22:::1;:32:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;52632:32:0;;::::1;::::0;;;::::1;::::0;;52553:119::o;50163:113::-;-1:-1:-1;;;;;30154:19:0;;50221:7;30154:19;;;:12;:19;;;;;:32;-1:-1:-1;;;30154:32:0;;-1:-1:-1;;;;;30154:32:0;50248:20;30058:137;52301:107;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;52376:13:::1;:24:::0;52301:107::o;52416:129::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;52500:27:::1;:37:::0;;-1:-1:-1;;52500:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;52416:129::o;52680:125::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;52762:25:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;52762:35:0;;::::1;::::0;;;::::1;::::0;;52680:125::o;53113:99::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;53188:16:::1;::::0;;-1:-1:-1;;53168:36:0;::::1;53188:16;::::0;;;::::1;;;53187:17;53168:36:::0;;::::1;;::::0;;53113:99::o;48598:101::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;48670:13:::1;:21:::0;48598: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;;8789:2:1;7458:73:0::1;::::0;::::1;8771:21:1::0;8828:2;8808:18;;;8801:30;8867:34;8847:18;;;8840:62;-1:-1:-1;;;8918:18:1;;;8911:36;8964:19;;7458:73:0::1;8587:402:1::0;7458:73:0::1;7542:28;7561:8;7542:18;:28::i;48340:250::-:0;48457:16;;-1:-1:-1;;;;;48457:16:0;48443:10;:30;48421:118;;;;-1:-1:-1;;;48421:118:0;;9549:2:1;48421:118:0;;;9531:21:1;9588:2;9568:18;;;9561:30;9627:34;9607:18;;;9600:62;-1:-1:-1;;;9678:18:1;;;9671:36;9724:19;;48421:118:0;9347:402:1;48421:118:0;48550:32;48560:8;48570:11;48550:9;:32::i;36003:187::-;36060:4;36124:13;;36114:7;:23;36084:98;;;;-1:-1:-1;;36155:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36155:27:0;;;;36154:28;;36003:187::o;44173:196::-;44288:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44288:29:0;-1:-1:-1;;;;;44288:29:0;;;;;;;;;44333:28;;44288:24;;44333:28;;;;;;;44173:196;;;:::o;39116:2130::-;39231:35;39269:21;39282:7;39269:12;:21::i;:::-;39231:59;;39329:4;-1:-1:-1;;;;;39307:26:0;:13;:18;;;-1:-1:-1;;;;;39307:26:0;;39303:67;;39342:28;;-1:-1:-1;;;39342:28:0;;;;;;;;;;;39303:67;39383:22;5272:10;-1:-1:-1;;;;;39409:20:0;;;;:73;;-1:-1:-1;39446:36:0;39463:4;5272:10;34651:164;:::i;39446:36::-;39409:126;;;-1:-1:-1;5272:10:0;39499:20;39511:7;39499:11;:20::i;:::-;-1:-1:-1;;;;;39499:36:0;;39409:126;39383:153;;39554:17;39549:66;;39580:35;;-1:-1:-1;;;39580:35:0;;;;;;;;;;;39549:66;-1:-1:-1;;;;;39630:16:0;;39626:52;;39655:23;;-1:-1:-1;;;39655:23:0;;;;;;;;;;;39626:52;39799:35;39816:1;39820:7;39829:4;39799:8;:35::i;:::-;-1:-1:-1;;;;;40130:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40130:31:0;;;-1:-1:-1;;;;;40130:31:0;;;-1:-1:-1;;40130:31:0;;;;;;;40176:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40176:29:0;;;;;;;;;;;40256:20;;;:11;:20;;;;;;40291:18;;-1:-1:-1;;;;;;40324:49:0;;;;-1:-1:-1;;;40357:15:0;40324:49;;;;;;;;;;40647:11;;40707:24;;;;;40750:13;;40256:20;;40707:24;;40750:13;40746:384;;40960:13;;40945:11;:28;40941:174;;40998:20;;41067:28;;;;-1:-1:-1;;;;;41041:54:0;-1:-1:-1;;;41041:54:0;-1:-1:-1;;;;;;41041:54:0;;;-1:-1:-1;;;;;40998:20:0;;41041:54;;;;40941:174;40105:1036;;;41177:7;41173:2;-1:-1:-1;;;;;41158:27:0;41167:4;-1:-1:-1;;;;;41158:27:0;;;;;;;;;;;41196:42;39220:2026;;39116:2130;;;:::o;31151:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31262:7:0;31345:13;;31338:4;:20;31307:886;;;31379:31;31413:17;;;:11;:17;;;;;;;;;31379:51;;;;;;;;;-1:-1:-1;;;;;31379:51:0;;;;-1:-1:-1;;;31379:51:0;;-1:-1:-1;;;;;31379:51:0;;;;;;;;-1:-1:-1;;;31379:51:0;;;;;;;;;;;;;;31449:729;;31499:14;;-1:-1:-1;;;;;31499:28:0;;31495:101;;31563:9;31151:1109;-1:-1:-1;;;31151:1109:0:o;31495:101::-;-1:-1:-1;;;31938:6:0;31983:17;;;;:11;:17;;;;;;;;;31971:29;;;;;;;;;-1:-1:-1;;;;;31971:29:0;;;;;-1:-1:-1;;;31971:29:0;;-1:-1:-1;;;;;31971:29:0;;;;;;;;-1:-1:-1;;;31971:29:0;;;;;;;;;;;;;32031:28;32027:109;;32099:9;31151:1109;-1:-1:-1;;;31151:1109:0:o;32027:109::-;31898:261;;;31360:833;31307:886;32221:31;;-1:-1:-1;;;32221: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;48766:::-;48874:4;48898:51;48917:5;48924:13;;48939:9;48898:18;:51::i;44861:667::-;45045:72;;-1:-1:-1;;;45045:72:0;;45024:4;;-1:-1:-1;;;;;45045:36:0;;;;;:72;;5272:10;;45096:4;;45102:7;;45111:5;;45045:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45045:72:0;;;;;;;;-1:-1:-1;;45045:72:0;;;;;;;;;;;;:::i;:::-;;;45041:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45279:13:0;;45275:235;;45325:40;;-1:-1:-1;;;45325:40:0;;;;;;;;;;;45275:235;45468:6;45462:13;45453:6;45449:2;45445:15;45438:38;45041:480;-1:-1:-1;;;;;;45164:55:0;-1:-1:-1;;;45164:55:0;;-1:-1:-1;45041:480:0;44861:667;;;;;;:::o;51593:111::-;51653:13;51686:10;51679: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;;36198:104;36267:27;36277:2;36281:8;36267: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;36665:163::-;36788:32;36794:2;36798:8;36808:5;36815:4;36788: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;;;-1:-1:-1;2130:12:0;1475:675;-1:-1:-1;;;1475:675:0:o;37087:1775::-;37226:20;37249:13;-1:-1:-1;;;;;37277:16:0;;37273:48;;37302:19;;-1:-1:-1;;;37302:19:0;;;;;;;;;;;37273:48;37336:13;37332:44;;37358:18;;-1:-1:-1;;;37358:18:0;;;;;;;;;;;37332:44;-1:-1:-1;;;;;37727:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37786:49:0;;-1:-1:-1;;;;;37727:44:0;;;;;;;37786:49;;;-1:-1:-1;;;;;37727:44:0;;;;;;37786:49;;;;;;;;;;;;;;;;37852:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37902:66:0;;;;-1:-1:-1;;;37952:15:0;37902:66;;;;;;;;;;37852:25;38049:23;;;38093:4;:23;;;;-1:-1:-1;;;;;;38101:13:0;;9464:19;:23;;38101:15;38089:641;;;38137:314;38168:38;;38193:12;;-1:-1:-1;;;;;38168:38:0;;;38185:1;;38168:38;;38185:1;;38168:38;38234:69;38273:1;38277:2;38281:14;;;;;;38297:5;38234:30;:69::i;:::-;38229:174;;38339:40;;-1:-1:-1;;;38339:40:0;;;;;;;;;;;38229:174;38446:3;38430:12;:19;;38137:314;;38532:12;38515:13;;:29;38511:43;;38546:8;;;38511:43;38089:641;;;38595:120;38626:40;;38651:14;;;;;-1:-1:-1;;;;;38626:40:0;;;38643:1;;38626:40;;38643:1;;38626:40;38710:3;38694:12;:19;;38595:120;;38089:641;-1:-1:-1;38744:13:0;:28;38794:60;35379:369;-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;8016:219::-;8165:2;8154:9;8147:21;8128:4;8185:44;8225:2;8214:9;8210:18;8202:6;8185:44;:::i;10507:356::-;10709:2;10691:21;;;10728:18;;;10721:30;10787:34;10782:2;10767:18;;10760:62;10854:2;10839:18;;10507:356::o;13111:275::-;13182:2;13176:9;13247:2;13228:13;;-1:-1:-1;;13224:27:1;13212:40;;-1:-1:-1;;;;;13267:34:1;;13303:22;;;13264:62;13261:88;;;13329:18;;:::i;:::-;13365:2;13358:22;13111:275;;-1:-1:-1;13111:275:1:o;13391:128::-;13431:3;13462:1;13458:6;13455:1;13452:13;13449:39;;;13468:18;;:::i;:::-;-1:-1:-1;13504:9:1;;13391:128::o;13524:120::-;13564:1;13590;13580:35;;13595:18;;:::i;:::-;-1:-1:-1;13629:9:1;;13524:120::o;13649:168::-;13689:7;13755:1;13751;13747:6;13743:14;13740:1;13737:21;13732:1;13725:9;13718:17;13714:45;13711:71;;;13762:18;;:::i;:::-;-1:-1:-1;13802:9:1;;13649:168::o;13822:125::-;13862:4;13890:1;13887;13884:8;13881:34;;;13895:18;;:::i;:::-;-1:-1:-1;13932:9:1;;13822:125::o;13952:258::-;14024:1;14034:113;14048:6;14045:1;14042:13;14034:113;;;14124:11;;;14118:18;14105:11;;;14098:39;14070:2;14063:10;14034:113;;;14165:6;14162:1;14159:13;14156:48;;;-1:-1:-1;;14200:1:1;14182:16;;14175:27;13952:258::o;14215:380::-;14294:1;14290:12;;;;14337;;;14358:61;;14412:4;14404:6;14400:17;14390:27;;14358:61;14465:2;14457:6;14454:14;14434:18;14431:38;14428:161;;;14511:10;14506:3;14502:20;14499:1;14492:31;14546:4;14543:1;14536:15;14574:4;14571:1;14564:15;14428:161;;14215:380;;;:::o;14600:135::-;14639:3;-1:-1:-1;;14660:17:1;;14657:43;;;14680:18;;:::i;:::-;-1:-1:-1;14727:1:1;14716:13;;14600:135::o;14740:112::-;14772:1;14798;14788:35;;14803:18;;:::i;:::-;-1:-1:-1;14837:9:1;;14740:112::o;14857:127::-;14918:10;14913:3;14909:20;14906:1;14899:31;14949:4;14946:1;14939:15;14973:4;14970:1;14963:15;14989:127;15050:10;15045:3;15041:20;15038:1;15031:31;15081:4;15078:1;15071:15;15105:4;15102:1;15095:15;15121:127;15182:10;15177:3;15173:20;15170:1;15163:31;15213:4;15210:1;15203:15;15237:4;15234:1;15227:15;15253:127;15314:10;15309:3;15305:20;15302:1;15295:31;15345:4;15342:1;15335:15;15369:4;15366:1;15359:15;15385:131;-1:-1:-1;;;;;;15459:32:1;;15449:43;;15439:71;;15506:1;15503;15496:12

Swarm Source

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