ETH Price: $3,286.81 (+1.21%)
Gas: 1 Gwei

Token

xMartianNFT (xM)
 

Overview

Max Total Supply

904 xM

Holders

125

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mruncled.eth
Balance
1 xM
0xc6d8997be1aa277bdfd2c24c669aa4497f837a08
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:
xMartianNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

// 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/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/Address.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? 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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/newMartians.sol



















pragma solidity >=0.7.0 <0.9.0;

contract xMartianNFT is ERC721Enumerable, Ownable, ERC721URIStorage {
    using Strings for uint256;

    string baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 1 ether;

    uint16 public maxSupply = 10000;
    uint16 public curSupply = 10000;
    uint16 public wLSupply = 1000;

    bool public first12 = false;
    mapping(address => uint8 ) public giveAwayAllowance;
    mapping(address => uint8 ) public whiteListAllowance;
    mapping(uint256 => string) private _tokenURIs;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
    }
    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    // public
    function mint(uint8 mintQty) public payable {
        require(wLSupply == 0);
    uint256 supply = totalSupply() + mintQty;
        uint256 fCost = cost * mintQty;
        require(supply <= curSupply, "ER33");
        if (msg.sender != owner()) {
            require(msg.value >= fCost, "ER34");
        }
        curSupply = curSupply - mintQty;
        for (uint256 i; i < mintQty; i++) {
            _safeMint(msg.sender, supply - (mintQty - i));
        }
    }
    // whitelist
    function mintWhitelist(uint8 mintQty) public payable {
        uint256 supply = totalSupply() + mintQty;
        require(supply <= wLSupply);
        // change to whitelistAllowance
        if (first12 == true) {
            require(mintQty <= whiteListAllowance[msg.sender]);
            whiteListAllowance[msg.sender] = whiteListAllowance[msg.sender] - mintQty;
        }else{
            require(whiteListAllowance[msg.sender] == 0 || whiteListAllowance[msg.sender] > 0);
        }
        curSupply = curSupply - mintQty;
        for (uint256 i; i < mintQty; i++) {
            _safeMint(msg.sender, supply - (mintQty - i));
        }

    }
    // If giveaway allowance
    function mintGiveaway(uint8 mintQty) public payable {
        require(wLSupply == 0);
    uint256 supply = totalSupply() + mintQty;
        require(mintQty <= giveAwayAllowance[msg.sender]);
        giveAwayAllowance[msg.sender] = giveAwayAllowance[msg.sender] - mintQty;
        curSupply = curSupply - mintQty;
        for (uint256 i; i < mintQty; i++) {
            _safeMint(msg.sender, supply - (mintQty - i));
        }
    }

    function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }
    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override(ERC721, ERC721URIStorage)
    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(),
                baseExtension
            )
        )
        : "";
    }

    function batchAddGiveAwayAllowance(
        address[] memory addr,
        uint8[] memory count
    ) external onlyOwner {

              for (uint16 i = 0; i < addr.length; i++) {
            giveAwayAllowance[addr[i]] = count[i];
        }
    }

       function batchAddWhitelistAllowance(
     address[] memory addr,
          uint8[] memory count
    ) external onlyOwner {

              for (uint16 i = 0; i < addr.length; i++) {
            whiteListAllowance[addr[i]] = count[i];
        }


    }

    //FUNCTIONS FOR OWNER
    function setMaxSupply(uint16 _newSupply) public onlyOwner {
        maxSupply = _newSupply;
    }
    function setWhiteListSupply(uint16 _newSupply) public onlyOwner {
        wLSupply = _newSupply;
    }

    function toggleFirst12() external onlyOwner {
        first12?
        first12 = false:
        first12 = true;
    }
    function setCurrentSupply(uint16 _newSupply) public onlyOwner {
        curSupply = _newSupply;
    }
    function pause() public onlyOwner {
        curSupply = 0;
    }
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
    function setBaseExtension(string memory _baseExtension) public onlyOwner {
        baseExtension = _baseExtension;
    }
    function redeem() public payable onlyOwner {
        uint256 sA = address(this).balance*300/1000;
        uint256 sB = address(this).balance*150/1000;
        uint256 sC = address(this).balance*100/1000;
        uint256 sD = address(this).balance*75/1000;

        Address.sendValue(payable(0xa1Dc531aA00F24665d06Ee7d3614C502c08DD964), sA);
        Address.sendValue(payable(0xd00f26915108dF339BF9B63Bd34a305052EefffB), sB);
        Address.sendValue(payable(0x1fF99B8Ba496DCa54Dcf2dC923445B889cc08800), sB);
        Address.sendValue(payable(0x95c8eE08b40107f5bd70c28c4Fd96341c8eaD9c7), sC);
        Address.sendValue(payable(0xe2bBA6BfeFCf003727627519C5193223c8fd1D76), sD);
        Address.sendValue(payable(0x203A550caB392e30B09048bBAb2F7C133f553e15), sD);
        Address.sendValue(payable(0x23FEA296223e93eA843E229b3D4aCc97e77Ac7dA), sD);
        Address.sendValue(payable(0x65371E494b8b9d473CbF7F3EdeCBfAc017C54cdB), sD);
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    function _burn(uint256 tokenId)
    internal
    override(ERC721, ERC721URIStorage)
    {
        super._burn(tokenId);
    }
    function supportsInterface(bytes4 interfaceId)
    public
    view
    override(ERC721, ERC721Enumerable)
    returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
    
   fallback() external payable {  
   }
    receive() external payable {
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"uint8[]","name":"count","type":"uint8[]"}],"name":"batchAddGiveAwayAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"uint8[]","name":"count","type":"uint8[]"}],"name":"batchAddWhitelistAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"curSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"first12","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"giveAwayAllowance","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintQty","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintQty","type":"uint8"}],"name":"mintGiveaway","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintQty","type":"uint8"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"redeem","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_newSupply","type":"uint16"}],"name":"setCurrentSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_newSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_newSupply","type":"uint16"}],"name":"setWhiteListSupply","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":"toggleFirst12","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wLSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListAllowance","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600d9190620001ab565b50670de0b6b3a7640000600e55600f805466ffffffffffffff19166503e8271027101790553480156200005a57600080fd5b50604051620031f7380380620031f78339810160408190526200007d9162000308565b82518390839062000096906000906020850190620001ab565b508051620000ac906001906020840190620001ab565b505050620000c9620000c3620000dd60201b60201c565b620000e1565b620000d48162000133565b505050620003ec565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001a790600c906020840190620001ab565b5050565b828054620001b99062000399565b90600052602060002090601f016020900481019282620001dd576000855562000228565b82601f10620001f857805160ff191683800117855562000228565b8280016001018555821562000228579182015b82811115620002285782518255916020019190600101906200020b565b50620002369291506200023a565b5090565b5b808211156200023657600081556001016200023b565b600082601f8301126200026357600080fd5b81516001600160401b0380821115620002805762000280620003d6565b604051601f8301601f19908116603f01168101908282118183101715620002ab57620002ab620003d6565b81604052838152602092508683858801011115620002c857600080fd5b600091505b83821015620002ec5785820183015181830184015290820190620002cd565b83821115620002fe5760008385830101525b9695505050505050565b6000806000606084860312156200031e57600080fd5b83516001600160401b03808211156200033657600080fd5b620003448783880162000251565b945060208601519150808211156200035b57600080fd5b620003698783880162000251565b935060408601519150808211156200038057600080fd5b506200038f8682870162000251565b9150509250925092565b600181811c90821680620003ae57607f821691505b60208210811415620003d057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612dfb80620003fc6000396000f3fe60806040526004361061023d5760003560e01c806370a082311161012d578063b88d4fde116100b0578063da3ef23f11610077578063da3ef23f146106c8578063da977f3f146106e8578063dff8f91114610708578063e985e9c514610728578063ee8dd58014610771578063f2fde38b1461079157005b8063b88d4fde14610650578063be040fb014610670578063c668286214610678578063c87b56dd1461068d578063d5abeb01146106ad57005b80638da5cb5b116100f45780638da5cb5b146105c757806391671912146105e5578063924f13b71461060857806395d89b411461061b578063a22cb4651461063057005b806370a082311461052c578063715018a61461054c57806376444114146105615780638456cb59146105825780638488b7f51461059757005b80632652ec90116101c05780634f6ccce7116101875780634f6ccce71461046557806355f804b3146104855780635fac2d9d146104a557806363059ca1146104d95780636352211e146104f95780636ecd23061461051957005b80632652ec90146103965780632f745c59146103d857806342842e0e146103f8578063438b63001461041857806344a0d68a1461044557005b806313faede61161020457806313faede61461031557806318160ddd146103395780631cee35e11461034e57806323b872dd1461036357806324ec277c1461038357005b806301ffc9a71461024657806306421c2f1461027b57806306fdde031461029b578063081812fc146102bd578063095ea7b3146102f557005b3661024457005b005b34801561025257600080fd5b50610266610261366004612855565b6107b1565b60405190151581526020015b60405180910390f35b34801561028757600080fd5b506102446102963660046128d8565b6107c2565b3480156102a757600080fd5b506102b061080d565b6040516102729190612aa1565b3480156102c957600080fd5b506102dd6102d83660046128fc565b61089f565b6040516001600160a01b039091168152602001610272565b34801561030157600080fd5b50610244610310366004612764565b610934565b34801561032157600080fd5b5061032b600e5481565b604051908152602001610272565b34801561034557600080fd5b5060085461032b565b34801561035a57600080fd5b50610244610a4a565b34801561036f57600080fd5b5061024461037e366004612670565b610ab3565b610244610391366004612915565b610ae4565b3480156103a257600080fd5b506103c66103b1366004612622565b60116020526000908152604090205460ff1681565b60405160ff9091168152602001610272565b3480156103e457600080fd5b5061032b6103f3366004612764565b610c49565b34801561040457600080fd5b50610244610413366004612670565b610cdf565b34801561042457600080fd5b50610438610433366004612622565b610cfa565b6040516102729190612a5d565b34801561045157600080fd5b506102446104603660046128fc565b610d9c565b34801561047157600080fd5b5061032b6104803660046128fc565b610dcb565b34801561049157600080fd5b506102446104a036600461288f565b610e5e565b3480156104b157600080fd5b50600f546104c69062010000900461ffff1681565b60405161ffff9091168152602001610272565b3480156104e557600080fd5b506102446104f43660046128d8565b610e9f565b34801561050557600080fd5b506102dd6105143660046128fc565b610ee9565b610244610527366004612915565b610f60565b34801561053857600080fd5b5061032b610547366004612622565b6110b2565b34801561055857600080fd5b50610244611139565b34801561056d57600080fd5b50600f5461026690600160301b900460ff1681565b34801561058e57600080fd5b5061024461116f565b3480156105a357600080fd5b506103c66105b2366004612622565b60106020526000908152604090205460ff1681565b3480156105d357600080fd5b50600a546001600160a01b03166102dd565b3480156105f157600080fd5b50600f546104c690640100000000900461ffff1681565b610244610616366004612915565b6111a8565b34801561062757600080fd5b506102b06112a1565b34801561063c57600080fd5b5061024461064b366004612728565b6112b0565b34801561065c57600080fd5b5061024461066b3660046126ac565b6112bb565b6102446112ed565b34801561068457600080fd5b506102b0611478565b34801561069957600080fd5b506102b06106a83660046128fc565b611506565b3480156106b957600080fd5b50600f546104c69061ffff1681565b3480156106d457600080fd5b506102446106e336600461288f565b6115e4565b3480156106f457600080fd5b5061024461070336600461278e565b611621565b34801561071457600080fd5b5061024461072336600461278e565b6116e6565b34801561073457600080fd5b5061026661074336600461263d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077d57600080fd5b5061024461078c3660046128d8565b6117ab565b34801561079d57600080fd5b506102446107ac366004612622565b6117f9565b60006107bc82611891565b92915050565b600a546001600160a01b031633146107f55760405162461bcd60e51b81526004016107ec90612b06565b60405180910390fd5b600f805461ffff191661ffff92909216919091179055565b60606000805461081c90612cb5565b80601f016020809104026020016040519081016040528092919081815260200182805461084890612cb5565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109185760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ec565b506000908152600460205260409020546001600160a01b031690565b600061093f82610ee9565b9050806001600160a01b0316836001600160a01b031614156109ad5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ec565b336001600160a01b03821614806109c957506109c98133610743565b610a3b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ec565b610a4583836118b6565b505050565b600a546001600160a01b03163314610a745760405162461bcd60e51b81526004016107ec90612b06565b600f54600160301b900460ff16610a9d57600f805466ff0000000000001916600160301b179055565b600f805466ff0000000000001916905560005b50565b610abd3382611924565b610ad95760405162461bcd60e51b81526004016107ec90612b3b565b610a45838383611a1b565b60008160ff16610af360085490565b610afd9190612be1565b600f54909150640100000000900461ffff16811115610b1b57600080fd5b600f54600160301b900460ff16151560011415610b99573360009081526011602052604090205460ff9081169083161115610b5557600080fd5b33600090815260116020526040902054610b7390839060ff16612c66565b336000908152601160205260409020805460ff191660ff92909216919091179055610bd2565b3360009081526011602052604090205460ff161580610bc957503360009081526011602052604090205460ff1615155b610bd257600080fd5b600f54610bed9060ff84169062010000900461ffff16612c2c565b600f60026101000a81548161ffff021916908361ffff16021790555060005b8260ff16811015610a4557610c3733610c288360ff8716612c4f565b610c329085612c4f565b611bc6565b80610c4181612d12565b915050610c0c565b6000610c54836110b2565b8210610cb65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ec565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a45838383604051806020016040528060008152506112bb565b60606000610d07836110b2565b905060008167ffffffffffffffff811115610d2457610d24612d99565b604051908082528060200260200182016040528015610d4d578160200160208202803683370190505b50905060005b82811015610d9457610d658582610c49565b828281518110610d7757610d77612d83565b602090810291909101015280610d8c81612d12565b915050610d53565b509392505050565b600a546001600160a01b03163314610dc65760405162461bcd60e51b81526004016107ec90612b06565b600e55565b6000610dd660085490565b8210610e395760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ec565b60088281548110610e4c57610e4c612d83565b90600052602060002001549050919050565b600a546001600160a01b03163314610e885760405162461bcd60e51b81526004016107ec90612b06565b8051610e9b90600c90602084019061248b565b5050565b600a546001600160a01b03163314610ec95760405162461bcd60e51b81526004016107ec90612b06565b600f805461ffff909216620100000263ffff000019909216919091179055565b6000818152600260205260408120546001600160a01b0316806107bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ec565b600f54640100000000900461ffff1615610f7957600080fd5b60008160ff16610f8860085490565b610f929190612be1565b905060008260ff16600e54610fa79190612c0d565b600f5490915062010000900461ffff16821115610fef5760405162461bcd60e51b81526004016107ec906020808252600490820152634552333360e01b604082015260600190565b600a546001600160a01b0316331461103a578034101561103a5760405162461bcd60e51b81526004016107ec9060208082526004908201526311548ccd60e21b604082015260600190565b600f546110559060ff85169062010000900461ffff16612c2c565b600f60026101000a81548161ffff021916908361ffff16021790555060005b8360ff168110156110ac5761109a336110908360ff8816612c4f565b610c329086612c4f565b806110a481612d12565b915050611074565b50505050565b60006001600160a01b03821661111d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ec565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111635760405162461bcd60e51b81526004016107ec90612b06565b61116d6000611be0565b565b600a546001600160a01b031633146111995760405162461bcd60e51b81526004016107ec90612b06565b600f805463ffff000019169055565b600f54640100000000900461ffff16156111c157600080fd5b60008160ff166111d060085490565b6111da9190612be1565b3360009081526010602052604090205490915060ff908116908316111561120057600080fd5b3360009081526010602052604090205461121e90839060ff16612c66565b336000908152601060205260409020805460ff191660ff928316179055600f546112549184169062010000900461ffff16612c2c565b600f60026101000a81548161ffff021916908361ffff16021790555060005b8260ff16811015610a455761128f33610c288360ff8716612c4f565b8061129981612d12565b915050611273565b60606001805461081c90612cb5565b610e9b338383611c32565b6112c53383611924565b6112e15760405162461bcd60e51b81526004016107ec90612b3b565b6110ac84848484611d01565b600a546001600160a01b031633146113175760405162461bcd60e51b81526004016107ec90612b06565b60006103e86113284761012c612c0d565b6113329190612bf9565b905060006103e8611344476096612c0d565b61134e9190612bf9565b905060006103e8611360476064612c0d565b61136a9190612bf9565b905060006103e861137c47604b612c0d565b6113869190612bf9565b90506113a673a1dc531aa00f24665d06ee7d3614c502c08dd96485611d34565b6113c473d00f26915108df339bf9b63bd34a305052eefffb84611d34565b6113e2731ff99b8ba496dca54dcf2dc923445b889cc0880084611d34565b6114007395c8ee08b40107f5bd70c28c4fd96341c8ead9c783611d34565b61141e73e2bba6bfefcf003727627519c5193223c8fd1d7682611d34565b61143c73203a550cab392e30b09048bbab2f7c133f553e1582611d34565b61145a7323fea296223e93ea843e229b3d4acc97e77ac7da82611d34565b6110ac7365371e494b8b9d473cbf7f3edecbfac017c54cdb82611d34565b600d805461148590612cb5565b80601f01602080910402602001604051908101604052809291908181526020018280546114b190612cb5565b80156114fe5780601f106114d3576101008083540402835291602001916114fe565b820191906000526020600020905b8154815290600101906020018083116114e157829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166115855760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ec565b600061158f611e4d565b905060008151116115af57604051806020016040528060008152506115dd565b806115b984611e5c565b600d6040516020016115cd9392919061295c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461160e5760405162461bcd60e51b81526004016107ec90612b06565b8051610e9b90600d90602084019061248b565b600a546001600160a01b0316331461164b5760405162461bcd60e51b81526004016107ec90612b06565b60005b82518161ffff161015610a4557818161ffff168151811061167157611671612d83565b602002602001015160106000858461ffff168151811061169357611693612d83565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806116de90612cf0565b91505061164e565b600a546001600160a01b031633146117105760405162461bcd60e51b81526004016107ec90612b06565b60005b82518161ffff161015610a4557818161ffff168151811061173657611736612d83565b602002602001015160116000858461ffff168151811061175857611758612d83565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806117a390612cf0565b915050611713565b600a546001600160a01b031633146117d55760405162461bcd60e51b81526004016107ec90612b06565b600f805461ffff9092166401000000000265ffff0000000019909216919091179055565b600a546001600160a01b031633146118235760405162461bcd60e51b81526004016107ec90612b06565b6001600160a01b0381166118885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ec565b610ab081611be0565b60006001600160e01b0319821663780e9d6360e01b14806107bc57506107bc82611f5a565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118eb82610ee9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661199d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ec565b60006119a883610ee9565b9050806001600160a01b0316846001600160a01b031614806119e35750836001600160a01b03166119d88461089f565b6001600160a01b0316145b80611a1357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a2e82610ee9565b6001600160a01b031614611a965760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107ec565b6001600160a01b038216611af85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ec565b611b03838383611faa565b611b0e6000826118b6565b6001600160a01b0383166000908152600360205260408120805460019290611b37908490612c4f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b65908490612be1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e9b828260405180602001604052806000815250611fb5565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c945760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ec565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d0c848484611a1b565b611d1884848484611fe8565b6110ac5760405162461bcd60e51b81526004016107ec90612ab4565b80471015611d845760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107ec565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611dd1576040519150601f19603f3d011682016040523d82523d6000602084013e611dd6565b606091505b5050905080610a455760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107ec565b6060600c805461081c90612cb5565b606081611e805750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eaa5780611e9481612d12565b9150611ea39050600a83612bf9565b9150611e84565b60008167ffffffffffffffff811115611ec557611ec5612d99565b6040519080825280601f01601f191660200182016040528015611eef576020820181803683370190505b5090505b8415611a1357611f04600183612c4f565b9150611f11600a86612d2d565b611f1c906030612be1565b60f81b818381518110611f3157611f31612d83565b60200101906001600160f81b031916908160001a905350611f53600a86612bf9565b9450611ef3565b60006001600160e01b031982166380ac58cd60e01b1480611f8b57506001600160e01b03198216635b5e139f60e01b145b806107bc57506301ffc9a760e01b6001600160e01b03198316146107bc565b610a458383836120f5565b611fbf83836121ad565b611fcc6000848484611fe8565b610a455760405162461bcd60e51b81526004016107ec90612ab4565b60006001600160a01b0384163b156120ea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061202c903390899088908890600401612a20565b602060405180830381600087803b15801561204657600080fd5b505af1925050508015612076575060408051601f3d908101601f1916820190925261207391810190612872565b60015b6120d0573d8080156120a4576040519150601f19603f3d011682016040523d82523d6000602084013e6120a9565b606091505b5080516120c85760405162461bcd60e51b81526004016107ec90612ab4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a13565b506001949350505050565b6001600160a01b0383166121505761214b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612173565b816001600160a01b0316836001600160a01b0316146121735761217383826122fb565b6001600160a01b03821661218a57610a4581612398565b826001600160a01b0316826001600160a01b031614610a4557610a458282612447565b6001600160a01b0382166122035760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ec565b6000818152600260205260409020546001600160a01b0316156122685760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ec565b61227460008383611faa565b6001600160a01b038216600090815260036020526040812080546001929061229d908490612be1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612308846110b2565b6123129190612c4f565b600083815260076020526040902054909150808214612365576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123aa90600190612c4f565b600083815260096020526040812054600880549394509092849081106123d2576123d2612d83565b9060005260206000200154905080600883815481106123f3576123f3612d83565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061242b5761242b612d6d565b6001900381819060005260206000200160009055905550505050565b6000612452836110b2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461249790612cb5565b90600052602060002090601f0160209004810192826124b957600085556124ff565b82601f106124d257805160ff19168380011785556124ff565b828001600101855582156124ff579182015b828111156124ff5782518255916020019190600101906124e4565b5061250b92915061250f565b5090565b5b8082111561250b5760008155600101612510565b600067ffffffffffffffff83111561253e5761253e612d99565b612551601f8401601f1916602001612b8c565b905082815283838301111561256557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461259357600080fd5b919050565b600082601f8301126125a957600080fd5b813560206125be6125b983612bbd565b612b8c565b80838252828201915082860187848660051b89010111156125de57600080fd5b60005b85811015612604576125f282612611565b845292840192908401906001016125e1565b5090979650505050505050565b803560ff8116811461259357600080fd5b60006020828403121561263457600080fd5b6115dd8261257c565b6000806040838503121561265057600080fd5b6126598361257c565b91506126676020840161257c565b90509250929050565b60008060006060848603121561268557600080fd5b61268e8461257c565b925061269c6020850161257c565b9150604084013590509250925092565b600080600080608085870312156126c257600080fd5b6126cb8561257c565b93506126d96020860161257c565b925060408501359150606085013567ffffffffffffffff8111156126fc57600080fd5b8501601f8101871361270d57600080fd5b61271c87823560208401612524565b91505092959194509250565b6000806040838503121561273b57600080fd5b6127448361257c565b91506020830135801515811461275957600080fd5b809150509250929050565b6000806040838503121561277757600080fd5b6127808361257c565b946020939093013593505050565b600080604083850312156127a157600080fd5b823567ffffffffffffffff808211156127b957600080fd5b818501915085601f8301126127cd57600080fd5b813560206127dd6125b983612bbd565b8083825282820191508286018a848660051b89010111156127fd57600080fd5b600096505b84871015612827576128138161257c565b835260019690960195918301918301612802565b509650508601359250508082111561283e57600080fd5b5061284b85828601612598565b9150509250929050565b60006020828403121561286757600080fd5b81356115dd81612daf565b60006020828403121561288457600080fd5b81516115dd81612daf565b6000602082840312156128a157600080fd5b813567ffffffffffffffff8111156128b857600080fd5b8201601f810184136128c957600080fd5b611a1384823560208401612524565b6000602082840312156128ea57600080fd5b813561ffff811681146115dd57600080fd5b60006020828403121561290e57600080fd5b5035919050565b60006020828403121561292757600080fd5b6115dd82612611565b60008151808452612948816020860160208601612c89565b601f01601f19169290920160200192915050565b60008451602061296f8285838a01612c89565b8551918401916129828184848a01612c89565b8554920191600090600181811c908083168061299f57607f831692505b8583108114156129bd57634e487b7160e01b85526022600452602485fd5b8080156129d157600181146129e257612a0f565b60ff19851688528388019550612a0f565b60008b81526020902060005b85811015612a075781548a8201529084019088016129ee565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a5390830184612930565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612a9557835183529284019291840191600101612a79565b50909695505050505050565b6020815260006115dd6020830184612930565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612bb557612bb5612d99565b604052919050565b600067ffffffffffffffff821115612bd757612bd7612d99565b5060051b60200190565b60008219821115612bf457612bf4612d41565b500190565b600082612c0857612c08612d57565b500490565b6000816000190483118215151615612c2757612c27612d41565b500290565b600061ffff83811690831681811015612c4757612c47612d41565b039392505050565b600082821015612c6157612c61612d41565b500390565b600060ff821660ff841680821015612c8057612c80612d41565b90039392505050565b60005b83811015612ca4578181015183820152602001612c8c565b838111156110ac5750506000910152565b600181811c90821680612cc957607f821691505b60208210811415612cea57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415612d0857612d08612d41565b6001019392505050565b6000600019821415612d2657612d26612d41565b5060010190565b600082612d3c57612d3c612d57565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ab057600080fdfea2646970667358221220a046e268d5fb7577a4b97e6dbdfbd3c857de21ac23cfe70efb611c30ad26754d64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b784d61727469616e4e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002784d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a706247585a644b50763134537574735373745254416f4e4e424b4d6761725a536468735334514d446751682f00000000000000000000

