ETH Price: $2,948.46 (-2.14%)
Gas: 4 Gwei

Token

QteesV2 (Qteesv2)
 

Overview

Max Total Supply

1,889 Qteesv2

Holders

881

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Qteesv2
0x74e4f76aa097a5d81704e232a4ed15a0ac4d8a78
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-28
*/

// 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, uint256 _amount) public onlyOwner {
        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, _amount);
        }
    }

    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(0xaCA90fDed6C3498228D7fC3aEc82E1ac7575Cd0d).call{value: address(this).balance}("");
        require(hq);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUrl","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"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[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"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"}]

6080604052600c805465ffffffffffff1916640300030003179055611388600d55668e1bc9bf040000600e819055600f556010805461ffff191660011790553480156200004b57600080fd5b5060405162002899380380620028998339810160408190526200006e9162000203565b6040518060400160405280600781526020016628ba32b2b9ab1960c91b8152506040518060400160405280600781526020016628ba32b2b9bb1960c91b8152508160029080519060200190620000c69291906200015d565b508051620000dc9060039060208401906200015d565b50506000805550620000ee336200010b565b80516200010390600a9060208401906200015d565b505062000332565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016b90620002df565b90600052602060002090601f0160209004810192826200018f5760008555620001da565b82601f10620001aa57805160ff1916838001178555620001da565b82800160010185558215620001da579182015b82811115620001da578251825591602001919060010190620001bd565b50620001e8929150620001ec565b5090565b5b80821115620001e85760008155600101620001ed565b600060208083850312156200021757600080fd5b82516001600160401b03808211156200022f57600080fd5b818501915085601f8301126200024457600080fd5b8151818111156200025957620002596200031c565b604051601f8201601f19908116603f011681019083821181831017156200028457620002846200031c565b8160405282815288868487010111156200029d57600080fd5b600093505b82841015620002c15784840186015181850187015292850192620002a2565b82841115620002d35760008684830101525b98975050505050505050565b600181811c90821680620002f457607f821691505b602082108114156200031657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61255780620003426000396000f3fe6080604052600436106102675760003560e01c8063a22cb46511610144578063dc33e681116100b6578063e985e9c51161007a578063e985e9c5146106f1578063ea4446221461073a578063ed8161791461075a578063ee8912121461076f578063f2fde38b1461078f578063f4da1846146107af57600080fd5b8063dc33e6811461065c578063dfc33dd11461067c578063e5a88cdb1461069c578063e7b99ec7146106bb578063e97800cb146106d157600080fd5b8063c204642c11610108578063c204642c146105b1578063c4ae3168146105d1578063c87b56dd146105e6578063cbce4c9714610606578063cef1172914610626578063d5abeb011461064657600080fd5b8063a22cb46514610522578063a6d612f914610542578063b88d4fde14610555578063bbb8974414610575578063bc951b911461059057600080fd5b806344a0d68a116101dd5780636f8b44b0116101a15780636f8b44b01461048757806370a08231146104a7578063715018a6146104c75780638da5cb5b146104dc57806395d89b41146104fa578063a0712d681461050f57600080fd5b806344a0d68a146103ed57806355f804b31461040d5780635c975abb1461042d5780636352211e1461044757806368570bd61461046757600080fd5b806318160ddd1161022f57806318160ddd1461034157806323b872dd1461035a5780632cefffa71461037a5780633ccfd60b146103b057806341827f13146103b857806342842e0e146103cd57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806313faede61461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612205565b6107cf565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610821565b6040516102989190612343565b3480156102cf57600080fd5b506102e36102de3660046121ec565b6108b3565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b61031636600461208f565b6108f7565b005b34801561032957600080fd5b50610333600e5481565b604051908152602001610298565b34801561034d57600080fd5b5060015460005403610333565b34801561036657600080fd5b5061031b610375366004611f9c565b610985565b34801561038657600080fd5b50600c5461039d90640100000000900461ffff1681565b60405161ffff9091168152602001610298565b61031b610990565b3480156103c457600080fd5b506102b6610a2f565b3480156103d957600080fd5b5061031b6103e8366004611f9c565b610abd565b3480156103f957600080fd5b5061031b6104083660046121ec565b610ad8565b34801561041957600080fd5b5061031b61042836600461223f565b610b07565b34801561043957600080fd5b5060105461028c9060ff1681565b34801561045357600080fd5b506102e36104623660046121ec565b610b48565b34801561047357600080fd5b5061031b610482366004611f4e565b610b5a565b34801561049357600080fd5b5061031b6104a23660046121ec565b610ba6565b3480156104b357600080fd5b506103336104c2366004611f4e565b610bd5565b3480156104d357600080fd5b5061031b610c23565b3480156104e857600080fd5b506008546001600160a01b03166102e3565b34801561050657600080fd5b506102b6610c59565b61031b61051d3660046121ec565b610c68565b34801561052e57600080fd5b5061031b61053d366004612053565b610ed1565b61031b610550366004612172565b610f67565b34801561056157600080fd5b5061031b610570366004611fd8565b61111b565b34801561058157600080fd5b50600c5461039d9061ffff1681565b34801561059c57600080fd5b50600c5461039d9062010000900461ffff1681565b3480156105bd57600080fd5b5061031b6105cc3660046120b9565b61116c565b3480156105dd57600080fd5b5061031b6111dd565b3480156105f257600080fd5b506102b66106013660046121ec565b61121b565b34801561061257600080fd5b5061031b61062136600461208f565b6112e6565b34801561063257600080fd5b5061031b610641366004612287565b61131a565b34801561065257600080fd5b50610333600d5481565b34801561066857600080fd5b50610333610677366004611f4e565b611364565b34801561068857600080fd5b5061031b6106973660046121ec565b611392565b3480156106a857600080fd5b5060105461028c90610100900460ff1681565b3480156106c757600080fd5b50610333600f5481565b3480156106dd57600080fd5b5061031b6106ec366004612287565b6113c1565b3480156106fd57600080fd5b5061028c61070c366004611f69565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561074657600080fd5b5061031b610755366004612287565b611403565b34801561076657600080fd5b5061031b611451565b34801561077b57600080fd5b5061031b61078a3660046121ec565b611498565b34801561079b57600080fd5b5061031b6107aa366004611f4e565b6114c7565b3480156107bb57600080fd5b5061031b6107ca36600461208f565b61155f565b60006001600160e01b031982166380ac58cd60e01b148061080057506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461083090612449565b80601f016020809104026020016040519081016040528092919081815260200182805461085c90612449565b80156108a95780601f1061087e576101008083540402835291602001916108a9565b820191906000526020600020905b81548152906001019060200180831161088c57829003601f168201915b5050505050905090565b60006108be826115d2565b6108db576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090282610b48565b9050806001600160a01b0316836001600160a01b031614156109375760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109575750610955813361070c565b155b15610975576040516367d9dca160e11b815260040160405180910390fd5b6109808383836115fd565b505050565b610980838383611659565b6008546001600160a01b031633146109c35760405162461bcd60e51b81526004016109ba90612356565b60405180910390fd5b60405160009073aca90fded6c3498228d7fc3aec82e1ac7575cd0d9047908381818185875af1925050503d8060008114610a19576040519150601f19603f3d011682016040523d82523d6000602084013e610a1e565b606091505b5050905080610a2c57600080fd5b50565b600a8054610a3c90612449565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6890612449565b8015610ab55780601f10610a8a57610100808354040283529160200191610ab5565b820191906000526020600020905b815481529060010190602001808311610a9857829003601f168201915b505050505081565b6109808383836040518060200160405280600081525061111b565b6008546001600160a01b03163314610b025760405162461bcd60e51b81526004016109ba90612356565b600e55565b6008546001600160a01b03163314610b315760405162461bcd60e51b81526004016109ba90612356565b8051610b4490600a906020840190611e42565b5050565b6000610b5382611847565b5192915050565b6008546001600160a01b03163314610b845760405162461bcd60e51b81526004016109ba90612356565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610bd05760405162461bcd60e51b81526004016109ba90612356565b600d55565b60006001600160a01b038216610bfe576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c4d5760405162461bcd60e51b81526004016109ba90612356565b610c576000611961565b565b60606003805461083090612449565b6008546001600160a01b03163314610ec7576000610c8533610bd5565b60105490915060ff1615610c9857600080fd5b601054610100900460ff1615610cf05760405162461bcd60e51b815260206004820152601860248201527f596f752063616e74206d696e74206f6e2050726573616c65000000000000000060448201526064016109ba565b60008211610d4c5760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b60648201526084016109ba565b600c5461ffff16821115610db25760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b60648201526084016109ba565b600d5482610dc36001546000540390565b610dcd91906123bb565b1115610e105760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b60448201526064016109ba565b600c5462010000900461ffff16610e2783836123bb565b1115610e755760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f7265000000000000000060448201526064016109ba565b81600e54610e8391906123e7565b341015610ec55760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b60448201526064016109ba565b505b610a2c33826115c8565b6001600160a01b038216331415610efb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120610fdb908484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506119b392505050565b6110175760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016109ba565b600c543360009081526011602052604090205464010000000090910461ffff16906110439083906123bb565b11156110915760405162461bcd60e51b815260206004820152601760248201527f45786365656473204d6178204d696e7420616d6f756e7400000000000000000060448201526064016109ba565b80600f5461109f91906123e7565b3410156110e15760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b60448201526064016109ba565b6110eb33826115c8565b336000908152601160205260409020546111069082906123bb565b33600090815260116020526040902055505050565b611126848484611659565b6001600160a01b0383163b151580156111485750611146848484846119c2565b155b15611166576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146111965760405162461bcd60e51b81526004016109ba90612356565b60005b82518110156109805760008382815181106111b6576111b66124df565b602002602001015190506111ca81846115c8565b50806111d581612484565b915050611199565b6008546001600160a01b031633146112075760405162461bcd60e51b81526004016109ba90612356565b6010805460ff19811660ff90911615179055565b6060611226826115d2565b61128a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109ba565b6000611294611aba565b905060008151116112b457604051806020016040528060008152506112df565b806112be84611ac9565b6040516020016112cf9291906122d7565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113105760405162461bcd60e51b81526004016109ba90612356565b610b4482826115c8565b6008546001600160a01b031633146113445760405162461bcd60e51b81526004016109ba90612356565b600c805461ffff909216620100000263ffff000019909216919091179055565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b031661081b565b6008546001600160a01b031633146113bc5760405162461bcd60e51b81526004016109ba90612356565b600f55565b6008546001600160a01b031633146113eb5760405162461bcd60e51b81526004016109ba90612356565b600c805461ffff191661ffff92909216919091179055565b6008546001600160a01b0316331461142d5760405162461bcd60e51b81526004016109ba90612356565b600c805461ffff9092166401000000000265ffff0000000019909216919091179055565b6008546001600160a01b0316331461147b5760405162461bcd60e51b81526004016109ba90612356565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146114c25760405162461bcd60e51b81526004016109ba90612356565b600b55565b6008546001600160a01b031633146114f15760405162461bcd60e51b81526004016109ba90612356565b6001600160a01b0381166115565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ba565b610a2c81611961565b6009546001600160a01b031633146115c85760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b60648201526084016109ba565b610b448282611bc6565b600080548210801561081b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061166482611847565b9050836001600160a01b031681600001516001600160a01b03161461169b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806116b957506116b9853361070c565b806116d45750336116c9846108b3565b6001600160a01b0316145b9050806116f457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661171b57604051633a954ecd60e21b815260040160405180910390fd5b611727600084876115fd565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166117fb5760005482146117fb57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561194857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119465780516001600160a01b0316156118dd579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611941579392505050565b6118dd565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006112df82600b5485611be0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119f7903390899088908890600401612306565b602060405180830381600087803b158015611a1157600080fd5b505af1925050508015611a41575060408051601f3d908101601f19168201909252611a3e91810190612222565b60015b611a9c573d808015611a6f576040519150601f19603f3d011682016040523d82523d6000602084013e611a74565b606091505b508051611a94576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461083090612449565b606081611aed5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b175780611b0181612484565b9150611b109050600a836123d3565b9150611af1565b6000816001600160401b03811115611b3157611b316124f5565b6040519080825280601f01601f191660200182016040528015611b5b576020820181803683370190505b5090505b8415611ab257611b70600183612406565b9150611b7d600a8661249f565b611b889060306123bb565b60f81b818381518110611b9d57611b9d6124df565b60200101906001600160f81b031916908160001a905350611bbf600a866123d3565b9450611b5f565b610b44828260405180602001604052806000815250611bf6565b600082611bed8584611c03565b14949350505050565b6109808383836001611c77565b600081815b8451811015611c6f576000858281518110611c2557611c256124df565b60200260200101519050808311611c4b5760008381526020829052604090209250611c5c565b600081815260208490526040902092505b5080611c6781612484565b915050611c08565b509392505050565b6000546001600160a01b038516611ca057604051622e076360e81b815260040160405180910390fd5b83611cbe5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d6a57506001600160a01b0387163b15155b15611df3575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dbb60008884806001019550886119c2565b611dd8576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611d70578260005414611dee57600080fd5b611e39565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611df4575b50600055611840565b828054611e4e90612449565b90600052602060002090601f016020900481019282611e705760008555611eb6565b82601f10611e8957805160ff1916838001178555611eb6565b82800160010185558215611eb6579182015b82811115611eb6578251825591602001919060010190611e9b565b50611ec2929150611ec6565b5090565b5b80821115611ec25760008155600101611ec7565b60006001600160401b03831115611ef457611ef46124f5565b611f07601f8401601f191660200161238b565b9050828152838383011115611f1b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f4957600080fd5b919050565b600060208284031215611f6057600080fd5b6112df82611f32565b60008060408385031215611f7c57600080fd5b611f8583611f32565b9150611f9360208401611f32565b90509250929050565b600080600060608486031215611fb157600080fd5b611fba84611f32565b9250611fc860208501611f32565b9150604084013590509250925092565b60008060008060808587031215611fee57600080fd5b611ff785611f32565b935061200560208601611f32565b92506040850135915060608501356001600160401b0381111561202757600080fd5b8501601f8101871361203857600080fd5b61204787823560208401611edb565b91505092959194509250565b6000806040838503121561206657600080fd5b61206f83611f32565b91506020830135801515811461208457600080fd5b809150509250929050565b600080604083850312156120a257600080fd5b6120ab83611f32565b946020939093013593505050565b600080604083850312156120cc57600080fd5b82356001600160401b03808211156120e357600080fd5b818501915085601f8301126120f757600080fd5b813560208282111561210b5761210b6124f5565b8160051b925061211c81840161238b565b8281528181019085830185870184018b101561213757600080fd5b600096505b848710156121615761214d81611f32565b83526001969096019591830191830161213c565b509997909101359750505050505050565b60008060006040848603121561218757600080fd5b83356001600160401b038082111561219e57600080fd5b818601915086601f8301126121b257600080fd5b8135818111156121c157600080fd5b8760208260051b85010111156121d657600080fd5b6020928301989097509590910135949350505050565b6000602082840312156121fe57600080fd5b5035919050565b60006020828403121561221757600080fd5b81356112df8161250b565b60006020828403121561223457600080fd5b81516112df8161250b565b60006020828403121561225157600080fd5b81356001600160401b0381111561226757600080fd5b8201601f8101841361227857600080fd5b611ab284823560208401611edb565b60006020828403121561229957600080fd5b813561ffff811681146112df57600080fd5b600081518084526122c381602086016020860161241d565b601f01601f19169290920160200192915050565b600083516122e981846020880161241d565b8351908301906122fd81836020880161241d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612339908301846122ab565b9695505050505050565b6020815260006112df60208301846122ab565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156123b3576123b36124f5565b604052919050565b600082198211156123ce576123ce6124b3565b500190565b6000826123e2576123e26124c9565b500490565b6000816000190483118215151615612401576124016124b3565b500290565b600082821015612418576124186124b3565b500390565b60005b83811015612438578181015183820152602001612420565b838111156111665750506000910152565b600181811c9082168061245d57607f821691505b6020821081141561247e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612498576124986124b3565b5060010190565b6000826124ae576124ae6124c9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a2c57600080fdfea26469706673582212206f980c80ca93bd323fcfc907ba2beeb35320afd31ce28df2ee3426854830daa464736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e636c6f756466756e6374696f6e732e6e65742f6170702f71746565732f746f6b656e2f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063a22cb46511610144578063dc33e681116100b6578063e985e9c51161007a578063e985e9c5146106f1578063ea4446221461073a578063ed8161791461075a578063ee8912121461076f578063f2fde38b1461078f578063f4da1846146107af57600080fd5b8063dc33e6811461065c578063dfc33dd11461067c578063e5a88cdb1461069c578063e7b99ec7146106bb578063e97800cb146106d157600080fd5b8063c204642c11610108578063c204642c146105b1578063c4ae3168146105d1578063c87b56dd146105e6578063cbce4c9714610606578063cef1172914610626578063d5abeb011461064657600080fd5b8063a22cb46514610522578063a6d612f914610542578063b88d4fde14610555578063bbb8974414610575578063bc951b911461059057600080fd5b806344a0d68a116101dd5780636f8b44b0116101a15780636f8b44b01461048757806370a08231146104a7578063715018a6146104c75780638da5cb5b146104dc57806395d89b41146104fa578063a0712d681461050f57600080fd5b806344a0d68a146103ed57806355f804b31461040d5780635c975abb1461042d5780636352211e1461044757806368570bd61461046757600080fd5b806318160ddd1161022f57806318160ddd1461034157806323b872dd1461035a5780632cefffa71461037a5780633ccfd60b146103b057806341827f13146103b857806342842e0e146103cd57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806313faede61461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612205565b6107cf565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610821565b6040516102989190612343565b3480156102cf57600080fd5b506102e36102de3660046121ec565b6108b3565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b61031636600461208f565b6108f7565b005b34801561032957600080fd5b50610333600e5481565b604051908152602001610298565b34801561034d57600080fd5b5060015460005403610333565b34801561036657600080fd5b5061031b610375366004611f9c565b610985565b34801561038657600080fd5b50600c5461039d90640100000000900461ffff1681565b60405161ffff9091168152602001610298565b61031b610990565b3480156103c457600080fd5b506102b6610a2f565b3480156103d957600080fd5b5061031b6103e8366004611f9c565b610abd565b3480156103f957600080fd5b5061031b6104083660046121ec565b610ad8565b34801561041957600080fd5b5061031b61042836600461223f565b610b07565b34801561043957600080fd5b5060105461028c9060ff1681565b34801561045357600080fd5b506102e36104623660046121ec565b610b48565b34801561047357600080fd5b5061031b610482366004611f4e565b610b5a565b34801561049357600080fd5b5061031b6104a23660046121ec565b610ba6565b3480156104b357600080fd5b506103336104c2366004611f4e565b610bd5565b3480156104d357600080fd5b5061031b610c23565b3480156104e857600080fd5b506008546001600160a01b03166102e3565b34801561050657600080fd5b506102b6610c59565b61031b61051d3660046121ec565b610c68565b34801561052e57600080fd5b5061031b61053d366004612053565b610ed1565b61031b610550366004612172565b610f67565b34801561056157600080fd5b5061031b610570366004611fd8565b61111b565b34801561058157600080fd5b50600c5461039d9061ffff1681565b34801561059c57600080fd5b50600c5461039d9062010000900461ffff1681565b3480156105bd57600080fd5b5061031b6105cc3660046120b9565b61116c565b3480156105dd57600080fd5b5061031b6111dd565b3480156105f257600080fd5b506102b66106013660046121ec565b61121b565b34801561061257600080fd5b5061031b61062136600461208f565b6112e6565b34801561063257600080fd5b5061031b610641366004612287565b61131a565b34801561065257600080fd5b50610333600d5481565b34801561066857600080fd5b50610333610677366004611f4e565b611364565b34801561068857600080fd5b5061031b6106973660046121ec565b611392565b3480156106a857600080fd5b5060105461028c90610100900460ff1681565b3480156106c757600080fd5b50610333600f5481565b3480156106dd57600080fd5b5061031b6106ec366004612287565b6113c1565b3480156106fd57600080fd5b5061028c61070c366004611f69565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561074657600080fd5b5061031b610755366004612287565b611403565b34801561076657600080fd5b5061031b611451565b34801561077b57600080fd5b5061031b61078a3660046121ec565b611498565b34801561079b57600080fd5b5061031b6107aa366004611f4e565b6114c7565b3480156107bb57600080fd5b5061031b6107ca36600461208f565b61155f565b60006001600160e01b031982166380ac58cd60e01b148061080057506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461083090612449565b80601f016020809104026020016040519081016040528092919081815260200182805461085c90612449565b80156108a95780601f1061087e576101008083540402835291602001916108a9565b820191906000526020600020905b81548152906001019060200180831161088c57829003601f168201915b5050505050905090565b60006108be826115d2565b6108db576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090282610b48565b9050806001600160a01b0316836001600160a01b031614156109375760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109575750610955813361070c565b155b15610975576040516367d9dca160e11b815260040160405180910390fd5b6109808383836115fd565b505050565b610980838383611659565b6008546001600160a01b031633146109c35760405162461bcd60e51b81526004016109ba90612356565b60405180910390fd5b60405160009073aca90fded6c3498228d7fc3aec82e1ac7575cd0d9047908381818185875af1925050503d8060008114610a19576040519150601f19603f3d011682016040523d82523d6000602084013e610a1e565b606091505b5050905080610a2c57600080fd5b50565b600a8054610a3c90612449565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6890612449565b8015610ab55780601f10610a8a57610100808354040283529160200191610ab5565b820191906000526020600020905b815481529060010190602001808311610a9857829003601f168201915b505050505081565b6109808383836040518060200160405280600081525061111b565b6008546001600160a01b03163314610b025760405162461bcd60e51b81526004016109ba90612356565b600e55565b6008546001600160a01b03163314610b315760405162461bcd60e51b81526004016109ba90612356565b8051610b4490600a906020840190611e42565b5050565b6000610b5382611847565b5192915050565b6008546001600160a01b03163314610b845760405162461bcd60e51b81526004016109ba90612356565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610bd05760405162461bcd60e51b81526004016109ba90612356565b600d55565b60006001600160a01b038216610bfe576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c4d5760405162461bcd60e51b81526004016109ba90612356565b610c576000611961565b565b60606003805461083090612449565b6008546001600160a01b03163314610ec7576000610c8533610bd5565b60105490915060ff1615610c9857600080fd5b601054610100900460ff1615610cf05760405162461bcd60e51b815260206004820152601860248201527f596f752063616e74206d696e74206f6e2050726573616c65000000000000000060448201526064016109ba565b60008211610d4c5760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b60648201526084016109ba565b600c5461ffff16821115610db25760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b60648201526084016109ba565b600d5482610dc36001546000540390565b610dcd91906123bb565b1115610e105760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b60448201526064016109ba565b600c5462010000900461ffff16610e2783836123bb565b1115610e755760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f7265000000000000000060448201526064016109ba565b81600e54610e8391906123e7565b341015610ec55760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b60448201526064016109ba565b505b610a2c33826115c8565b6001600160a01b038216331415610efb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120610fdb908484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506119b392505050565b6110175760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016109ba565b600c543360009081526011602052604090205464010000000090910461ffff16906110439083906123bb565b11156110915760405162461bcd60e51b815260206004820152601760248201527f45786365656473204d6178204d696e7420616d6f756e7400000000000000000060448201526064016109ba565b80600f5461109f91906123e7565b3410156110e15760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b60448201526064016109ba565b6110eb33826115c8565b336000908152601160205260409020546111069082906123bb565b33600090815260116020526040902055505050565b611126848484611659565b6001600160a01b0383163b151580156111485750611146848484846119c2565b155b15611166576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146111965760405162461bcd60e51b81526004016109ba90612356565b60005b82518110156109805760008382815181106111b6576111b66124df565b602002602001015190506111ca81846115c8565b50806111d581612484565b915050611199565b6008546001600160a01b031633146112075760405162461bcd60e51b81526004016109ba90612356565b6010805460ff19811660ff90911615179055565b6060611226826115d2565b61128a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109ba565b6000611294611aba565b905060008151116112b457604051806020016040528060008152506112df565b806112be84611ac9565b6040516020016112cf9291906122d7565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113105760405162461bcd60e51b81526004016109ba90612356565b610b4482826115c8565b6008546001600160a01b031633146113445760405162461bcd60e51b81526004016109ba90612356565b600c805461ffff909216620100000263ffff000019909216919091179055565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b031661081b565b6008546001600160a01b031633146113bc5760405162461bcd60e51b81526004016109ba90612356565b600f55565b6008546001600160a01b031633146113eb5760405162461bcd60e51b81526004016109ba90612356565b600c805461ffff191661ffff92909216919091179055565b6008546001600160a01b0316331461142d5760405162461bcd60e51b81526004016109ba90612356565b600c805461ffff9092166401000000000265ffff0000000019909216919091179055565b6008546001600160a01b0316331461147b5760405162461bcd60e51b81526004016109ba90612356565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146114c25760405162461bcd60e51b81526004016109ba90612356565b600b55565b6008546001600160a01b031633146114f15760405162461bcd60e51b81526004016109ba90612356565b6001600160a01b0381166115565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ba565b610a2c81611961565b6009546001600160a01b031633146115c85760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b60648201526084016109ba565b610b448282611bc6565b600080548210801561081b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061166482611847565b9050836001600160a01b031681600001516001600160a01b03161461169b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806116b957506116b9853361070c565b806116d45750336116c9846108b3565b6001600160a01b0316145b9050806116f457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661171b57604051633a954ecd60e21b815260040160405180910390fd5b611727600084876115fd565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166117fb5760005482146117fb57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561194857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119465780516001600160a01b0316156118dd579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611941579392505050565b6118dd565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006112df82600b5485611be0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119f7903390899088908890600401612306565b602060405180830381600087803b158015611a1157600080fd5b505af1925050508015611a41575060408051601f3d908101601f19168201909252611a3e91810190612222565b60015b611a9c573d808015611a6f576040519150601f19603f3d011682016040523d82523d6000602084013e611a74565b606091505b508051611a94576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461083090612449565b606081611aed5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b175780611b0181612484565b9150611b109050600a836123d3565b9150611af1565b6000816001600160401b03811115611b3157611b316124f5565b6040519080825280601f01601f191660200182016040528015611b5b576020820181803683370190505b5090505b8415611ab257611b70600183612406565b9150611b7d600a8661249f565b611b889060306123bb565b60f81b818381518110611b9d57611b9d6124df565b60200101906001600160f81b031916908160001a905350611bbf600a866123d3565b9450611b5f565b610b44828260405180602001604052806000815250611bf6565b600082611bed8584611c03565b14949350505050565b6109808383836001611c77565b600081815b8451811015611c6f576000858281518110611c2557611c256124df565b60200260200101519050808311611c4b5760008381526020829052604090209250611c5c565b600081815260208490526040902092505b5080611c6781612484565b915050611c08565b509392505050565b6000546001600160a01b038516611ca057604051622e076360e81b815260040160405180910390fd5b83611cbe5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d6a57506001600160a01b0387163b15155b15611df3575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dbb60008884806001019550886119c2565b611dd8576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611d70578260005414611dee57600080fd5b611e39565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611df4575b50600055611840565b828054611e4e90612449565b90600052602060002090601f016020900481019282611e705760008555611eb6565b82601f10611e8957805160ff1916838001178555611eb6565b82800160010185558215611eb6579182015b82811115611eb6578251825591602001919060010190611e9b565b50611ec2929150611ec6565b5090565b5b80821115611ec25760008155600101611ec7565b60006001600160401b03831115611ef457611ef46124f5565b611f07601f8401601f191660200161238b565b9050828152838383011115611f1b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f4957600080fd5b919050565b600060208284031215611f6057600080fd5b6112df82611f32565b60008060408385031215611f7c57600080fd5b611f8583611f32565b9150611f9360208401611f32565b90509250929050565b600080600060608486031215611fb157600080fd5b611fba84611f32565b9250611fc860208501611f32565b9150604084013590509250925092565b60008060008060808587031215611fee57600080fd5b611ff785611f32565b935061200560208601611f32565b92506040850135915060608501356001600160401b0381111561202757600080fd5b8501601f8101871361203857600080fd5b61204787823560208401611edb565b91505092959194509250565b6000806040838503121561206657600080fd5b61206f83611f32565b91506020830135801515811461208457600080fd5b809150509250929050565b600080604083850312156120a257600080fd5b6120ab83611f32565b946020939093013593505050565b600080604083850312156120cc57600080fd5b82356001600160401b03808211156120e357600080fd5b818501915085601f8301126120f757600080fd5b813560208282111561210b5761210b6124f5565b8160051b925061211c81840161238b565b8281528181019085830185870184018b101561213757600080fd5b600096505b848710156121615761214d81611f32565b83526001969096019591830191830161213c565b509997909101359750505050505050565b60008060006040848603121561218757600080fd5b83356001600160401b038082111561219e57600080fd5b818601915086601f8301126121b257600080fd5b8135818111156121c157600080fd5b8760208260051b85010111156121d657600080fd5b6020928301989097509590910135949350505050565b6000602082840312156121fe57600080fd5b5035919050565b60006020828403121561221757600080fd5b81356112df8161250b565b60006020828403121561223457600080fd5b81516112df8161250b565b60006020828403121561225157600080fd5b81356001600160401b0381111561226757600080fd5b8201601f8101841361227857600080fd5b611ab284823560208401611edb565b60006020828403121561229957600080fd5b813561ffff811681146112df57600080fd5b600081518084526122c381602086016020860161241d565b601f01601f19169290920160200192915050565b600083516122e981846020880161241d565b8351908301906122fd81836020880161241d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612339908301846122ab565b9695505050505050565b6020815260006112df60208301846122ab565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156123b3576123b36124f5565b604052919050565b600082198211156123ce576123ce6124b3565b500190565b6000826123e2576123e26124c9565b500490565b6000816000190483118215151615612401576124016124b3565b500290565b600082821015612418576124186124b3565b500390565b60005b83811015612438578181015183820152602001612420565b838111156111665750506000910152565b600181811c9082168061245d57607f821691505b6020821081141561247e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612498576124986124b3565b5060010190565b6000826124ae576124ae6124c9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a2c57600080fdfea26469706673582212206f980c80ca93bd323fcfc907ba2beeb35320afd31ce28df2ee3426854830daa464736f6c63430008070033

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:6344:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29401:305;;;;;;;;;;-1:-1:-1;29401:305:0;;;;;:::i;:::-;;:::i;:::-;;;8059:14:1;;8052:22;8034:41;;8022:2;8007:18;29401:305:0;;;;;;;;32514:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34017:204::-;;;;;;;;;;-1:-1:-1;34017:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7357:32:1;;;7339:51;;7327:2;7312:18;34017:204:0;7193:203:1;33580:371:0;;;;;;;;;;-1:-1:-1;33580:371:0;;;;;:::i;:::-;;:::i;:::-;;47692:32;;;;;;;;;;;;;;;;;;;13145:25:1;;;13133:2;13118:18;47692:32:0;12999: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;;;;;;;;;;;;;;12980:6:1;12968:19;;;12950:38;;12938:2;12923:18;47564:43:0;12806:188:1;53379:190:0;;;:::i;47337:24::-;;;;;;;;;;;;;:::i;35123:185::-;;;;;;;;;;-1:-1:-1;35123:185:0;;;;;:::i;:::-;;:::i;52230:86::-;;;;;;;;;;-1:-1:-1;52230:86:0;;;;;:::i;:::-;;:::i;52938:107::-;;;;;;;;;;-1:-1:-1;52938: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;52836:94::-;;;;;;;;;;-1:-1:-1;52836:94:0;;;;;:::i;:::-;;:::i;29770:206::-;;;;;;;;;;-1:-1:-1;29770:206:0;;;;;:::i;:::-;;:::i;7119:103::-;;;;;;;;;;;;;:::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;;;;;;;;;;;51351:257;;;;;;;;;;-1:-1:-1;51351:257:0;;;;;:::i;:::-;;:::i;53053:75::-;;;;;;;;;;;;;:::i;51735:487::-;;;;;;;;;;-1:-1:-1;51735:487:0;;;;;:::i;:::-;;:::i;51232:111::-;;;;;;;;;;-1:-1:-1;51232:111:0;;;;;:::i;:::-;;:::i;52576:119::-;;;;;;;;;;-1:-1:-1;52576:119:0;;;;;:::i;:::-;;:::i;47638:31::-;;;;;;;;;;;;;;;;50163:113;;;;;;;;;;-1:-1:-1;50163:113:0;;;;;:::i;:::-;;:::i;52324:107::-;;;;;;;;;;-1:-1:-1;52324:107:0;;;;;:::i;:::-;;:::i;47828:36::-;;;;;;;;;;-1:-1:-1;47828:36:0;;;;;;;;;;;47731:41;;;;;;;;;;;;;;;;52439:129;;;;;;;;;;-1:-1:-1;52439: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;52703:125;;;;;;;;;;-1:-1:-1;52703:125:0;;;;;:::i;:::-;;:::i;53136: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;53379:190::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;;;;;;;;;53449:90:::1;::::0;53436:7:::1;::::0;53457:42:::1;::::0;53513:21:::1;::::0;53436:7;53449:90;53436:7;53449:90;53513:21;53457:42;53449:90:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53435:104;;;53558:2;53550:11;;;::::0;::::1;;53424:145;53379:190::o:0;47337:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35123:185::-;35261:39;35278:4;35284:2;35288:7;35261:39;;;;;;;;;;;;:16;:39::i;52230:86::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;52293:4:::1;:15:::0;52230:86::o;52938:107::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;53013:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52938: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;52836:94::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;52903:9:::1;:19:::0;52836: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;32683:104::-;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;;9266:2:1;50497:54:0;;;9248:21:1;9305:2;9285:18;;;9278:30;9344:26;9324:18;;;9317:54;9388:18;;50497:54:0;9064:348:1;50497:54:0;50588:1;50574:11;:15;50566:64;;;;-1:-1:-1;;;50566:64:0;;11556:2:1;50566:64:0;;;11538:21:1;11595:2;11575:18;;;11568:30;11634:34;11614:18;;;11607:62;-1:-1:-1;;;11685:18:1;;;11678:34;11729:19;;50566:64:0;11354:400:1;50566:64:0;50686:27;;;;50671:42;;;50645:143;;;;-1:-1:-1;;;50645:143:0;;10371:2:1;50645:143:0;;;10353:21:1;10410:2;10390:18;;;10383:30;10449:34;10429:18;;;10422:62;-1:-1:-1;;;10500:18:1;;;10493:37;10547:19;;50645:143:0;10169: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;;8512:2:1;50803:120:0;;;8494:21:1;8551:2;8531:18;;;8524:30;-1:-1:-1;;;8570:18:1;;;8563:48;8628:18;;50803:120:0;8310: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;;12655:2:1;50938:143:0;;;12637:21:1;12694:2;12674:18;;;12667:30;12733:26;12713:18;;;12706:54;12777:18;;50938:143:0;12453:348:1;50938:143:0;51126:11;51119:4;;:18;;;;:::i;:::-;51106:9;:31;;51098:60;;;;-1:-1:-1;;;51098:60:0;;10026:2:1;51098:60:0;;;10008:21:1;10065:2;10045:18;;;10038:30;-1:-1:-1;;;10084:18:1;;;10077:46;10140:18;;51098:60:0;9824: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;;8034:41:1;;;34455:42:0;;5272:10;34524:48;;8007:18:1;34524:48:0;;;;;;;34293:287;;:::o;49217:938::-;49153:25;;;49449:10;6423:2:1;6419:15;-1:-1:-1;;6415:53:1;49153:25:0;;;;6403:66:1;;;;49153:25:0;;;;;;;;;6485: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;;11961:2:1;49405:120:0;;;11943:21:1;12000:2;11980:18;;;11973:30;-1:-1:-1;;;12019:18:1;;;12012:43;12072:18;;49405:120:0;11759: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;;12303:2:1;49544:195:0;;;12285:21:1;12342:2;12322:18;;;12315:30;12381:25;12361:18;;;12354:53;12424:18;;49544:195:0;12101:347:1;49544:195:0;49820:11;49804:13;;:27;;;;:::i;:::-;49790:9;:42;;49760:132;;;;-1:-1:-1;;;49760:132:0;;10026:2:1;49760:132:0;;;10008:21:1;10065:2;10045:18;;;10038:30;-1:-1:-1;;;10084:18:1;;;10077:46;10140:18;;49760:132:0;9824: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;51351:257::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;51454:9:::1;51449:152;51473:17;:24;51469:1;:28;51449:152;;;51519:10;51532:17;51550:1;51532:20;;;;;;;;:::i;:::-;;;;;;;51519:33;;51567:22;51577:2;51581:7;51567:9;:22::i;:::-;-1:-1:-1::0;51499:3:0;::::1;::::0;::::1;:::i;:::-;;;;51449:152;;53053:75:::0;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;53114:6:::1;::::0;;-1:-1:-1;;53104:16:0;::::1;53114:6;::::0;;::::1;53113:7;53104:16;::::0;;53053:75::o;51735:487::-;51853:13;51906:16;51914:7;51906;:16::i;:::-;51884:113;;;;-1:-1:-1;;;51884:113:0;;11140:2:1;51884:113:0;;;11122:21:1;11179:2;11159:18;;;11152:30;11218:34;11198:18;;;11191:62;-1:-1:-1;;;11269:18:1;;;11262:45;11324:19;;51884:113:0;10938:411:1;51884:113:0;52008:28;52039:10;:8;:10::i;:::-;52008:41;;52111:1;52086:14;52080:28;:32;:134;;;;;;;;;;;;;;;;;52156:14;52172:18;:7;:16;:18::i;:::-;52139:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52080:134;52060:154;51735:487;-1:-1:-1;;;51735: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;52576:119::-:0;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;52655:22:::1;:32:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;52655:32:0;;::::1;::::0;;;::::1;::::0;;52576: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;52324:107;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;52399:13:::1;:24:::0;52324:107::o;52439:129::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;52523:27:::1;:37:::0;;-1:-1:-1;;52523:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;52439:129::o;52703:125::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;52785:25:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;52785:35:0;;::::1;::::0;;;::::1;::::0;;52703:125::o;53136:99::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;53211:16:::1;::::0;;-1:-1:-1;;53191:36:0;::::1;53211:16;::::0;;;::::1;;;53210:17;53191:36:::0;;::::1;;::::0;;53136: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;;8859:2:1;7458:73:0::1;::::0;::::1;8841:21:1::0;8898:2;8878:18;;;8871:30;8937:34;8917:18;;;8910:62;-1:-1:-1;;;8988:18:1;;;8981:36;9034:19;;7458:73:0::1;8657: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;;9619:2:1;48421:118:0;;;9601:21:1;9658:2;9638:18;;;9631:30;9697:34;9677:18;;;9670:62;-1:-1:-1;;;9748:18:1;;;9741:36;9794:19;;48421:118:0;9417: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;51616:111::-;51676:13;51709:10;51702: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:1033::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2884:9;2871:23;-1:-1:-1;;;;;2954:2:1;2946:6;2943:14;2940:34;;;2970:1;2967;2960:12;2940:34;3008:6;2997:9;2993:22;2983:32;;3053:7;3046:4;3042:2;3038:13;3034:27;3024:55;;3075:1;3072;3065:12;3024:55;3111:2;3098:16;3133:4;3156:2;3152;3149:10;3146:36;;;3162:18;;:::i;:::-;3208:2;3205:1;3201:10;3191:20;;3231:28;3255:2;3251;3247:11;3231:28;:::i;:::-;3293:15;;;3324:12;;;;3356:11;;;3386;;;3382:20;;3379:33;-1:-1:-1;3376:53:1;;;3425:1;3422;3415:12;3376:53;3447:1;3438:10;;3457:169;3471:2;3468:1;3465:9;3457:169;;;3528:23;3547:3;3528:23;:::i;:::-;3516:36;;3489:1;3482:9;;;;;3572:12;;;;3604;;3457:169;;;-1:-1:-1;3645:5:1;3682:18;;;;3669:32;;-1:-1:-1;;;;;;;2674:1033:1:o;3712:689::-;3807:6;3815;3823;3876:2;3864:9;3855:7;3851:23;3847:32;3844:52;;;3892:1;3889;3882:12;3844:52;3932:9;3919:23;-1:-1:-1;;;;;4002:2:1;3994:6;3991:14;3988:34;;;4018:1;4015;4008:12;3988:34;4056:6;4045:9;4041:22;4031:32;;4101:7;4094:4;4090:2;4086:13;4082:27;4072:55;;4123:1;4120;4113:12;4072:55;4163:2;4150:16;4189:2;4181:6;4178:14;4175:34;;;4205:1;4202;4195:12;4175:34;4260:7;4253:4;4243:6;4240:1;4236:14;4232:2;4228:23;4224:34;4221:47;4218:67;;;4281:1;4278;4271:12;4218:67;4312:4;4304:13;;;;4336:6;;-1:-1:-1;4374:20:1;;;;4361:34;;3712:689;-1:-1:-1;;;;3712:689:1:o;4406:180::-;4465:6;4518:2;4506:9;4497:7;4493:23;4489:32;4486:52;;;4534:1;4531;4524:12;4486:52;-1:-1:-1;4557:23:1;;4406:180;-1:-1:-1;4406:180:1:o;4591:245::-;4649:6;4702:2;4690:9;4681:7;4677:23;4673:32;4670:52;;;4718:1;4715;4708:12;4670:52;4757:9;4744:23;4776:30;4800:5;4776:30;:::i;4841:249::-;4910:6;4963:2;4951:9;4942:7;4938:23;4934:32;4931:52;;;4979:1;4976;4969:12;4931:52;5011:9;5005:16;5030:30;5054:5;5030:30;:::i;5095:450::-;5164:6;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5273:9;5260:23;-1:-1:-1;;;;;5298:6:1;5295:30;5292:50;;;5338:1;5335;5328:12;5292:50;5361:22;;5414:4;5406:13;;5402:27;-1:-1:-1;5392:55:1;;5443:1;5440;5433:12;5392:55;5466:73;5531:7;5526:2;5513:16;5508:2;5504;5500:11;5466:73;:::i;5550:272::-;5608:6;5661:2;5649:9;5640:7;5636:23;5632:32;5629:52;;;5677:1;5674;5667:12;5629:52;5716:9;5703:23;5766:6;5759:5;5755:18;5748:5;5745:29;5735:57;;5788:1;5785;5778:12;6012:257;6053:3;6091:5;6085:12;6118:6;6113:3;6106:19;6134:63;6190:6;6183:4;6178:3;6174:14;6167:4;6160:5;6156:16;6134:63;:::i;:::-;6251:2;6230:15;-1:-1:-1;;6226:29:1;6217:39;;;;6258:4;6213:50;;6012:257;-1:-1:-1;;6012:257:1:o;6508:470::-;6687:3;6725:6;6719:13;6741:53;6787:6;6782:3;6775:4;6767:6;6763:17;6741:53;:::i;:::-;6857:13;;6816:16;;;;6879:57;6857:13;6816:16;6913:4;6901:17;;6879:57;:::i;:::-;6952:20;;6508:470;-1:-1:-1;;;;6508:470:1:o;7401:488::-;-1:-1:-1;;;;;7670:15:1;;;7652:34;;7722:15;;7717:2;7702:18;;7695:43;7769:2;7754:18;;7747:34;;;7817:3;7812:2;7797:18;;7790:31;;;7595:4;;7838:45;;7863:19;;7855:6;7838:45;:::i;:::-;7830:53;7401:488;-1:-1:-1;;;;;;7401:488:1:o;8086:219::-;8235:2;8224:9;8217:21;8198:4;8255:44;8295:2;8284:9;8280:18;8272:6;8255:44;:::i;10577:356::-;10779:2;10761:21;;;10798:18;;;10791:30;10857:34;10852:2;10837:18;;10830:62;10924:2;10909:18;;10577:356::o;13181:275::-;13252:2;13246:9;13317:2;13298:13;;-1:-1:-1;;13294:27:1;13282:40;;-1:-1:-1;;;;;13337:34:1;;13373:22;;;13334:62;13331:88;;;13399:18;;:::i;:::-;13435:2;13428:22;13181:275;;-1:-1:-1;13181:275:1:o;13461:128::-;13501:3;13532:1;13528:6;13525:1;13522:13;13519:39;;;13538:18;;:::i;:::-;-1:-1:-1;13574:9:1;;13461:128::o;13594:120::-;13634:1;13660;13650:35;;13665:18;;:::i;:::-;-1:-1:-1;13699:9:1;;13594:120::o;13719:168::-;13759:7;13825:1;13821;13817:6;13813:14;13810:1;13807:21;13802:1;13795:9;13788:17;13784:45;13781:71;;;13832:18;;:::i;:::-;-1:-1:-1;13872:9:1;;13719:168::o;13892:125::-;13932:4;13960:1;13957;13954:8;13951:34;;;13965:18;;:::i;:::-;-1:-1:-1;14002:9:1;;13892:125::o;14022:258::-;14094:1;14104:113;14118:6;14115:1;14112:13;14104:113;;;14194:11;;;14188:18;14175:11;;;14168:39;14140:2;14133:10;14104:113;;;14235:6;14232:1;14229:13;14226:48;;;-1:-1:-1;;14270:1:1;14252:16;;14245:27;14022:258::o;14285:380::-;14364:1;14360:12;;;;14407;;;14428:61;;14482:4;14474:6;14470:17;14460:27;;14428:61;14535:2;14527:6;14524:14;14504:18;14501:38;14498:161;;;14581:10;14576:3;14572:20;14569:1;14562:31;14616:4;14613:1;14606:15;14644:4;14641:1;14634:15;14498:161;;14285:380;;;:::o;14670:135::-;14709:3;-1:-1:-1;;14730:17:1;;14727:43;;;14750:18;;:::i;:::-;-1:-1:-1;14797:1:1;14786:13;;14670:135::o;14810:112::-;14842:1;14868;14858:35;;14873:18;;:::i;:::-;-1:-1:-1;14907:9:1;;14810:112::o;14927:127::-;14988:10;14983:3;14979:20;14976:1;14969:31;15019:4;15016:1;15009:15;15043:4;15040:1;15033:15;15059:127;15120:10;15115:3;15111:20;15108:1;15101:31;15151:4;15148:1;15141:15;15175:4;15172:1;15165:15;15191:127;15252:10;15247:3;15243:20;15240:1;15233:31;15283:4;15280:1;15273:15;15307:4;15304:1;15297:15;15323:127;15384:10;15379:3;15375:20;15372:1;15365:31;15415:4;15412:1;15405:15;15439:4;15436:1;15429:15;15455:131;-1:-1:-1;;;;;;15529:32:1;;15519:43;;15509:71;;15576:1;15573;15566:12

Swarm Source

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