Deployed Bytecode

0x60806040526004361061023d5760003560e01c806370a082311161012d578063b88d4fde116100b0578063da3ef23f11610077578063da3ef23f146106c8578063da977f3f146106e8578063dff8f91114610708578063e985e9c514610728578063ee8dd58014610771578063f2fde38b1461079157005b8063b88d4fde14610650578063be040fb014610670578063c668286214610678578063c87b56dd1461068d578063d5abeb01146106ad57005b80638da5cb5b116100f45780638da5cb5b146105c757806391671912146105e5578063924f13b71461060857806395d89b411461061b578063a22cb4651461063057005b806370a082311461052c578063715018a61461054c57806376444114146105615780638456cb59146105825780638488b7f51461059757005b80632652ec90116101c05780634f6ccce7116101875780634f6ccce71461046557806355f804b3146104855780635fac2d9d146104a557806363059ca1146104d95780636352211e146104f95780636ecd23061461051957005b80632652ec90146103965780632f745c59146103d857806342842e0e146103f8578063438b63001461041857806344a0d68a1461044557005b806313faede61161020457806313faede61461031557806318160ddd146103395780631cee35e11461034e57806323b872dd1461036357806324ec277c1461038357005b806301ffc9a71461024657806306421c2f1461027b57806306fdde031461029b578063081812fc146102bd578063095ea7b3146102f557005b3661024457005b005b34801561025257600080fd5b50610266610261366004612855565b6107b1565b60405190151581526020015b60405180910390f35b34801561028757600080fd5b506102446102963660046128d8565b6107c2565b3480156102a757600080fd5b506102b061080d565b6040516102729190612aa1565b3480156102c957600080fd5b506102dd6102d83660046128fc565b61089f565b6040516001600160a01b039091168152602001610272565b34801561030157600080fd5b50610244610310366004612764565b610934565b34801561032157600080fd5b5061032b600e5481565b604051908152602001610272565b34801561034557600080fd5b5060085461032b565b34801561035a57600080fd5b50610244610a4a565b34801561036f57600080fd5b5061024461037e366004612670565b610ab3565b610244610391366004612915565b610ae4565b3480156103a257600080fd5b506103c66103b1366004612622565b60116020526000908152604090205460ff1681565b60405160ff9091168152602001610272565b3480156103e457600080fd5b5061032b6103f3366004612764565b610c49565b34801561040457600080fd5b50610244610413366004612670565b610cdf565b34801561042457600080fd5b50610438610433366004612622565b610cfa565b6040516102729190612a5d565b34801561045157600080fd5b506102446104603660046128fc565b610d9c565b34801561047157600080fd5b5061032b6104803660046128fc565b610dcb565b34801561049157600080fd5b506102446104a036600461288f565b610e5e565b3480156104b157600080fd5b50600f546104c69062010000900461ffff1681565b60405161ffff9091168152602001610272565b3480156104e557600080fd5b506102446104f43660046128d8565b610e9f565b34801561050557600080fd5b506102dd6105143660046128fc565b610ee9565b610244610527366004612915565b610f60565b34801561053857600080fd5b5061032b610547366004612622565b6110b2565b34801561055857600080fd5b50610244611139565b34801561056d57600080fd5b50600f5461026690600160301b900460ff1681565b34801561058e57600080fd5b5061024461116f565b3480156105a357600080fd5b506103c66105b2366004612622565b60106020526000908152604090205460ff1681565b3480156105d357600080fd5b50600a546001600160a01b03166102dd565b3480156105f157600080fd5b50600f546104c690640100000000900461ffff1681565b610244610616366004612915565b6111a8565b34801561062757600080fd5b506102b06112a1565b34801561063c57600080fd5b5061024461064b366004612728565b6112b0565b34801561065c57600080fd5b5061024461066b3660046126ac565b6112bb565b6102446112ed565b34801561068457600080fd5b506102b0611478565b34801561069957600080fd5b506102b06106a83660046128fc565b611506565b3480156106b957600080fd5b50600f546104c69061ffff1681565b3480156106d457600080fd5b506102446106e336600461288f565b6115e4565b3480156106f457600080fd5b5061024461070336600461278e565b611621565b34801561071457600080fd5b5061024461072336600461278e565b6116e6565b34801561073457600080fd5b5061026661074336600461263d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077d57600080fd5b5061024461078c3660046128d8565b6117ab565b34801561079d57600080fd5b506102446107ac366004612622565b6117f9565b60006107bc82611891565b92915050565b600a546001600160a01b031633146107f55760405162461bcd60e51b81526004016107ec90612b06565b60405180910390fd5b600f805461ffff191661ffff92909216919091179055565b60606000805461081c90612cb5565b80601f016020809104026020016040519081016040528092919081815260200182805461084890612cb5565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109185760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ec565b506000908152600460205260409020546001600160a01b031690565b600061093f82610ee9565b9050806001600160a01b0316836001600160a01b031614156109ad5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ec565b336001600160a01b03821614806109c957506109c98133610743565b610a3b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ec565b610a4583836118b6565b505050565b600a546001600160a01b03163314610a745760405162461bcd60e51b81526004016107ec90612b06565b600f54600160301b900460ff16610a9d57600f805466ff0000000000001916600160301b179055565b600f805466ff0000000000001916905560005b50565b610abd3382611924565b610ad95760405162461bcd60e51b81526004016107ec90612b3b565b610a45838383611a1b565b60008160ff16610af360085490565b610afd9190612be1565b600f54909150640100000000900461ffff16811115610b1b57600080fd5b600f54600160301b900460ff16151560011415610b99573360009081526011602052604090205460ff9081169083161115610b5557600080fd5b33600090815260116020526040902054610b7390839060ff16612c66565b336000908152601160205260409020805460ff191660ff92909216919091179055610bd2565b3360009081526011602052604090205460ff161580610bc957503360009081526011602052604090205460ff1615155b610bd257600080fd5b600f54610bed9060ff84169062010000900461ffff16612c2c565b600f60026101000a81548161ffff021916908361ffff16021790555060005b8260ff16811015610a4557610c3733610c288360ff8716612c4f565b610c329085612c4f565b611bc6565b80610c4181612d12565b915050610c0c565b6000610c54836110b2565b8210610cb65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ec565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a45838383604051806020016040528060008152506112bb565b60606000610d07836110b2565b905060008167ffffffffffffffff811115610d2457610d24612d99565b604051908082528060200260200182016040528015610d4d578160200160208202803683370190505b50905060005b82811015610d9457610d658582610c49565b828281518110610d7757610d77612d83565b602090810291909101015280610d8c81612d12565b915050610d53565b509392505050565b600a546001600160a01b03163314610dc65760405162461bcd60e51b81526004016107ec90612b06565b600e55565b6000610dd660085490565b8210610e395760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ec565b60088281548110610e4c57610e4c612d83565b90600052602060002001549050919050565b600a546001600160a01b03163314610e885760405162461bcd60e51b81526004016107ec90612b06565b8051610e9b90600c90602084019061248b565b5050565b600a546001600160a01b03163314610ec95760405162461bcd60e51b81526004016107ec90612b06565b600f805461ffff909216620100000263ffff000019909216919091179055565b6000818152600260205260408120546001600160a01b0316806107bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ec565b600f54640100000000900461ffff1615610f7957600080fd5b60008160ff16610f8860085490565b610f929190612be1565b905060008260ff16600e54610fa79190612c0d565b600f5490915062010000900461ffff16821115610fef5760405162461bcd60e51b81526004016107ec906020808252600490820152634552333360e01b604082015260600190565b600a546001600160a01b0316331461103a578034101561103a5760405162461bcd60e51b81526004016107ec9060208082526004908201526311548ccd60e21b604082015260600190565b600f546110559060ff85169062010000900461ffff16612c2c565b600f60026101000a81548161ffff021916908361ffff16021790555060005b8360ff168110156110ac5761109a336110908360ff8816612c4f565b610c329086612c4f565b806110a481612d12565b915050611074565b50505050565b60006001600160a01b03821661111d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ec565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111635760405162461bcd60e51b81526004016107ec90612b06565b61116d6000611be0565b565b600a546001600160a01b031633146111995760405162461bcd60e51b81526004016107ec90612b06565b600f805463ffff000019169055565b600f54640100000000900461ffff16156111c157600080fd5b60008160ff166111d060085490565b6111da9190612be1565b3360009081526010602052604090205490915060ff908116908316111561120057600080fd5b3360009081526010602052604090205461121e90839060ff16612c66565b336000908152601060205260409020805460ff191660ff928316179055600f546112549184169062010000900461ffff16612c2c565b600f60026101000a81548161ffff021916908361ffff16021790555060005b8260ff16811015610a455761128f33610c288360ff8716612c4f565b8061129981612d12565b915050611273565b60606001805461081c90612cb5565b610e9b338383611c32565b6112c53383611924565b6112e15760405162461bcd60e51b81526004016107ec90612b3b565b6110ac84848484611d01565b600a546001600160a01b031633146113175760405162461bcd60e51b81526004016107ec90612b06565b60006103e86113284761012c612c0d565b6113329190612bf9565b905060006103e8611344476096612c0d565b61134e9190612bf9565b905060006103e8611360476064612c0d565b61136a9190612bf9565b905060006103e861137c47604b612c0d565b6113869190612bf9565b90506113a673a1dc531aa00f24665d06ee7d3614c502c08dd96485611d34565b6113c473d00f26915108df339bf9b63bd34a305052eefffb84611d34565b6113e2731ff99b8ba496dca54dcf2dc923445b889cc0880084611d34565b6114007395c8ee08b40107f5bd70c28c4fd96341c8ead9c783611d34565b61141e73e2bba6bfefcf003727627519c5193223c8fd1d7682611d34565b61143c73203a550cab392e30b09048bbab2f7c133f553e1582611d34565b61145a7323fea296223e93ea843e229b3d4acc97e77ac7da82611d34565b6110ac7365371e494b8b9d473cbf7f3edecbfac017c54cdb82611d34565b600d805461148590612cb5565b80601f01602080910402602001604051908101604052809291908181526020018280546114b190612cb5565b80156114fe5780601f106114d3576101008083540402835291602001916114fe565b820191906000526020600020905b8154815290600101906020018083116114e157829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166115855760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ec565b600061158f611e4d565b905060008151116115af57604051806020016040528060008152506115dd565b806115b984611e5c565b600d6040516020016115cd9392919061295c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461160e5760405162461bcd60e51b81526004016107ec90612b06565b8051610e9b90600d90602084019061248b565b600a546001600160a01b0316331461164b5760405162461bcd60e51b81526004016107ec90612b06565b60005b82518161ffff161015610a4557818161ffff168151811061167157611671612d83565b602002602001015160106000858461ffff168151811061169357611693612d83565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806116de90612cf0565b91505061164e565b600a546001600160a01b031633146117105760405162461bcd60e51b81526004016107ec90612b06565b60005b82518161ffff161015610a4557818161ffff168151811061173657611736612d83565b602002602001015160116000858461ffff168151811061175857611758612d83565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806117a390612cf0565b915050611713565b600a546001600160a01b031633146117d55760405162461bcd60e51b81526004016107ec90612b06565b600f805461ffff9092166401000000000265ffff0000000019909216919091179055565b600a546001600160a01b031633146118235760405162461bcd60e51b81526004016107ec90612b06565b6001600160a01b0381166118885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ec565b610ab081611be0565b60006001600160e01b0319821663780e9d6360e01b14806107bc57506107bc82611f5a565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118eb82610ee9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661199d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ec565b60006119a883610ee9565b9050806001600160a01b0316846001600160a01b031614806119e35750836001600160a01b03166119d88461089f565b6001600160a01b0316145b80611a1357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a2e82610ee9565b6001600160a01b031614611a965760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107ec565b6001600160a01b038216611af85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ec565b611b03838383611faa565b611b0e6000826118b6565b6001600160a01b0383166000908152600360205260408120805460019290611b37908490612c4f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b65908490612be1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e9b828260405180602001604052806000815250611fb5565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c945760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ec565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d0c848484611a1b565b611d1884848484611fe8565b6110ac5760405162461bcd60e51b81526004016107ec90612ab4565b80471015611d845760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107ec565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611dd1576040519150601f19603f3d011682016040523d82523d6000602084013e611dd6565b606091505b5050905080610a455760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107ec565b6060600c805461081c90612cb5565b606081611e805750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eaa5780611e9481612d12565b9150611ea39050600a83612bf9565b9150611e84565b60008167ffffffffffffffff811115611ec557611ec5612d99565b6040519080825280601f01601f191660200182016040528015611eef576020820181803683370190505b5090505b8415611a1357611f04600183612c4f565b9150611f11600a86612d2d565b611f1c906030612be1565b60f81b818381518110611f3157611f31612d83565b60200101906001600160f81b031916908160001a905350611f53600a86612bf9565b9450611ef3565b60006001600160e01b031982166380ac58cd60e01b1480611f8b57506001600160e01b03198216635b5e139f60e01b145b806107bc57506301ffc9a760e01b6001600160e01b03198316146107bc565b610a458383836120f5565b611fbf83836121ad565b611fcc6000848484611fe8565b610a455760405162461bcd60e51b81526004016107ec90612ab4565b60006001600160a01b0384163b156120ea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061202c903390899088908890600401612a20565b602060405180830381600087803b15801561204657600080fd5b505af1925050508015612076575060408051601f3d908101601f1916820190925261207391810190612872565b60015b6120d0573d8080156120a4576040519150601f19603f3d011682016040523d82523d6000602084013e6120a9565b606091505b5080516120c85760405162461bcd60e51b81526004016107ec90612ab4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a13565b506001949350505050565b6001600160a01b0383166121505761214b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612173565b816001600160a01b0316836001600160a01b0316146121735761217383826122fb565b6001600160a01b03821661218a57610a4581612398565b826001600160a01b0316826001600160a01b031614610a4557610a458282612447565b6001600160a01b0382166122035760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ec565b6000818152600260205260409020546001600160a01b0316156122685760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ec565b61227460008383611faa565b6001600160a01b038216600090815260036020526040812080546001929061229d908490612be1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612308846110b2565b6123129190612c4f565b600083815260076020526040902054909150808214612365576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123aa90600190612c4f565b600083815260096020526040812054600880549394509092849081106123d2576123d2612d83565b9060005260206000200154905080600883815481106123f3576123f3612d83565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061242b5761242b612d6d565b6001900381819060005260206000200160009055905550505050565b6000612452836110b2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461249790612cb5565b90600052602060002090601f0160209004810192826124b957600085556124ff565b82601f106124d257805160ff19168380011785556124ff565b828001600101855582156124ff579182015b828111156124ff5782518255916020019190600101906124e4565b5061250b92915061250f565b5090565b5b8082111561250b5760008155600101612510565b600067ffffffffffffffff83111561253e5761253e612d99565b612551601f8401601f1916602001612b8c565b905082815283838301111561256557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461259357600080fd5b919050565b600082601f8301126125a957600080fd5b813560206125be6125b983612bbd565b612b8c565b80838252828201915082860187848660051b89010111156125de57600080fd5b60005b85811015612604576125f282612611565b845292840192908401906001016125e1565b5090979650505050505050565b803560ff8116811461259357600080fd5b60006020828403121561263457600080fd5b6115dd8261257c565b6000806040838503121561265057600080fd5b6126598361257c565b91506126676020840161257c565b90509250929050565b60008060006060848603121561268557600080fd5b61268e8461257c565b925061269c6020850161257c565b9150604084013590509250925092565b600080600080608085870312156126c257600080fd5b6126cb8561257c565b93506126d96020860161257c565b925060408501359150606085013567ffffffffffffffff8111156126fc57600080fd5b8501601f8101871361270d57600080fd5b61271c87823560208401612524565b91505092959194509250565b6000806040838503121561273b57600080fd5b6127448361257c565b91506020830135801515811461275957600080fd5b809150509250929050565b6000806040838503121561277757600080fd5b6127808361257c565b946020939093013593505050565b600080604083850312156127a157600080fd5b823567ffffffffffffffff808211156127b957600080fd5b818501915085601f8301126127cd57600080fd5b813560206127dd6125b983612bbd565b8083825282820191508286018a848660051b89010111156127fd57600080fd5b600096505b84871015612827576128138161257c565b835260019690960195918301918301612802565b509650508601359250508082111561283e57600080fd5b5061284b85828601612598565b9150509250929050565b60006020828403121561286757600080fd5b81356115dd81612daf565b60006020828403121561288457600080fd5b81516115dd81612daf565b6000602082840312156128a157600080fd5b813567ffffffffffffffff8111156128b857600080fd5b8201601f810184136128c957600080fd5b611a1384823560208401612524565b6000602082840312156128ea57600080fd5b813561ffff811681146115dd57600080fd5b60006020828403121561290e57600080fd5b5035919050565b60006020828403121561292757600080fd5b6115dd82612611565b60008151808452612948816020860160208601612c89565b601f01601f19169290920160200192915050565b60008451602061296f8285838a01612c89565b8551918401916129828184848a01612c89565b8554920191600090600181811c908083168061299f57607f831692505b8583108114156129bd57634e487b7160e01b85526022600452602485fd5b8080156129d157600181146129e257612a0f565b60ff19851688528388019550612a0f565b60008b81526020902060005b85811015612a075781548a8201529084019088016129ee565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a5390830184612930565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612a9557835183529284019291840191600101612a79565b50909695505050505050565b6020815260006115dd6020830184612930565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612bb557612bb5612d99565b604052919050565b600067ffffffffffffffff821115612bd757612bd7612d99565b5060051b60200190565b60008219821115612bf457612bf4612d41565b500190565b600082612c0857612c08612d57565b500490565b6000816000190483118215151615612c2757612c27612d41565b500290565b600061ffff83811690831681811015612c4757612c47612d41565b039392505050565b600082821015612c6157612c61612d41565b500390565b600060ff821660ff841680821015612c8057612c80612d41565b90039392505050565b60005b83811015612ca4578181015183820152602001612c8c565b838111156110ac5750506000910152565b600181811c90821680612cc957607f821691505b60208210811415612cea57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415612d0857612d08612d41565b6001019392505050565b6000600019821415612d2657612d26612d41565b5060010190565b600082612d3c57612d3c612d57565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ab057600080fdfea2646970667358221220a046e268d5fb7577a4b97e6dbdfbd3c857de21ac23cfe70efb611c30ad26754d64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b784d61727469616e4e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002784d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a706247585a644b50763134537574735373745254416f4e4e424b4d6761725a536468735334514d446751682f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): xMartianNFT
Arg [1] : _symbol (string): xM
Arg [2] : _initBaseURI (string): ipfs://QmZpbGXZdKPv14SutsSstRTAoNNBKMgarZSdhsS4QMDgQh/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 784d61727469616e4e4654000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 784d000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5a706247585a644b50763134537574735373745254416f
Arg [9] : 4e4e424b4d6761725a536468735334514d446751682f00000000000000000000


Deployed Bytecode Sourcemap

53417:6499:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59628:196;;;;;;;;;;-1:-1:-1;59628:196:0;;;;;:::i;:::-;;:::i;:::-;;;9788:14:1;;9781:22;9763:41;;9751:2;9736:18;59628:196:0;;;;;;;;57462:99;;;;;;;;;;-1:-1:-1;57462:99:0;;;;;:::i;:::-;;:::i;31576:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33135:221::-;;;;;;;;;;-1:-1:-1;33135:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8449:32:1;;;8431:51;;8419:2;8404:18;33135:221:0;8285:203:1;32658:411:0;;;;;;;;;;-1:-1:-1;32658:411:0;;;;;:::i;:::-;;:::i;53591:29::-;;;;;;;;;;;;;;;;;;;19034:25:1;;;19022:2;19007:18;53591:29:0;18888:177:1;47800:113:0;;;;;;;;;;-1:-1:-1;47888:10:0;:17;47800:113;;57679:121;;;;;;;;;;;;;:::i;33885:339::-;;;;;;;;;;-1:-1:-1;33885:339:0;;;;;:::i;:::-;;:::i;54785:660::-;;;;;;:::i;:::-;;:::i;53835:52::-;;;;;;;;;;-1:-1:-1;53835:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19242:4:1;19230:17;;;19212:36;;19200:2;19185:18;53835:52:0;19070:184:1;47468:256:0;;;;;;;;;;-1:-1:-1;47468:256:0;;;;;:::i;:::-;;:::i;34295:185::-;;;;;;;;;;-1:-1:-1;34295:185:0;;;;;:::i;:::-;;:::i;55929:378::-;;;;;;;;;;-1:-1:-1;55929:378:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57987:86::-;;;;;;;;;;-1:-1:-1;57987:86:0;;;;;:::i;:::-;;:::i;47990:233::-;;;;;;;;;;-1:-1:-1;47990:233:0;;;;;:::i;:::-;;:::i;58079:104::-;;;;;;;;;;-1:-1:-1;58079:104:0;;;;;:::i;:::-;;:::i;53667:31::-;;;;;;;;;;-1:-1:-1;53667:31:0;;;;;;;;;;;;;;18869:6:1;18857:19;;;18839:38;;18827:2;18812:18;53667:31:0;18695:188:1;57806:103:0;;;;;;;;;;-1:-1:-1;57806:103:0;;;;;:::i;:::-;;:::i;31270:239::-;;;;;;;;;;-1:-1:-1;31270:239:0;;;;;:::i;:::-;;:::i;54284:477::-;;;;;;:::i;:::-;;:::i;31000:208::-;;;;;;;;;;-1:-1:-1;31000:208:0;;;;;:::i;:::-;;:::i;5502:103::-;;;;;;;;;;;;;:::i;53743:27::-;;;;;;;;;;-1:-1:-1;53743:27:0;;;;-1:-1:-1;;;53743:27:0;;;;;;57915:66;;;;;;;;;;;;;:::i;53777:51::-;;;;;;;;;;-1:-1:-1;53777:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;4851:87;;;;;;;;;;-1:-1:-1;4924:6:0;;-1:-1:-1;;;;;4924:6:0;4851:87;;53705:29;;;;;;;;;;-1:-1:-1;53705:29:0;;;;;;;;;;;55481:440;;;;;;:::i;:::-;;:::i;31745:104::-;;;;;;;;;;;;;:::i;33428:155::-;;;;;;;;;;-1:-1:-1;33428:155:0;;;;;:::i;:::-;;:::i;34551:328::-;;;;;;;;;;-1:-1:-1;34551:328:0;;;;;:::i;:::-;;:::i;58317:948::-;;;:::i;53547:37::-;;;;;;;;;;;;;:::i;56313:580::-;;;;;;;;;;-1:-1:-1;56313:580:0;;;;;:::i;:::-;;:::i;53629:31::-;;;;;;;;;;-1:-1:-1;53629:31:0;;;;;;;;58189:122;;;;;;;;;;-1:-1:-1;58189:122:0;;;;;:::i;:::-;;:::i;56901:255::-;;;;;;;;;;-1:-1:-1;56901:255:0;;;;;:::i;:::-;;:::i;57167:260::-;;;;;;;;;;-1:-1:-1;57167:260:0;;;;;:::i;:::-;;:::i;33654:164::-;;;;;;;;;;-1:-1:-1;33654:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33775:25:0;;;33751:4;33775:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33654:164;57567:104;;;;;;;;;;-1:-1:-1;57567:104:0;;;;;:::i;:::-;;:::i;5760:201::-;;;;;;;;;;-1:-1:-1;5760:201:0;;;;;:::i;:::-;;:::i;59628:196::-;59751:4;59780:36;59804:11;59780:23;:36::i;:::-;59773:43;59628:196;-1:-1:-1;;59628:196:0:o;57462:99::-;4924:6;;-1:-1:-1;;;;;4924:6:0;3655:10;5071:23;5063:68;;;;-1:-1:-1;;;5063:68:0;;;;;;;:::i;:::-;;;;;;;;;57531:9:::1;:22:::0;;-1:-1:-1;;57531:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;57462:99::o;31576:100::-;31630:13;31663:5;31656:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31576:100;:::o;33135:221::-;33211:7;36478:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36478:16:0;33231:73;;;;-1:-1:-1;;;33231:73:0;;15400:2:1;33231:73:0;;;15382:21:1;15439:2;15419:18;;;15412:30;15478:34;15458:18;;;15451:62;-1:-1:-1;;;15529:18:1;;;15522:42;15581:19;;33231:73:0;15198:408:1;33231:73:0;-1:-1:-1;33324:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33324:24:0;;33135:221::o;32658:411::-;32739:13;32755:23;32770:7;32755:14;:23::i;:::-;32739:39;;32803:5;-1:-1:-1;;;;;32797:11:0;:2;-1:-1:-1;;;;;32797:11:0;;;32789:57;;;;-1:-1:-1;;;32789:57:0;;17332:2:1;32789:57:0;;;17314:21:1;17371:2;17351:18;;;17344:30;17410:34;17390:18;;;17383:62;-1:-1:-1;;;17461:18:1;;;17454:31;17502:19;;32789:57:0;17130:397:1;32789:57:0;3655:10;-1:-1:-1;;;;;32881:21:0;;;;:62;;-1:-1:-1;32906:37:0;32923:5;3655:10;33654:164;:::i;32906:37::-;32859:168;;;;-1:-1:-1;;;32859:168:0;;13793:2:1;32859:168:0;;;13775:21:1;13832:2;13812:18;;;13805:30;13871:34;13851:18;;;13844:62;13942:26;13922:18;;;13915:54;13986:19;;32859:168:0;13591:420:1;32859:168:0;33040:21;33049:2;33053:7;33040:8;:21::i;:::-;32728:341;32658:411;;:::o;57679:121::-;4924:6;;-1:-1:-1;;;;;4924:6:0;3655:10;5071:23;5063:68;;;;-1:-1:-1;;;5063:68:0;;;;;;;:::i;:::-;57734:7:::1;::::0;-1:-1:-1;;;57734:7:0;::::1;;;:58;;57778:7;:14:::0;;-1:-1:-1;;57778:14:0::1;-1:-1:-1::0;;;57778:14:0::1;::::0;;57679:121::o;57734:58::-:1;57752:7;:15:::0;;-1:-1:-1;;57752:15:0::1;::::0;;57762:5:::1;57734:58;;57679:121::o:0;33885:339::-;34080:41;3655:10;34113:7;34080:18;:41::i;:::-;34072:103;;;;-1:-1:-1;;;34072:103:0;;;;;;;:::i;:::-;34188:28;34198:4;34204:2;34208:7;34188:9;:28::i;54785:660::-;54849:14;54882:7;54866:23;;:13;47888:10;:17;;47800:113;54866:13;:23;;;;:::i;:::-;54918:8;;54849:40;;-1:-1:-1;54918:8:0;;;;;54908:18;;;54900:27;;;;;;54983:7;;-1:-1:-1;;;54983:7:0;;;;:15;;54994:4;54983:15;54979:299;;;55053:10;55034:30;;;;:18;:30;;;;;;;;;;55023:41;;;;;55015:50;;;;;;55132:10;55113:30;;;;:18;:30;;;;;;:40;;55146:7;;55113:30;;:40;:::i;:::-;55099:10;55080:30;;;;:18;:30;;;;;:73;;-1:-1:-1;;55080:73:0;;;;;;;;;;;;54979:299;;;55211:10;55192:30;;;;:18;:30;;;;;;;;:35;;:73;;-1:-1:-1;55250:10:0;55264:1;55231:30;;;:18;:30;;;;;;;;:34;;55192:73;55184:82;;;;;;55300:9;;:19;;;;;;:9;;;;;:19;:::i;:::-;55288:9;;:31;;;;;;;;;;;;;;;;;;55335:9;55330:106;55350:7;55346:11;;:1;:11;55330:106;;;55379:45;55389:10;55411:11;55421:1;55411:11;;;;:::i;:::-;55401:22;;:6;:22;:::i;:::-;55379:9;:45::i;:::-;55359:3;;;;:::i;:::-;;;;55330:106;;47468:256;47565:7;47601:23;47618:5;47601:16;:23::i;:::-;47593:5;:31;47585:87;;;;-1:-1:-1;;;47585:87:0;;10241:2:1;47585:87:0;;;10223:21:1;10280:2;10260:18;;;10253:30;10319:34;10299:18;;;10292:62;-1:-1:-1;;;10370:18:1;;;10363:41;10421:19;;47585:87:0;10039:407:1;47585:87:0;-1:-1:-1;;;;;;47690:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;47468:256::o;34295:185::-;34433:39;34450:4;34456:2;34460:7;34433:39;;;;;;;;;;;;:16;:39::i;55929:378::-;56004:16;56038:23;56064:17;56074:6;56064:9;:17::i;:::-;56038:43;;56092:25;56134:15;56120:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56120:30:0;;56092:58;;56166:9;56161:113;56181:15;56177:1;:19;56161:113;;;56232:30;56252:6;56260:1;56232:19;:30::i;:::-;56218:8;56227:1;56218:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;56198:3;;;;:::i;:::-;;;;56161:113;;;-1:-1:-1;56291:8:0;55929:378;-1:-1:-1;;;55929:378:0:o;57987:86::-;4924:6;;-1:-1:-1;;;;;4924:6:0;3655:10;5071:23;5063:68;;;;-1:-1:-1;;;5063:68:0;;;;;;;:::i;:::-;58050:4:::1;:15:::0;57987:86::o;47990:233::-;48065:7;48101:30;47888:10;:17;;47800:113;48101:30;48093:5;:38;48085:95;;;;-1:-1:-1;;;48085:95:0;;18484:2:1;48085:95:0;;;18466:21:1;18523:2;18503:18;;;18496:30;18562:34;18542:18;;;18535:62;-1:-1:-1;;;18613:18:1;;;18606:42;18665:19;;48085:95:0;18282:408:1;48085:95:0;48198:10;48209:5;48198:17;;;;;;;;:::i;:::-;;;;;;;;;48191:24;;47990:233;;;:::o;58079:104::-;4924:6;;-1:-1:-1;;;;;4924:6:0;3655:10;5071:23;5063:68;;;;-1:-1:-1;;;5063:68:0;;;;;;;:::i;:::-;58154:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;58079:104:::0;:::o;57806:103::-;4924:6;;-1:-1:-1;;;;;4924:6:0;3655:10;5071:23;5063:68;;;;-1:-1:-1;;;5063:68:0;;;;;;;:::i;:::-;57879:9:::1;:22:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;57879:22:0;;::::1;::::0;;;::::1;::::0;;57806:103::o;31270:239::-;31342:7;31378:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31378:16:0;31413:19;31405:73;;;;-1:-1:-1;;;31405:73:0;;14629:2:1;31405:73:0;;;14611:21:1;14668:2;14648:18;;;14641:30;14707:34;14687:18;;;14680:62;-1:-1:-1;;;14758:18:1;;;14751:39;14807:19;;31405:73:0;14427:405:1;54284:477:0;54347:8;;;;;;;:13;54339:22;;;;;;54368:14;54401:7;54385:23;;:13;47888:10;:17;;47800:113;54385:13;:23;;;;:::i;:::-;54368:40;;54419:13;54442:7;54435:14;;:4;;:14;;;;:::i;:::-;54478:9;;54419:30;;-1:-1:-1;54478:9:0;;;;;54468:19;;;54460:36;;;;-1:-1:-1;;;54460:36:0;;;;;;17734:2:1;17716:21;;;17773:1;17753:18;;;17746:29;-1:-1:-1;;;17806:2:1;17791:18;;17784:34;17850:2;17835:18;;17532:327;54460:36:0;4924:6;;-1:-1:-1;;;;;4924:6:0;54511:10;:21;54507:89;;54570:5;54557:9;:18;;54549:35;;;;-1:-1:-1;;;54549:35:0;;;;;;17000:2:1;16982:21;;;17039:1;17019:18;;;17012:29;-1:-1:-1;;;17072:2:1;17057:18;;17050:34;17116:2;17101:18;;16798:327;54549:35:0;54618:9;;:19;;;;;;:9;;;;;:19;:::i;:::-;54606:9;;:31;;;;;;;;;;;;;;;;;;54653:9;54648:106;54668:7;54664:11;;:1;:11;54648:106;;;54697:45;54707:10;54729:11;54739:1;54729:11;;;;:::i;:::-;54719:22;;:6;:22;:::i;54697:45::-;54677:3;;;;:::i;:::-;;;;54648:106;;;;54328:433;;54284:477;:::o;31000:208::-;31072:7;-1:-1:-1;;;;;31100:19:0;;31092:74;;;;-1:-1:-1;;;31092:74:0;;14218:2:1;31092:74:0;;;14200:21:1;14257:2;14237:18;;;14230:30;14296:34;14276:18;;;14269:62;-1:-1:-1;;;14347:18:1;;;14340:40;14397:19;;31092:74:0;14016:406:1;31092:74:0;-1:-1:-1;;;;;;31184:16:0;;;;;:9;:16;;;;;;;31000:208::o;5502:103::-;4924:6;;-1:-1:-1;;;;;4924:6:0;3655:10;5071:23;5063:68;;;;-1:-1:-1;;;5063:68:0;;;;;;;:::i;:::-;5567:30:::1;5594:1;5567:18;:30::i;:::-;5502:103::o:0;57915:66::-;4924:6;;-1:-1:-1;;;;;4924:6:0;3655:10;5071:23;5063:68;;;;-1:-1:-1;;;5063:68:0;;;;;;;:::i;:::-;57960:9:::1;:13:::0;;-1:-1:-1;;57960:13:0::1;::::0;;57915:66::o;55481:440::-;55552:8;;;;;;;:13;55544:22;;;;;;55573:14;55606:7;55590:23;;:13;47888:10;:17;;47800:113;55590:13;:23;;;;:::i;:::-;55661:10;55643:29;;;;:17;:29;;;;;;55573:40;;-1:-1:-1;55643:29:0;;;;55632:40;;;;;55624:49;;;;;;55734:10;55716:29;;;;:17;:29;;;;;;:39;;55748:7;;55716:29;;:39;:::i;:::-;55702:10;55684:29;;;;:17;:29;;;;;:71;;-1:-1:-1;;55684:71:0;;;;;;;;55778:9;;:19;;;;;:9;;;;;:19;:::i;:::-;55766:9;;:31;;;;;;;;;;;;;;;;;;55813:9;55808:106;55828:7;55824:11;;:1;:11;55808:106;;;55857:45;55867:10;55889:11;55899:1;55889:11;;;;:::i;55857:45::-;55837:3;;;;:::i;:::-;;;;55808:106;;31745:104;31801:13;31834:7;31827:14;;;;;:::i;33428:155::-;33523:52;3655:10;33556:8;33566;33523:18;:52::i;34551:328::-;34726:41;3655:10;34759:7;34726:18;:41::i;:::-;34718:103;;;;-1:-1:-1;;;34718:103:0;;;;;;;:::i;:::-;34832:39;34846:4;34852:2;34856:7;34865:5;34832:13;:39::i;58317:948::-;4924:6;;-1:-1:-1;;;;;4924:6:0;3655:10;5071:23;5063:68;;;;-1:-1:-1;;;5063:68:0;;;;;;;:::i;:::-;58371:10:::1;58410:4;58384:25;:21;58406:3;58384:25;:::i;:::-;:30;;;;:::i;:::-;58371:43:::0;-1:-1:-1;58425:10:0::1;58464:4;58438:25;:21;58460:3;58438:25;:::i;:::-;:30;;;;:::i;:::-;58425:43:::0;-1:-1:-1;58479:10:0::1;58518:4;58492:25;:21;58514:3;58492:25;:::i;:::-;:30;;;;:::i;:::-;58479:43:::0;-1:-1:-1;58533:10:0::1;58571:4;58546:24;:21;58568:2;58546:24;:::i;:::-;:29;;;;:::i;:::-;58533:42;;58588:74;58614:42;58659:2;58588:17;:74::i;:::-;58673;58699:42;58744:2;58673:17;:74::i;:::-;58758;58784:42;58829:2;58758:17;:74::i;:::-;58843;58869:42;58914:2;58843:17;:74::i;:::-;58928;58954:42;58999:2;58928:17;:74::i;:::-;59013;59039:42;59084:2;59013:17;:74::i;:::-;59098;59124:42;59169:2;59098:17;:74::i;:::-;59183;59209:42;59254:2;59183:17;:74::i;53547:37::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56313:580::-;36454:4;36478:16;;;:7;:16;;;;;;56437:13;;-1:-1:-1;;;;;36478:16:0;56468:113;;;;-1:-1:-1;;;56468:113:0;;16584:2:1;56468:113:0;;;16566:21:1;16623:2;16603:18;;;16596:30;16662:34;16642:18;;;16635:62;-1:-1:-1;;;16713:18:1;;;16706:45;16768:19;;56468:113:0;16382:411:1;56468:113:0;56594:28;56625:10;:8;:10::i;:::-;56594:41;;56693:1;56668:14;56662:28;:32;:223;;;;;;;;;;;;;;;;;56762:14;56795:18;:7;:16;:18::i;:::-;56832:13;56727:133;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56662:223;56646:239;56313:580;-1:-1:-1;;;56313:580:0:o;58189:122::-;4924:6;;-1:-1:-1;;;;;4924:6:0;3655:10;5071:23;5063:68;;;;-1:-1:-1;;;5063:68:0;;;;;;;:::i;:::-;58273:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;56901:255::-:0;4924:6;;-1:-1:-1;;;;;4924:6:0;3655:10;5071:23;5063:68;;;;-1:-1:-1;;;5063:68:0;;;;;;;:::i;:::-;57049:8:::1;57044:105;57067:4;:11;57063:1;:15;;;57044:105;;;57129:5;57135:1;57129:8;;;;;;;;;;:::i;:::-;;;;;;;57100:17;:26;57118:4;57123:1;57118:7;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;57100:26:0::1;-1:-1:-1::0;;;;;57100:26:0::1;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;57080:3;;;;;:::i;:::-;;;;57044:105;;57167:260:::0;4924:6;;-1:-1:-1;;;;;4924:6:0;3655:10;5071:23;5063:68;;;;-1:-1:-1;;;5063:68:0;;;;;;;:::i;:::-;57315:8:::1;57310:106;57333:4;:11;57329:1;:15;;;57310:106;;;57396:5;57402:1;57396:8;;;;;;;;;;:::i;:::-;;;;;;;57366:18;:27;57385:4;57390:1;57385:7;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;57366:27:0::1;-1:-1:-1::0;;;;;57366:27:0::1;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;57346:3;;;;;:::i;:::-;;;;57310:106;;57567:104:::0;4924:6;;-1:-1:-1;;;;;4924:6:0;3655:10;5071:23;5063:68;;;;-1:-1:-1;;;5063:68:0;;;;;;;:::i;:::-;57642:8:::1;:21:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;57642:21:0;;::::1;::::0;;;::::1;::::0;;57567:104::o;5760:201::-;4924:6;;-1:-1:-1;;;;;4924:6:0;3655:10;5071:23;5063:68;;;;-1:-1:-1;;;5063:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5849:22:0;::::1;5841:73;;;::::0;-1:-1:-1;;;5841:73:0;;11072:2:1;5841:73:0::1;::::0;::::1;11054:21:1::0;11111:2;11091:18;;;11084:30;11150:34;11130:18;;;11123:62;-1:-1:-1;;;11201:18:1;;;11194:36;11247:19;;5841:73:0::1;10870:402:1::0;5841:73:0::1;5925:28;5944:8;5925:18;:28::i;47160:224::-:0;47262:4;-1:-1:-1;;;;;;47286:50:0;;-1:-1:-1;;;47286:50:0;;:90;;;47340:36;47364:11;47340:23;:36::i;40371:174::-;40446:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40446:29:0;-1:-1:-1;;;;;40446:29:0;;;;;;;;:24;;40500:23;40446:24;40500:14;:23::i;:::-;-1:-1:-1;;;;;40491:46:0;;;;;;;;;;;40371:174;;:::o;36683:348::-;36776:4;36478:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36478:16:0;36793:73;;;;-1:-1:-1;;;36793:73:0;;13380:2:1;36793:73:0;;;13362:21:1;13419:2;13399:18;;;13392:30;13458:34;13438:18;;;13431:62;-1:-1:-1;;;13509:18:1;;;13502:42;13561:19;;36793:73:0;13178:408:1;36793:73:0;36877:13;36893:23;36908:7;36893:14;:23::i;:::-;36877:39;;36946:5;-1:-1:-1;;;;;36935:16:0;:7;-1:-1:-1;;;;;36935:16:0;;:51;;;;36979:7;-1:-1:-1;;;;;36955:31:0;:20;36967:7;36955:11;:20::i;:::-;-1:-1:-1;;;;;36955:31:0;;36935:51;:87;;;-1:-1:-1;;;;;;33775:25:0;;;33751:4;33775:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36990:32;36927:96;36683:348;-1:-1:-1;;;;36683:348:0:o;39675:578::-;39834:4;-1:-1:-1;;;;;39807:31:0;:23;39822:7;39807:14;:23::i;:::-;-1:-1:-1;;;;;39807:31:0;;39799:85;;;;-1:-1:-1;;;39799:85:0;;16174:2:1;39799:85:0;;;16156:21:1;16213:2;16193:18;;;16186:30;16252:34;16232:18;;;16225:62;-1:-1:-1;;;16303:18:1;;;16296:39;16352:19;;39799:85:0;15972:405:1;39799:85:0;-1:-1:-1;;;;;39903:16:0;;39895:65;;;;-1:-1:-1;;;39895:65:0;;11836:2:1;39895:65:0;;;11818:21:1;11875:2;11855:18;;;11848:30;11914:34;11894:18;;;11887:62;-1:-1:-1;;;11965:18:1;;;11958:34;12009:19;;39895:65:0;11634:400:1;39895:65:0;39973:39;39994:4;40000:2;40004:7;39973:20;:39::i;:::-;40077:29;40094:1;40098:7;40077:8;:29::i;:::-;-1:-1:-1;;;;;40119:15:0;;;;;;:9;:15;;;;;:20;;40138:1;;40119:15;:20;;40138:1;;40119:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40150:13:0;;;;;;:9;:13;;;;;:18;;40167:1;;40150:13;:18;;40167:1;;40150:18;:::i;:::-;;;;-1:-1:-1;;40179:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40179:21:0;-1:-1:-1;;;;;40179:21:0;;;;;;;;;40218:27;;40179:16;;40218:27;;;;;;;39675:578;;;:::o;37373:110::-;37449:26;37459:2;37463:7;37449:26;;;;;;;;;;;;:9;:26::i;6121:191::-;6214:6;;;-1:-1:-1;;;;;6231:17:0;;;-1:-1:-1;;;;;;6231:17:0;;;;;;;6264:40;;6214:6;;;6231:17;6214:6;;6264:40;;6195:16;;6264:40;6184:128;6121:191;:::o;40687:315::-;40842:8;-1:-1:-1;;;;;40833:17:0;:5;-1:-1:-1;;;;;40833:17:0;;;40825:55;;;;-1:-1:-1;;;40825:55:0;;12241:2:1;40825:55:0;;;12223:21:1;12280:2;12260:18;;;12253:30;12319:27;12299:18;;;12292:55;12364:18;;40825:55:0;12039:349:1;40825:55:0;-1:-1:-1;;;;;40891:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;40891:46:0;;;;;;;;;;40953:41;;9763::1;;;40953::0;;9736:18:1;40953:41:0;;;;;;;40687:315;;;:::o;35761:::-;35918:28;35928:4;35934:2;35938:7;35918:9;:28::i;:::-;35965:48;35988:4;35994:2;35998:7;36007:5;35965:22;:48::i;:::-;35957:111;;;;-1:-1:-1;;;35957:111:0;;;;;;;:::i;9492:317::-;9607:6;9582:21;:31;;9574:73;;;;-1:-1:-1;;;9574:73:0;;13022:2:1;9574:73:0;;;13004:21:1;13061:2;13041:18;;;13034:30;13100:31;13080:18;;;13073:59;13149:18;;9574:73:0;12820:353:1;9574:73:0;9661:12;9679:9;-1:-1:-1;;;;;9679:14:0;9701:6;9679:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9660:52;;;9731:7;9723:78;;;;-1:-1:-1;;;9723:78:0;;12595:2:1;9723:78:0;;;12577:21:1;12634:2;12614:18;;;12607:30;12673:34;12653:18;;;12646:62;12744:28;12724:18;;;12717:56;12790:19;;9723:78:0;12393:422:1;54155:108:0;54215:13;54248:7;54241:14;;;;;:::i;19859:723::-;19915:13;20136:10;20132:53;;-1:-1:-1;;20163:10:0;;;;;;;;;;;;-1:-1:-1;;;20163:10:0;;;;;19859:723::o;20132:53::-;20210:5;20195:12;20251:78;20258:9;;20251:78;;20284:8;;;;:::i;:::-;;-1:-1:-1;20307:10:0;;-1:-1:-1;20315:2:0;20307:10;;:::i;:::-;;;20251:78;;;20339:19;20371:6;20361:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20361:17:0;;20339:39;;20389:154;20396:10;;20389:154;;20423:11;20433:1;20423:11;;:::i;:::-;;-1:-1:-1;20492:10:0;20500:2;20492:5;:10;:::i;:::-;20479:24;;:2;:24;:::i;:::-;20466:39;;20449:6;20456;20449:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20449:56:0;;;;;;;;-1:-1:-1;20520:11:0;20529:2;20520:11;;:::i;:::-;;;20389:154;;30631:305;30733:4;-1:-1:-1;;;;;;30770:40:0;;-1:-1:-1;;;30770:40:0;;:105;;-1:-1:-1;;;;;;;30827:48:0;;-1:-1:-1;;;30827:48:0;30770:105;:158;;;-1:-1:-1;;;;;;;;;;23509:40:0;;;30892:36;23400:157;59271:215;59433:45;59460:4;59466:2;59470:7;59433:26;:45::i;37710:321::-;37840:18;37846:2;37850:7;37840:5;:18::i;:::-;37891:54;37922:1;37926:2;37930:7;37939:5;37891:22;:54::i;:::-;37869:154;;;;-1:-1:-1;;;37869:154:0;;;;;;;:::i;41567:799::-;41722:4;-1:-1:-1;;;;;41743:13:0;;8493:20;8541:8;41739:620;;41779:72;;-1:-1:-1;;;41779:72:0;;-1:-1:-1;;;;;41779:36:0;;;;;:72;;3655:10;;41830:4;;41836:7;;41845:5;;41779:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41779:72:0;;;;;;;;-1:-1:-1;;41779:72:0;;;;;;;;;;;;:::i;:::-;;;41775:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42021:13:0;;42017:272;;42064:60;;-1:-1:-1;;;42064:60:0;;;;;;;:::i;42017:272::-;42239:6;42233:13;42224:6;42220:2;42216:15;42209:38;41775:529;-1:-1:-1;;;;;;41902:51:0;-1:-1:-1;;;41902:51:0;;-1:-1:-1;41895:58:0;;41739:620;-1:-1:-1;42343:4:0;41567:799;;;;;;:::o;48836:589::-;-1:-1:-1;;;;;49042:18:0;;49038:187;;49077:40;49109:7;50252:10;:17;;50225:24;;;;:15;:24;;;;;:44;;;50280:24;;;;;;;;;;;;50148:164;49077:40;49038:187;;;49147:2;-1:-1:-1;;;;;49139:10:0;:4;-1:-1:-1;;;;;49139:10:0;;49135:90;;49166:47;49199:4;49205:7;49166:32;:47::i;:::-;-1:-1:-1;;;;;49239:16:0;;49235:183;;49272:45;49309:7;49272:36;:45::i;49235:183::-;49345:4;-1:-1:-1;;;;;49339:10:0;:2;-1:-1:-1;;;;;49339:10:0;;49335:83;;49366:40;49394:2;49398:7;49366:27;:40::i;38367:382::-;-1:-1:-1;;;;;38447:16:0;;38439:61;;;;-1:-1:-1;;;38439:61:0;;15039:2:1;38439:61:0;;;15021:21:1;;;15058:18;;;15051:30;15117:34;15097:18;;;15090:62;15169:18;;38439:61:0;14837:356:1;38439:61:0;36454:4;36478:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36478:16:0;:30;38511:58;;;;-1:-1:-1;;;38511:58:0;;11479:2:1;38511:58:0;;;11461:21:1;11518:2;11498:18;;;11491:30;11557;11537:18;;;11530:58;11605:18;;38511:58:0;11277:352:1;38511:58:0;38582:45;38611:1;38615:2;38619:7;38582:20;:45::i;:::-;-1:-1:-1;;;;;38640:13:0;;;;;;:9;:13;;;;;:18;;38657:1;;38640:13;:18;;38657:1;;38640:18;:::i;:::-;;;;-1:-1:-1;;38669:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38669:21:0;-1:-1:-1;;;;;38669:21:0;;;;;;;;38708:33;;38669:16;;;38708:33;;38669:16;;38708:33;38367:382;;:::o;50939:988::-;51205:22;51255:1;51230:22;51247:4;51230:16;:22::i;:::-;:26;;;;:::i;:::-;51267:18;51288:26;;;:17;:26;;;;;;51205:51;;-1:-1:-1;51421:28:0;;;51417:328;;-1:-1:-1;;;;;51488:18:0;;51466:19;51488:18;;;:12;:18;;;;;;;;:34;;;;;;;;;51539:30;;;;;;:44;;;51656:30;;:17;:30;;;;;:43;;;51417:328;-1:-1:-1;51841:26:0;;;;:17;:26;;;;;;;;51834:33;;;-1:-1:-1;;;;;51885:18:0;;;;;:12;:18;;;;;:34;;;;;;;51878:41;50939:988::o;52222:1079::-;52500:10;:17;52475:22;;52500:21;;52520:1;;52500:21;:::i;:::-;52532:18;52553:24;;;:15;:24;;;;;;52926:10;:26;;52475:46;;-1:-1:-1;52553:24:0;;52475:46;;52926:26;;;;;;:::i;:::-;;;;;;;;;52904:48;;52990:11;52965:10;52976;52965:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;53070:28;;;:15;:28;;;;;;;:41;;;53242:24;;;;;53235:31;53277:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;52293:1008;;;52222:1079;:::o;49726:221::-;49811:14;49828:20;49845:2;49828:16;:20::i;:::-;-1:-1:-1;;;;;49859:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;49904:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;49726:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;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:675::-;655:5;708:3;701:4;693:6;689:17;685:27;675:55;;726:1;723;716:12;675:55;762:6;749:20;788:4;812:60;828:43;868:2;828:43;:::i;:::-;812:60;:::i;:::-;894:3;918:2;913:3;906:15;946:2;941:3;937:12;930:19;;981:2;973:6;969:15;1033:3;1028:2;1022;1019:1;1015:10;1007:6;1003:23;999:32;996:41;993:61;;;1050:1;1047;1040:12;993:61;1072:1;1082:167;1096:2;1093:1;1090:9;1082:167;;;1153:21;1170:3;1153:21;:::i;:::-;1141:34;;1195:12;;;;1227;;;;1114:1;1107:9;1082:167;;;-1:-1:-1;1267:5:1;;603:675;-1:-1:-1;;;;;;;603:675:1:o;1283:156::-;1349:20;;1409:4;1398:16;;1388:27;;1378:55;;1429:1;1426;1419:12;1444:186;1503:6;1556:2;1544:9;1535:7;1531:23;1527:32;1524:52;;;1572:1;1569;1562:12;1524:52;1595:29;1614:9;1595:29;:::i;1635:260::-;1703:6;1711;1764:2;1752:9;1743:7;1739:23;1735:32;1732:52;;;1780:1;1777;1770:12;1732:52;1803:29;1822:9;1803:29;:::i;:::-;1793:39;;1851:38;1885:2;1874:9;1870:18;1851:38;:::i;:::-;1841:48;;1635:260;;;;;:::o;1900:328::-;1977:6;1985;1993;2046:2;2034:9;2025:7;2021:23;2017:32;2014:52;;;2062:1;2059;2052:12;2014:52;2085:29;2104:9;2085:29;:::i;:::-;2075:39;;2133:38;2167:2;2156:9;2152:18;2133:38;:::i;:::-;2123:48;;2218:2;2207:9;2203:18;2190:32;2180:42;;1900:328;;;;;:::o;2233:666::-;2328:6;2336;2344;2352;2405:3;2393:9;2384:7;2380:23;2376:33;2373:53;;;2422:1;2419;2412:12;2373:53;2445:29;2464:9;2445:29;:::i;:::-;2435:39;;2493:38;2527:2;2516:9;2512:18;2493:38;:::i;:::-;2483:48;;2578:2;2567:9;2563:18;2550:32;2540:42;;2633:2;2622:9;2618:18;2605:32;2660:18;2652:6;2649:30;2646:50;;;2692:1;2689;2682:12;2646:50;2715:22;;2768:4;2760:13;;2756:27;-1:-1:-1;2746:55:1;;2797:1;2794;2787:12;2746:55;2820:73;2885:7;2880:2;2867:16;2862:2;2858;2854:11;2820:73;:::i;:::-;2810:83;;;2233:666;;;;;;;:::o;2904:347::-;2969:6;2977;3030:2;3018:9;3009:7;3005:23;3001:32;2998:52;;;3046:1;3043;3036:12;2998:52;3069:29;3088:9;3069:29;:::i;:::-;3059:39;;3148:2;3137:9;3133:18;3120:32;3195:5;3188:13;3181:21;3174:5;3171:32;3161:60;;3217:1;3214;3207:12;3161:60;3240:5;3230:15;;;2904:347;;;;;:::o;3256:254::-;3324:6;3332;3385:2;3373:9;3364:7;3360:23;3356:32;3353:52;;;3401:1;3398;3391:12;3353:52;3424:29;3443:9;3424:29;:::i;:::-;3414:39;3500:2;3485:18;;;;3472:32;;-1:-1:-1;;;3256:254:1:o;3515:1153::-;3631:6;3639;3692:2;3680:9;3671:7;3667:23;3663:32;3660:52;;;3708:1;3705;3698:12;3660:52;3748:9;3735:23;3777:18;3818:2;3810:6;3807:14;3804:34;;;3834:1;3831;3824:12;3804:34;3872:6;3861:9;3857:22;3847:32;;3917:7;3910:4;3906:2;3902:13;3898:27;3888:55;;3939:1;3936;3929:12;3888:55;3975:2;3962:16;3997:4;4021:60;4037:43;4077:2;4037:43;:::i;4021:60::-;4103:3;4127:2;4122:3;4115:15;4155:2;4150:3;4146:12;4139:19;;4186:2;4182;4178:11;4234:7;4229:2;4223;4220:1;4216:10;4212:2;4208:19;4204:28;4201:41;4198:61;;;4255:1;4252;4245:12;4198:61;4277:1;4268:10;;4287:169;4301:2;4298:1;4295:9;4287:169;;;4358:23;4377:3;4358:23;:::i;:::-;4346:36;;4319:1;4312:9;;;;;4402:12;;;;4434;;4287:169;;;-1:-1:-1;4475:5:1;-1:-1:-1;;4518:18:1;;4505:32;;-1:-1:-1;;4549:16:1;;;4546:36;;;4578:1;4575;4568:12;4546:36;;4601:61;4654:7;4643:8;4632:9;4628:24;4601:61;:::i;:::-;4591:71;;;3515:1153;;;;;:::o;4673:245::-;4731:6;4784:2;4772:9;4763:7;4759:23;4755:32;4752:52;;;4800:1;4797;4790:12;4752:52;4839:9;4826:23;4858:30;4882:5;4858:30;:::i;4923:249::-;4992:6;5045:2;5033:9;5024:7;5020:23;5016:32;5013:52;;;5061:1;5058;5051:12;5013:52;5093:9;5087:16;5112:30;5136:5;5112:30;:::i;5177:450::-;5246:6;5299:2;5287:9;5278:7;5274:23;5270:32;5267:52;;;5315:1;5312;5305:12;5267:52;5355:9;5342:23;5388:18;5380:6;5377:30;5374:50;;;5420:1;5417;5410:12;5374:50;5443:22;;5496:4;5488:13;;5484:27;-1:-1:-1;5474:55:1;;5525:1;5522;5515:12;5474:55;5548:73;5613:7;5608:2;5595:16;5590:2;5586;5582:11;5548:73;:::i;5632:272::-;5690:6;5743:2;5731:9;5722:7;5718:23;5714:32;5711:52;;;5759:1;5756;5749:12;5711:52;5798:9;5785:23;5848:6;5841:5;5837:18;5830:5;5827:29;5817:57;;5870:1;5867;5860:12;5909:180;5968:6;6021:2;6009:9;6000:7;5996:23;5992:32;5989:52;;;6037:1;6034;6027:12;5989:52;-1:-1:-1;6060:23:1;;5909:180;-1:-1:-1;5909:180:1:o;6094:182::-;6151:6;6204:2;6192:9;6183:7;6179:23;6175:32;6172:52;;;6220:1;6217;6210:12;6172:52;6243:27;6260:9;6243:27;:::i;6281:257::-;6322:3;6360:5;6354:12;6387:6;6382:3;6375:19;6403:63;6459:6;6452:4;6447:3;6443:14;6436:4;6429:5;6425:16;6403:63;:::i;:::-;6520:2;6499:15;-1:-1:-1;;6495:29:1;6486:39;;;;6527:4;6482:50;;6281:257;-1:-1:-1;;6281:257:1:o;6543:1527::-;6767:3;6805:6;6799:13;6831:4;6844:51;6888:6;6883:3;6878:2;6870:6;6866:15;6844:51;:::i;:::-;6958:13;;6917:16;;;;6980:55;6958:13;6917:16;7002:15;;;6980:55;:::i;:::-;7124:13;;7057:20;;;7097:1;;7184;7206:18;;;;7259;;;;7286:93;;7364:4;7354:8;7350:19;7338:31;;7286:93;7427:2;7417:8;7414:16;7394:18;7391:40;7388:167;;;-1:-1:-1;;;7454:33:1;;7510:4;7507:1;7500:15;7540:4;7461:3;7528:17;7388:167;7571:18;7598:110;;;;7722:1;7717:328;;;;7564:481;;7598:110;-1:-1:-1;;7633:24:1;;7619:39;;7678:20;;;;-1:-1:-1;7598:110:1;;7717:328;19800:1;19793:14;;;19837:4;19824:18;;7812:1;7826:169;7840:8;7837:1;7834:15;7826:169;;;7922:14;;7907:13;;;7900:37;7965:16;;;;7857:10;;7826:169;;;7830:3;;8026:8;8019:5;8015:20;8008:27;;7564:481;-1:-1:-1;8061:3:1;;6543:1527;-1:-1:-1;;;;;;;;;;;6543:1527:1:o;8493:488::-;-1:-1:-1;;;;;8762:15:1;;;8744:34;;8814:15;;8809:2;8794:18;;8787:43;8861:2;8846:18;;8839:34;;;8909:3;8904:2;8889:18;;8882:31;;;8687:4;;8930:45;;8955:19;;8947:6;8930:45;:::i;:::-;8922:53;8493:488;-1:-1:-1;;;;;;8493:488:1:o;8986:632::-;9157:2;9209:21;;;9279:13;;9182:18;;;9301:22;;;9128:4;;9157:2;9380:15;;;;9354:2;9339:18;;;9128:4;9423:169;9437:6;9434:1;9431:13;9423:169;;;9498:13;;9486:26;;9567:15;;;;9532:12;;;;9459:1;9452:9;9423:169;;;-1:-1:-1;9609:3:1;;8986:632;-1:-1:-1;;;;;;8986:632:1:o;9815:219::-;9964:2;9953:9;9946:21;9927:4;9984:44;10024:2;10013:9;10009:18;10001:6;9984:44;:::i;10451:414::-;10653:2;10635:21;;;10692:2;10672:18;;;10665:30;10731:34;10726:2;10711:18;;10704:62;-1:-1:-1;;;10797:2:1;10782:18;;10775:48;10855:3;10840:19;;10451:414::o;15611:356::-;15813:2;15795:21;;;15832:18;;;15825:30;15891:34;15886:2;15871:18;;15864:62;15958:2;15943:18;;15611:356::o;17864:413::-;18066:2;18048:21;;;18105:2;18085:18;;;18078:30;18144:34;18139:2;18124:18;;18117:62;-1:-1:-1;;;18210:2:1;18195:18;;18188:47;18267:3;18252:19;;17864:413::o;19259:275::-;19330:2;19324:9;19395:2;19376:13;;-1:-1:-1;;19372:27:1;19360:40;;19430:18;19415:34;;19451:22;;;19412:62;19409:88;;;19477:18;;:::i;:::-;19513:2;19506:22;19259:275;;-1:-1:-1;19259:275:1:o;19539:183::-;19599:4;19632:18;19624:6;19621:30;19618:56;;;19654:18;;:::i;:::-;-1:-1:-1;19699:1:1;19695:14;19711:4;19691:25;;19539:183::o;19853:128::-;19893:3;19924:1;19920:6;19917:1;19914:13;19911:39;;;19930:18;;:::i;:::-;-1:-1:-1;19966:9:1;;19853:128::o;19986:120::-;20026:1;20052;20042:35;;20057:18;;:::i;:::-;-1:-1:-1;20091:9:1;;19986:120::o;20111:168::-;20151:7;20217:1;20213;20209:6;20205:14;20202:1;20199:21;20194:1;20187:9;20180:17;20176:45;20173:71;;;20224:18;;:::i;:::-;-1:-1:-1;20264:9:1;;20111:168::o;20284:217::-;20323:4;20352:6;20408:10;;;;20378;;20430:12;;;20427:38;;;20445:18;;:::i;:::-;20482:13;;20284:217;-1:-1:-1;;;20284:217:1:o;20506:125::-;20546:4;20574:1;20571;20568:8;20565:34;;;20579:18;;:::i;:::-;-1:-1:-1;20616:9:1;;20506:125::o;20636:195::-;20674:4;20711;20708:1;20704:12;20743:4;20740:1;20736:12;20768:3;20763;20760:12;20757:38;;;20775:18;;:::i;:::-;20812:13;;;20636:195;-1:-1:-1;;;20636:195:1:o;20836:258::-;20908:1;20918:113;20932:6;20929:1;20926:13;20918:113;;;21008:11;;;21002:18;20989:11;;;20982:39;20954:2;20947:10;20918:113;;;21049:6;21046:1;21043:13;21040:48;;;-1:-1:-1;;21084:1:1;21066:16;;21059:27;20836:258::o;21099:380::-;21178:1;21174:12;;;;21221;;;21242:61;;21296:4;21288:6;21284:17;21274:27;;21242:61;21349:2;21341:6;21338:14;21318:18;21315:38;21312:161;;;21395:10;21390:3;21386:20;21383:1;21376:31;21430:4;21427:1;21420:15;21458:4;21455:1;21448:15;21312:161;;21099:380;;;:::o;21484:197::-;21522:3;21550:6;21591:2;21584:5;21580:14;21618:2;21609:7;21606:15;21603:41;;;21624:18;;:::i;:::-;21673:1;21660:15;;21484:197;-1:-1:-1;;;21484:197:1:o;21686:135::-;21725:3;-1:-1:-1;;21746:17:1;;21743:43;;;21766:18;;:::i;:::-;-1:-1:-1;21813:1:1;21802:13;;21686:135::o;21826:112::-;21858:1;21884;21874:35;;21889:18;;:::i;:::-;-1:-1:-1;21923:9:1;;21826:112::o;21943:127::-;22004:10;21999:3;21995:20;21992:1;21985:31;22035:4;22032:1;22025:15;22059:4;22056:1;22049:15;22075:127;22136:10;22131:3;22127:20;22124:1;22117:31;22167:4;22164:1;22157:15;22191:4;22188:1;22181:15;22207:127;22268:10;22263:3;22259:20;22256:1;22249:31;22299:4;22296:1;22289:15;22323:4;22320:1;22313:15;22339:127;22400:10;22395:3;22391:20;22388:1;22381:31;22431:4;22428:1;22421:15;22455:4;22452:1;22445:15;22471:127;22532:10;22527:3;22523:20;22520:1;22513:31;22563:4;22560:1;22553:15;22587:4;22584:1;22577:15;22603:131;-1:-1:-1;;;;;;22677:32:1;;22667:43;;22657:71;;22724:1;22721;22714:12

Swarm Source

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