ETH Price: $3,457.37 (-0.74%)
Gas: 3 Gwei

Token

AlienDood (AD)
 

Overview

Max Total Supply

1,150 AD

Holders

349

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 AD
0x9f432a2964351a7830bd9ea10f65107677d73e04
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:
AlienDood

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-01-13
*/

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b > a) return (false, 0);
        return (true, a - b);
    }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b <= a, errorMessage);
        return a - b;
    }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a / b;
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a % b;
    }
    }
}



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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
    unchecked {
        counter._value += 1;
    }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
    unchecked {
        counter._value = value - 1;
    }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}



// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}



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



// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;


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



// 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;
    }
}



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



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



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



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



// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
    external
    view
    returns (address receiver, uint256 royaltyAmount);
}



// 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;
    }
}



// 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;
}



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



// 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 {}
}


//SPDX-License-Identifier: MIT
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity ^0.8.0;

contract AlienDood is ERC721, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    bool private isOpenSeaProxyActive = true;

    string baseURI;
    string public UnrevealedURI;

    uint256 public constant MAX_SUPPLY = 3333;
    uint256 public constant MAX_MINTS_PER_TX = 5;
    uint256 public constant PUBLIC_MINT_PRICE = 0.025 ether;
    uint256 public constant MAX_FREE_MINTS = 888;

    bool public isPublicSaleActive = false;
    bool public isRevealed = false;

    // ============ ACCESS CHECKS ============

    modifier publicSaleActive() {
        require(isPublicSaleActive, "Public sale has not started");
        _;
    }

    modifier maxMintsPerTX(uint256 numberOfTokens) {
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Reached max mints per transaction"
        );
        _;
    }

    modifier canMintNFTs(uint256 numberOfTokens) {
        require(
            tokenCounter.current() + numberOfTokens <=
            MAX_SUPPLY,
            "Sold out"
        );
        _;
    }

    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        if (tokenCounter.current() > MAX_FREE_MINTS) {
            require(
                (price * numberOfTokens) == msg.value,
                "Incorrect ETH value sent"
            );
        }
        _;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initUnrevealedUri
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setUnrevealedURI(_initUnrevealedUri);
    }

    // ============ MINTING FUNCTION ============

    function mint(uint256 numberOfTokens)
    external
    payable
    nonReentrant
    isCorrectPayment(PUBLIC_MINT_PRICE, numberOfTokens)
    publicSaleActive
    canMintNFTs(numberOfTokens)
    maxMintsPerTX(numberOfTokens) {
        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, nextTokenId());
        }
    }

    // ============ INTERNAL FUNCTION  ============

    function getBaseURI() internal view virtual returns (string memory) {
        return baseURI;
    }

    // ============ PUBLIC READ-ONLY FUNCTIONS ============


    function getLastTokenId() external view returns (uint256) {
        return tokenCounter.current();
    }

    function totalSupply() external view returns (uint256) {
        return tokenCounter.current();
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============

    // function to disable gasless listings for security in case
    // opensea ever shuts down or is compromised
    function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive) external onlyOwner {
        isOpenSeaProxyActive = _isOpenSeaProxyActive;
    }

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

    function setUnrevealedURI(string memory _UnrevealedURI) public onlyOwner {
        UnrevealedURI = _UnrevealedURI;
    }

    function reveal(bool _reveal) public onlyOwner {
        isRevealed = _reveal;
    }

    function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner {
        isPublicSaleActive = _isPublicSaleActive;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdrawTokens(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }

    // ============ SUPPORTING FUNCTIONS ============

    function nextTokenId() private returns (uint256) {
        tokenCounter.increment();
        return tokenCounter.current();
    }

    // ============ FUNCTION OVERRIDES ============

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, IERC165) returns (bool){
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator) public view override returns (bool) {
        // Get a reference to OpenSea's proxy registry contract by instantiating
        // the contract using the already existing address.
        ProxyRegistry proxyRegistry = ProxyRegistry(openSeaProxyRegistryAddress);

        if (isOpenSeaProxyActive && address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "Token does not exist");

        if (isRevealed == false) {
            return UnrevealedURI;
        }

        return string(abi.encodePacked(baseURI, "/", tokenId.toString(), ".json"));
    }

    /**
   * @dev See {IERC165-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
    external
    view
    override
    returns (address receiver, uint256 royaltyAmount) {
        require(_exists(tokenId), "Token does not exist");
        return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
    }

}

// These contract definitions are used to create a reference to the OpenSea
// ProxyRegistry contract by using the registry's address (see isApprovedForAll).
contract OwnableDelegateProxy {

}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initUnrevealedUri","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"},{"inputs":[],"name":"MAX_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UnrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_UnrevealedURI","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600980546001600160a81b0319167401a5409ec958c83c3f309868babaca7c86dcb077c1179055600c805461ffff191690553480156200004357600080fd5b506040516200276c3803806200276c83398101604081905262000066916200034d565b8351849084906200007f906000906020850190620001f0565b50805162000095906001906020840190620001f0565b505050620000b2620000ac620000d760201b60201c565b620000db565b6001600755620000c2826200012d565b620000cd8162000195565b5050505062000459565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b031633146200017c5760405162461bcd60e51b815260206004820181905260248201526000805160206200274c83398151915260448201526064015b60405180910390fd5b80516200019190600a906020840190620001f0565b5050565b6006546001600160a01b03163314620001e05760405162461bcd60e51b815260206004820181905260248201526000805160206200274c833981519152604482015260640162000173565b80516200019190600b9060208401905b828054620001fe9062000406565b90600052602060002090601f0160209004810192826200022257600085556200026d565b82601f106200023d57805160ff19168380011785556200026d565b828001600101855582156200026d579182015b828111156200026d57825182559160200191906001019062000250565b506200027b9291506200027f565b5090565b5b808211156200027b576000815560010162000280565b600082601f830112620002a857600080fd5b81516001600160401b0380821115620002c557620002c562000443565b604051601f8301601f19908116603f01168101908282118183101715620002f057620002f062000443565b816040528381526020925086838588010111156200030d57600080fd5b600091505b8382101562000331578582018301518183018401529082019062000312565b83821115620003435760008385830101525b9695505050505050565b600080600080608085870312156200036457600080fd5b84516001600160401b03808211156200037c57600080fd5b6200038a8883890162000296565b95506020870151915080821115620003a157600080fd5b620003af8883890162000296565b94506040870151915080821115620003c657600080fd5b620003d48883890162000296565b93506060870151915080821115620003eb57600080fd5b50620003fa8782880162000296565b91505092959194509250565b600181811c908216806200041b57607f821691505b602082108114156200043d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6122e380620004696000396000f3fe6080604052600436106101f95760003560e01c80636bde26271161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461056b578063e43082f71461058b578063e985e9c5146105ab578063f2fde38b146105cb578063fe2c7fee146105eb57600080fd5b8063a22cb46514610500578063b88d4fde14610520578063c6a91b4214610540578063c7a6b21e1461055557600080fd5b80638da5cb5b116100dc5780638da5cb5b1461049a578063940cd05b146104b857806395d89b41146104d8578063a0712d68146104ed57600080fd5b80636bde26271461044a57806370a0823114610465578063715018a61461048557806383c4c00d146102c457600080fd5b806328cad13d1161019057806342842e0e1161015f57806342842e0e146103ab57806349df728c146103cb57806354214f69146103eb57806355f804b31461040a5780636352211e1461042a57600080fd5b806328cad13d146103215780632a55205a1461034157806332cb6b0c146103805780633ccfd60b1461039657600080fd5b8063095ea7b3116101cc578063095ea7b3146102a257806318160ddd146102c45780631e84c413146102e757806323b872dd1461030157600080fd5b806301ffc9a7146101fe578063059705231461023357806306fdde0314610255578063081812fc1461026a575b600080fd5b34801561020a57600080fd5b5061021e610219366004611df5565b61060b565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610636565b60405161022a9190612039565b34801561026157600080fd5b506102486106c4565b34801561027657600080fd5b5061028a610285366004611e95565b610756565b6040516001600160a01b03909116815260200161022a565b3480156102ae57600080fd5b506102c26102bd366004611d8f565b6107f0565b005b3480156102d057600080fd5b506102d9610906565b60405190815260200161022a565b3480156102f357600080fd5b50600c5461021e9060ff1681565b34801561030d57600080fd5b506102c261031c366004611ca0565b610916565b34801561032d57600080fd5b506102c261033c366004611dbb565b610947565b34801561034d57600080fd5b5061036161035c366004611ec7565b610984565b604080516001600160a01b03909316835260208301919091520161022a565b34801561038c57600080fd5b506102d9610d0581565b3480156103a257600080fd5b506102c2610a02565b3480156103b757600080fd5b506102c26103c6366004611ca0565b610a5f565b3480156103d757600080fd5b506102c26103e6366004611c4a565b610a7a565b3480156103f757600080fd5b50600c5461021e90610100900460ff1681565b34801561041657600080fd5b506102c2610425366004611e4c565b610ba1565b34801561043657600080fd5b5061028a610445366004611e95565b610bde565b34801561045657600080fd5b506102d96658d15e1762800081565b34801561047157600080fd5b506102d9610480366004611c4a565b610c55565b34801561049157600080fd5b506102c2610cdc565b3480156104a657600080fd5b506006546001600160a01b031661028a565b3480156104c457600080fd5b506102c26104d3366004611dbb565b610d12565b3480156104e457600080fd5b50610248610d56565b6102c26104fb366004611e95565b610d65565b34801561050c57600080fd5b506102c261051b366004611d61565b610f6a565b34801561052c57600080fd5b506102c261053b366004611ce1565b610f75565b34801561054c57600080fd5b506102d9600581565b34801561056157600080fd5b506102d961037881565b34801561057757600080fd5b50610248610586366004611e95565b610fad565b34801561059757600080fd5b506102c26105a6366004611dbb565b6110de565b3480156105b757600080fd5b5061021e6105c6366004611c67565b611126565b3480156105d757600080fd5b506102c26105e6366004611c4a565b611212565b3480156105f757600080fd5b506102c2610606366004611e4c565b6112ad565b60006001600160e01b0319821663152a902d60e11b14806106305750610630826112ea565b92915050565b600b8054610643906121b2565b80601f016020809104026020016040519081016040528092919081815260200182805461066f906121b2565b80156106bc5780601f10610691576101008083540402835291602001916106bc565b820191906000526020600020905b81548152906001019060200180831161069f57829003601f168201915b505050505081565b6060600080546106d3906121b2565b80601f01602080910402602001604051908101604052809291908181526020018280546106ff906121b2565b801561074c5780601f106107215761010080835404028352916020019161074c565b820191906000526020600020905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107d45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107fb82610bde565b9050806001600160a01b0316836001600160a01b031614156108695760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107cb565b336001600160a01b038216148061088557506108858133611126565b6108f75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107cb565b610901838361133a565b505050565b600061091160085490565b905090565b61092033826113a8565b61093c5760405162461bcd60e51b81526004016107cb906120d3565b610901838383611477565b6006546001600160a01b031633146109715760405162461bcd60e51b81526004016107cb9061209e565b600c805460ff1916911515919091179055565b60008281526002602052604081205481906001600160a01b03166109e15760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016107cb565b306109f76109f0856005611617565b606461162a565b915091509250929050565b6006546001600160a01b03163314610a2c5760405162461bcd60e51b81526004016107cb9061209e565b6040514790339082156108fc029083906000818181858888f19350505050158015610a5b573d6000803e3d6000fd5b5050565b61090183838360405180602001604052806000815250610f75565b6006546001600160a01b03163314610aa45760405162461bcd60e51b81526004016107cb9061209e565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610ae657600080fd5b505afa158015610afa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1e9190611eae565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb90604401602060405180830381600087803b158015610b6957600080fd5b505af1158015610b7d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109019190611dd8565b6006546001600160a01b03163314610bcb5760405162461bcd60e51b81526004016107cb9061209e565b8051610a5b90600a906020840190611b3b565b6000818152600260205260408120546001600160a01b0316806106305760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107cb565b60006001600160a01b038216610cc05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107cb565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d065760405162461bcd60e51b81526004016107cb9061209e565b610d106000611636565b565b6006546001600160a01b03163314610d3c5760405162461bcd60e51b81526004016107cb9061209e565b600c80549115156101000261ff0019909216919091179055565b6060600180546106d3906121b2565b60026007541415610db85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107cb565b60026007556658d15e1762800081610378610dd260085490565b1115610e305734610de38284612150565b14610e305760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016107cb565b600c5460ff16610e825760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f742073746172746564000000000060448201526064016107cb565b82610d0581610e9060085490565b610e9a9190612124565b1115610ed35760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b60448201526064016107cb565b836005811115610f2f5760405162461bcd60e51b815260206004820152602160248201527f52656163686564206d6178206d696e747320706572207472616e73616374696f6044820152603760f91b60648201526084016107cb565b60005b85811015610f5d57610f4b33610f46611688565b61169f565b80610f55816121ed565b915050610f32565b5050600160075550505050565b610a5b3383836116b9565b610f7f33836113a8565b610f9b5760405162461bcd60e51b81526004016107cb906120d3565b610fa784848484611788565b50505050565b6000818152600260205260409020546060906001600160a01b031661100b5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016107cb565b600c54610100900460ff166110ac57600b8054611027906121b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611053906121b2565b80156110a05780601f10611075576101008083540402835291602001916110a0565b820191906000526020600020905b81548152906001019060200180831161108357829003601f168201915b50505050509050919050565b600a6110b7836117bb565b6040516020016110c8929190611f31565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146111085760405162461bcd60e51b81526004016107cb9061209e565b60098054911515600160a01b0260ff60a01b19909216919091179055565b6009546000906001600160a01b03811690600160a01b900460ff1680156111d1575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b15801561118e57600080fd5b505afa1580156111a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c69190611e2f565b6001600160a01b0316145b156111e0576001915050610630565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b0316331461123c5760405162461bcd60e51b81526004016107cb9061209e565b6001600160a01b0381166112a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cb565b6112aa81611636565b50565b6006546001600160a01b031633146112d75760405162461bcd60e51b81526004016107cb9061209e565b8051610a5b90600b906020840190611b3b565b60006001600160e01b031982166380ac58cd60e01b148061131b57506001600160e01b03198216635b5e139f60e01b145b8061063057506301ffc9a760e01b6001600160e01b0319831614610630565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061136f82610bde565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114215760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107cb565b600061142c83610bde565b9050806001600160a01b0316846001600160a01b031614806114675750836001600160a01b031661145c84610756565b6001600160a01b0316145b8061120a575061120a8185611126565b826001600160a01b031661148a82610bde565b6001600160a01b0316146114f25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107cb565b6001600160a01b0382166115545760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107cb565b61155f60008261133a565b6001600160a01b038316600090815260036020526040812080546001929061158890849061216f565b90915550506001600160a01b03821660009081526003602052604081208054600192906115b6908490612124565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006116238284612150565b9392505050565b6000611623828461213c565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611698600880546001019055565b5060085490565b610a5b8282604051806020016040528060008152506118b9565b816001600160a01b0316836001600160a01b0316141561171b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107cb565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611793848484611477565b61179f848484846118ec565b610fa75760405162461bcd60e51b81526004016107cb9061204c565b6060816117df5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561180957806117f3816121ed565b91506118029050600a8361213c565b91506117e3565b60008167ffffffffffffffff8111156118245761182461225e565b6040519080825280601f01601f19166020018201604052801561184e576020820181803683370190505b5090505b841561120a5761186360018361216f565b9150611870600a86612208565b61187b906030612124565b60f81b81838151811061189057611890612248565b60200101906001600160f81b031916908160001a9053506118b2600a8661213c565b9450611852565b6118c383836119f9565b6118d060008484846118ec565b6109015760405162461bcd60e51b81526004016107cb9061204c565b60006001600160a01b0384163b156119ee57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611930903390899088908890600401611ffc565b602060405180830381600087803b15801561194a57600080fd5b505af192505050801561197a575060408051601f3d908101601f1916820190925261197791810190611e12565b60015b6119d4573d8080156119a8576040519150601f19603f3d011682016040523d82523d6000602084013e6119ad565b606091505b5080516119cc5760405162461bcd60e51b81526004016107cb9061204c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061120a565b506001949350505050565b6001600160a01b038216611a4f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107cb565b6000818152600260205260409020546001600160a01b031615611ab45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107cb565b6001600160a01b0382166000908152600360205260408120805460019290611add908490612124565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b47906121b2565b90600052602060002090601f016020900481019282611b695760008555611baf565b82601f10611b8257805160ff1916838001178555611baf565b82800160010185558215611baf579182015b82811115611baf578251825591602001919060010190611b94565b50611bbb929150611bbf565b5090565b5b80821115611bbb5760008155600101611bc0565b600067ffffffffffffffff80841115611bef57611bef61225e565b604051601f8501601f19908116603f01168101908282118183101715611c1757611c1761225e565b81604052809350858152868686011115611c3057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c5c57600080fd5b813561162381612274565b60008060408385031215611c7a57600080fd5b8235611c8581612274565b91506020830135611c9581612274565b809150509250929050565b600080600060608486031215611cb557600080fd5b8335611cc081612274565b92506020840135611cd081612274565b929592945050506040919091013590565b60008060008060808587031215611cf757600080fd5b8435611d0281612274565b93506020850135611d1281612274565b925060408501359150606085013567ffffffffffffffff811115611d3557600080fd5b8501601f81018713611d4657600080fd5b611d5587823560208401611bd4565b91505092959194509250565b60008060408385031215611d7457600080fd5b8235611d7f81612274565b91506020830135611c9581612289565b60008060408385031215611da257600080fd5b8235611dad81612274565b946020939093013593505050565b600060208284031215611dcd57600080fd5b813561162381612289565b600060208284031215611dea57600080fd5b815161162381612289565b600060208284031215611e0757600080fd5b813561162381612297565b600060208284031215611e2457600080fd5b815161162381612297565b600060208284031215611e4157600080fd5b815161162381612274565b600060208284031215611e5e57600080fd5b813567ffffffffffffffff811115611e7557600080fd5b8201601f81018413611e8657600080fd5b61120a84823560208401611bd4565b600060208284031215611ea757600080fd5b5035919050565b600060208284031215611ec057600080fd5b5051919050565b60008060408385031215611eda57600080fd5b50508035926020909101359150565b60008151808452611f01816020860160208601612186565b601f01601f19169290920160200192915050565b60008151611f27818560208601612186565b9290920192915050565b600080845481600182811c915080831680611f4d57607f831692505b6020808410821415611f6d57634e487b7160e01b86526022600452602486fd5b818015611f815760018114611f9257611fbf565b60ff19861689528489019650611fbf565b60008b81526020902060005b86811015611fb75781548b820152908501908301611f9e565b505084890196505b505050505050611ff3611fe2611fdc83602f60f81b815260010190565b86611f15565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061202f90830184611ee9565b9695505050505050565b6020815260006116236020830184611ee9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121375761213761221c565b500190565b60008261214b5761214b612232565b500490565b600081600019048311821515161561216a5761216a61221c565b500290565b6000828210156121815761218161221c565b500390565b60005b838110156121a1578181015183820152602001612189565b83811115610fa75750506000910152565b600181811c908216806121c657607f821691505b602082108114156121e757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122015761220161221c565b5060010190565b60008261221757612217612232565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112aa57600080fd5b80151581146112aa57600080fd5b6001600160e01b0319811681146112aa57600080fdfea26469706673582212206c8076f5a2ea6471ac91ebd903cdbdf38bfc978b68ead0f1cf4b0617bf03d0be64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000009416c69656e446f6f640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000241440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50597a596a4b6f37637a4e67354e734437336642556f585178644b3444724c627675355968567868364e466b2f000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d644b445651614b625873674a71506335684d7955633769786964686d6d725575434e4c643741424d4444684e2f756e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636bde26271161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461056b578063e43082f71461058b578063e985e9c5146105ab578063f2fde38b146105cb578063fe2c7fee146105eb57600080fd5b8063a22cb46514610500578063b88d4fde14610520578063c6a91b4214610540578063c7a6b21e1461055557600080fd5b80638da5cb5b116100dc5780638da5cb5b1461049a578063940cd05b146104b857806395d89b41146104d8578063a0712d68146104ed57600080fd5b80636bde26271461044a57806370a0823114610465578063715018a61461048557806383c4c00d146102c457600080fd5b806328cad13d1161019057806342842e0e1161015f57806342842e0e146103ab57806349df728c146103cb57806354214f69146103eb57806355f804b31461040a5780636352211e1461042a57600080fd5b806328cad13d146103215780632a55205a1461034157806332cb6b0c146103805780633ccfd60b1461039657600080fd5b8063095ea7b3116101cc578063095ea7b3146102a257806318160ddd146102c45780631e84c413146102e757806323b872dd1461030157600080fd5b806301ffc9a7146101fe578063059705231461023357806306fdde0314610255578063081812fc1461026a575b600080fd5b34801561020a57600080fd5b5061021e610219366004611df5565b61060b565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610636565b60405161022a9190612039565b34801561026157600080fd5b506102486106c4565b34801561027657600080fd5b5061028a610285366004611e95565b610756565b6040516001600160a01b03909116815260200161022a565b3480156102ae57600080fd5b506102c26102bd366004611d8f565b6107f0565b005b3480156102d057600080fd5b506102d9610906565b60405190815260200161022a565b3480156102f357600080fd5b50600c5461021e9060ff1681565b34801561030d57600080fd5b506102c261031c366004611ca0565b610916565b34801561032d57600080fd5b506102c261033c366004611dbb565b610947565b34801561034d57600080fd5b5061036161035c366004611ec7565b610984565b604080516001600160a01b03909316835260208301919091520161022a565b34801561038c57600080fd5b506102d9610d0581565b3480156103a257600080fd5b506102c2610a02565b3480156103b757600080fd5b506102c26103c6366004611ca0565b610a5f565b3480156103d757600080fd5b506102c26103e6366004611c4a565b610a7a565b3480156103f757600080fd5b50600c5461021e90610100900460ff1681565b34801561041657600080fd5b506102c2610425366004611e4c565b610ba1565b34801561043657600080fd5b5061028a610445366004611e95565b610bde565b34801561045657600080fd5b506102d96658d15e1762800081565b34801561047157600080fd5b506102d9610480366004611c4a565b610c55565b34801561049157600080fd5b506102c2610cdc565b3480156104a657600080fd5b506006546001600160a01b031661028a565b3480156104c457600080fd5b506102c26104d3366004611dbb565b610d12565b3480156104e457600080fd5b50610248610d56565b6102c26104fb366004611e95565b610d65565b34801561050c57600080fd5b506102c261051b366004611d61565b610f6a565b34801561052c57600080fd5b506102c261053b366004611ce1565b610f75565b34801561054c57600080fd5b506102d9600581565b34801561056157600080fd5b506102d961037881565b34801561057757600080fd5b50610248610586366004611e95565b610fad565b34801561059757600080fd5b506102c26105a6366004611dbb565b6110de565b3480156105b757600080fd5b5061021e6105c6366004611c67565b611126565b3480156105d757600080fd5b506102c26105e6366004611c4a565b611212565b3480156105f757600080fd5b506102c2610606366004611e4c565b6112ad565b60006001600160e01b0319821663152a902d60e11b14806106305750610630826112ea565b92915050565b600b8054610643906121b2565b80601f016020809104026020016040519081016040528092919081815260200182805461066f906121b2565b80156106bc5780601f10610691576101008083540402835291602001916106bc565b820191906000526020600020905b81548152906001019060200180831161069f57829003601f168201915b505050505081565b6060600080546106d3906121b2565b80601f01602080910402602001604051908101604052809291908181526020018280546106ff906121b2565b801561074c5780601f106107215761010080835404028352916020019161074c565b820191906000526020600020905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107d45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107fb82610bde565b9050806001600160a01b0316836001600160a01b031614156108695760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107cb565b336001600160a01b038216148061088557506108858133611126565b6108f75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107cb565b610901838361133a565b505050565b600061091160085490565b905090565b61092033826113a8565b61093c5760405162461bcd60e51b81526004016107cb906120d3565b610901838383611477565b6006546001600160a01b031633146109715760405162461bcd60e51b81526004016107cb9061209e565b600c805460ff1916911515919091179055565b60008281526002602052604081205481906001600160a01b03166109e15760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016107cb565b306109f76109f0856005611617565b606461162a565b915091509250929050565b6006546001600160a01b03163314610a2c5760405162461bcd60e51b81526004016107cb9061209e565b6040514790339082156108fc029083906000818181858888f19350505050158015610a5b573d6000803e3d6000fd5b5050565b61090183838360405180602001604052806000815250610f75565b6006546001600160a01b03163314610aa45760405162461bcd60e51b81526004016107cb9061209e565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610ae657600080fd5b505afa158015610afa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1e9190611eae565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb90604401602060405180830381600087803b158015610b6957600080fd5b505af1158015610b7d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109019190611dd8565b6006546001600160a01b03163314610bcb5760405162461bcd60e51b81526004016107cb9061209e565b8051610a5b90600a906020840190611b3b565b6000818152600260205260408120546001600160a01b0316806106305760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107cb565b60006001600160a01b038216610cc05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107cb565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d065760405162461bcd60e51b81526004016107cb9061209e565b610d106000611636565b565b6006546001600160a01b03163314610d3c5760405162461bcd60e51b81526004016107cb9061209e565b600c80549115156101000261ff0019909216919091179055565b6060600180546106d3906121b2565b60026007541415610db85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107cb565b60026007556658d15e1762800081610378610dd260085490565b1115610e305734610de38284612150565b14610e305760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016107cb565b600c5460ff16610e825760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f742073746172746564000000000060448201526064016107cb565b82610d0581610e9060085490565b610e9a9190612124565b1115610ed35760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b60448201526064016107cb565b836005811115610f2f5760405162461bcd60e51b815260206004820152602160248201527f52656163686564206d6178206d696e747320706572207472616e73616374696f6044820152603760f91b60648201526084016107cb565b60005b85811015610f5d57610f4b33610f46611688565b61169f565b80610f55816121ed565b915050610f32565b5050600160075550505050565b610a5b3383836116b9565b610f7f33836113a8565b610f9b5760405162461bcd60e51b81526004016107cb906120d3565b610fa784848484611788565b50505050565b6000818152600260205260409020546060906001600160a01b031661100b5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016107cb565b600c54610100900460ff166110ac57600b8054611027906121b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611053906121b2565b80156110a05780601f10611075576101008083540402835291602001916110a0565b820191906000526020600020905b81548152906001019060200180831161108357829003601f168201915b50505050509050919050565b600a6110b7836117bb565b6040516020016110c8929190611f31565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146111085760405162461bcd60e51b81526004016107cb9061209e565b60098054911515600160a01b0260ff60a01b19909216919091179055565b6009546000906001600160a01b03811690600160a01b900460ff1680156111d1575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b15801561118e57600080fd5b505afa1580156111a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c69190611e2f565b6001600160a01b0316145b156111e0576001915050610630565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b0316331461123c5760405162461bcd60e51b81526004016107cb9061209e565b6001600160a01b0381166112a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cb565b6112aa81611636565b50565b6006546001600160a01b031633146112d75760405162461bcd60e51b81526004016107cb9061209e565b8051610a5b90600b906020840190611b3b565b60006001600160e01b031982166380ac58cd60e01b148061131b57506001600160e01b03198216635b5e139f60e01b145b8061063057506301ffc9a760e01b6001600160e01b0319831614610630565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061136f82610bde565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114215760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107cb565b600061142c83610bde565b9050806001600160a01b0316846001600160a01b031614806114675750836001600160a01b031661145c84610756565b6001600160a01b0316145b8061120a575061120a8185611126565b826001600160a01b031661148a82610bde565b6001600160a01b0316146114f25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107cb565b6001600160a01b0382166115545760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107cb565b61155f60008261133a565b6001600160a01b038316600090815260036020526040812080546001929061158890849061216f565b90915550506001600160a01b03821660009081526003602052604081208054600192906115b6908490612124565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006116238284612150565b9392505050565b6000611623828461213c565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611698600880546001019055565b5060085490565b610a5b8282604051806020016040528060008152506118b9565b816001600160a01b0316836001600160a01b0316141561171b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107cb565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611793848484611477565b61179f848484846118ec565b610fa75760405162461bcd60e51b81526004016107cb9061204c565b6060816117df5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561180957806117f3816121ed565b91506118029050600a8361213c565b91506117e3565b60008167ffffffffffffffff8111156118245761182461225e565b6040519080825280601f01601f19166020018201604052801561184e576020820181803683370190505b5090505b841561120a5761186360018361216f565b9150611870600a86612208565b61187b906030612124565b60f81b81838151811061189057611890612248565b60200101906001600160f81b031916908160001a9053506118b2600a8661213c565b9450611852565b6118c383836119f9565b6118d060008484846118ec565b6109015760405162461bcd60e51b81526004016107cb9061204c565b60006001600160a01b0384163b156119ee57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611930903390899088908890600401611ffc565b602060405180830381600087803b15801561194a57600080fd5b505af192505050801561197a575060408051601f3d908101601f1916820190925261197791810190611e12565b60015b6119d4573d8080156119a8576040519150601f19603f3d011682016040523d82523d6000602084013e6119ad565b606091505b5080516119cc5760405162461bcd60e51b81526004016107cb9061204c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061120a565b506001949350505050565b6001600160a01b038216611a4f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107cb565b6000818152600260205260409020546001600160a01b031615611ab45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107cb565b6001600160a01b0382166000908152600360205260408120805460019290611add908490612124565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b47906121b2565b90600052602060002090601f016020900481019282611b695760008555611baf565b82601f10611b8257805160ff1916838001178555611baf565b82800160010185558215611baf579182015b82811115611baf578251825591602001919060010190611b94565b50611bbb929150611bbf565b5090565b5b80821115611bbb5760008155600101611bc0565b600067ffffffffffffffff80841115611bef57611bef61225e565b604051601f8501601f19908116603f01168101908282118183101715611c1757611c1761225e565b81604052809350858152868686011115611c3057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c5c57600080fd5b813561162381612274565b60008060408385031215611c7a57600080fd5b8235611c8581612274565b91506020830135611c9581612274565b809150509250929050565b600080600060608486031215611cb557600080fd5b8335611cc081612274565b92506020840135611cd081612274565b929592945050506040919091013590565b60008060008060808587031215611cf757600080fd5b8435611d0281612274565b93506020850135611d1281612274565b925060408501359150606085013567ffffffffffffffff811115611d3557600080fd5b8501601f81018713611d4657600080fd5b611d5587823560208401611bd4565b91505092959194509250565b60008060408385031215611d7457600080fd5b8235611d7f81612274565b91506020830135611c9581612289565b60008060408385031215611da257600080fd5b8235611dad81612274565b946020939093013593505050565b600060208284031215611dcd57600080fd5b813561162381612289565b600060208284031215611dea57600080fd5b815161162381612289565b600060208284031215611e0757600080fd5b813561162381612297565b600060208284031215611e2457600080fd5b815161162381612297565b600060208284031215611e4157600080fd5b815161162381612274565b600060208284031215611e5e57600080fd5b813567ffffffffffffffff811115611e7557600080fd5b8201601f81018413611e8657600080fd5b61120a84823560208401611bd4565b600060208284031215611ea757600080fd5b5035919050565b600060208284031215611ec057600080fd5b5051919050565b60008060408385031215611eda57600080fd5b50508035926020909101359150565b60008151808452611f01816020860160208601612186565b601f01601f19169290920160200192915050565b60008151611f27818560208601612186565b9290920192915050565b600080845481600182811c915080831680611f4d57607f831692505b6020808410821415611f6d57634e487b7160e01b86526022600452602486fd5b818015611f815760018114611f9257611fbf565b60ff19861689528489019650611fbf565b60008b81526020902060005b86811015611fb75781548b820152908501908301611f9e565b505084890196505b505050505050611ff3611fe2611fdc83602f60f81b815260010190565b86611f15565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061202f90830184611ee9565b9695505050505050565b6020815260006116236020830184611ee9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121375761213761221c565b500190565b60008261214b5761214b612232565b500490565b600081600019048311821515161561216a5761216a61221c565b500290565b6000828210156121815761218161221c565b500390565b60005b838110156121a1578181015183820152602001612189565b83811115610fa75750506000910152565b600181811c908216806121c657607f821691505b602082108114156121e757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122015761220161221c565b5060010190565b60008261221757612217612232565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112aa57600080fd5b80151581146112aa57600080fd5b6001600160e01b0319811681146112aa57600080fdfea26469706673582212206c8076f5a2ea6471ac91ebd903cdbdf38bfc978b68ead0f1cf4b0617bf03d0be64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000009416c69656e446f6f640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000241440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50597a596a4b6f37637a4e67354e734437336642556f585178644b3444724c627675355968567868364e466b2f000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d644b445651614b625873674a71506335684d7955633769786964686d6d725575434e4c643741424d4444684e2f756e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): AlienDood
Arg [1] : _symbol (string): AD
Arg [2] : _initBaseURI (string): ipfs://QmPYzYjKo7czNg5NsD73fBUoXQxdK4DrLbvu5YhVxh6NFk/
Arg [3] : _initUnrevealedUri (string): ipfs://QmdKDVQaKbXsgJqPc5hMyUc7ixidhmmrUuCNLd7ABMDDhN/unrevealed.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 416c69656e446f6f640000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4144000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d50597a596a4b6f37637a4e67354e734437336642556f58
Arg [10] : 5178644b3444724c627675355968567868364e466b2f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000045
Arg [12] : 697066733a2f2f516d644b445651614b625873674a71506335684d7955633769
Arg [13] : 786964686d6d725575434e4c643741424d4444684e2f756e72657665616c6564
Arg [14] : 2e6a736f6e000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50396:5751:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54514:214;;;;;;;;;;-1:-1:-1;54514:214:0;;;;;:::i;:::-;;:::i;:::-;;;9167:14:1;;9160:22;9142:41;;9130:2;9115:18;54514:214:0;;;;;;;;50755:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38712:100::-;;;;;;;;;;;;;:::i;40271:221::-;;;;;;;;;;-1:-1:-1;40271:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8186:32:1;;;8168:51;;8156:2;8141:18;40271:221:0;8022:203:1;39794:411:0;;;;;;;;;;-1:-1:-1;39794:411:0;;;;;:::i;:::-;;:::i;:::-;;53015:103;;;;;;;;;;;;;:::i;:::-;;;17686:25:1;;;17674:2;17659:18;53015:103:0;17540:177:1;51005:38:0;;;;;;;;;;-1:-1:-1;51005:38:0;;;;;;;;41021:339;;;;;;;;;;-1:-1:-1;41021:339:0;;;;;:::i;:::-;;:::i;53792:135::-;;;;;;;;;;-1:-1:-1;53792:135:0;;;;;:::i;:::-;;:::i;55844:298::-;;;;;;;;;;-1:-1:-1;55844:298:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;8915:32:1;;;8897:51;;8979:2;8964:18;;8957:34;;;;8870:18;55844:298:0;8723:274:1;50791:41:0;;;;;;;;;;;;50828:4;50791:41;;53935:143;;;;;;;;;;;;;:::i;41431:185::-;;;;;;;;;;-1:-1:-1;41431:185:0;;;;;:::i;:::-;;:::i;54086:168::-;;;;;;;;;;-1:-1:-1;54086:168:0;;;;;:::i;:::-;;:::i;51050:30::-;;;;;;;;;;-1:-1:-1;51050:30:0;;;;;;;;;;;53456:104;;;;;;;;;;-1:-1:-1;53456:104:0;;;;;:::i;:::-;;:::i;38406:239::-;;;;;;;;;;-1:-1:-1;38406:239:0;;;;;:::i;:::-;;:::i;50890:55::-;;;;;;;;;;;;50934:11;50890:55;;38136:208;;;;;;;;;;-1:-1:-1;38136:208:0;;;;;:::i;:::-;;:::i;18398:103::-;;;;;;;;;;;;;:::i;17747:87::-;;;;;;;;;;-1:-1:-1;17820:6:0;;-1:-1:-1;;;;;17820:6:0;17747:87;;53698:86;;;;;;;;;;-1:-1:-1;53698:86:0;;;;;:::i;:::-;;:::i;38881:104::-;;;;;;;;;;;;;:::i;52308:356::-;;;;;;:::i;:::-;;:::i;40564:155::-;;;;;;;;;;-1:-1:-1;40564:155:0;;;;;:::i;:::-;;:::i;41687:328::-;;;;;;;;;;-1:-1:-1;41687:328:0;;;;;:::i;:::-;;:::i;50839:44::-;;;;;;;;;;;;50882:1;50839:44;;50952;;;;;;;;;;;;50993:3;50952:44;;55453:327;;;;;;;;;;-1:-1:-1;55453:327:0;;;;;:::i;:::-;;:::i;53305:143::-;;;;;;;;;;-1:-1:-1;53305:143:0;;;;;:::i;:::-;;:::i;54865:517::-;;;;;;;;;;-1:-1:-1;54865:517:0;;;;;:::i;:::-;;:::i;18656:201::-;;;;;;;;;;-1:-1:-1;18656:201:0;;;;;:::i;:::-;;:::i;53568:122::-;;;;;;;;;;-1:-1:-1;53568:122:0;;;;;:::i;:::-;;:::i;54514:214::-;54616:4;-1:-1:-1;;;;;;54639:41:0;;-1:-1:-1;;;54639:41:0;;:81;;;54684:36;54708:11;54684:23;:36::i;:::-;54632:88;54514:214;-1:-1:-1;;54514:214:0:o;50755:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38712:100::-;38766:13;38799:5;38792:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38712:100;:::o;40271:221::-;40347:7;43614:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43614:16:0;40367:73;;;;-1:-1:-1;;;40367:73:0;;14689:2:1;40367:73:0;;;14671:21:1;14728:2;14708:18;;;14701:30;14767:34;14747:18;;;14740:62;-1:-1:-1;;;14818:18:1;;;14811:42;14870:19;;40367:73:0;;;;;;;;;-1:-1:-1;40460:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40460:24:0;;40271:221::o;39794:411::-;39875:13;39891:23;39906:7;39891:14;:23::i;:::-;39875:39;;39939:5;-1:-1:-1;;;;;39933:11:0;:2;-1:-1:-1;;;;;39933:11:0;;;39925:57;;;;-1:-1:-1;;;39925:57:0;;15873:2:1;39925:57:0;;;15855:21:1;15912:2;15892:18;;;15885:30;15951:34;15931:18;;;15924:62;-1:-1:-1;;;16002:18:1;;;15995:31;16043:19;;39925:57:0;15671:397:1;39925:57:0;16604:10;-1:-1:-1;;;;;40017:21:0;;;;:62;;-1:-1:-1;40042:37:0;40059:5;16604:10;54865:517;:::i;40042:37::-;39995:168;;;;-1:-1:-1;;;39995:168:0;;12680:2:1;39995:168:0;;;12662:21:1;12719:2;12699:18;;;12692:30;12758:34;12738:18;;;12731:62;12829:26;12809:18;;;12802:54;12873:19;;39995:168:0;12478:420:1;39995:168:0;40176:21;40185:2;40189:7;40176:8;:21::i;:::-;39864:341;39794:411;;:::o;53015:103::-;53061:7;53088:22;:12;7724:14;;7632:114;53088:22;53081:29;;53015:103;:::o;41021:339::-;41216:41;16604:10;41249:7;41216:18;:41::i;:::-;41208:103;;;;-1:-1:-1;;;41208:103:0;;;;;;;:::i;:::-;41324:28;41334:4;41340:2;41344:7;41324:9;:28::i;53792:135::-;17820:6;;-1:-1:-1;;;;;17820:6:0;16604:10;17967:23;17959:68;;;;-1:-1:-1;;;17959:68:0;;;;;;;:::i;:::-;53879:18:::1;:40:::0;;-1:-1:-1;;53879:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53792:135::o;55844:298::-;55953:16;43614;;;:7;:16;;;;;;55953;;-1:-1:-1;;;;;43614:16:0;56005:49;;;;-1:-1:-1;;;56005:49:0;;11918:2:1;56005:49:0;;;11900:21:1;11957:2;11937:18;;;11930:30;-1:-1:-1;;;11976:18:1;;;11969:50;12036:18;;56005:49:0;11716:344:1;56005:49:0;56081:4;56088:45;56101:26;56114:9;56125:1;56101:12;:26::i;:::-;56129:3;56088:12;:45::i;:::-;56065:69;;;;55844:298;;;;;:::o;53935:143::-;17820:6;;-1:-1:-1;;;;;17820:6:0;16604:10;17967:23;17959:68;;;;-1:-1:-1;;;17959:68:0;;;;;;;:::i;:::-;54033:37:::1;::::0;54001:21:::1;::::0;54041:10:::1;::::0;54033:37;::::1;;;::::0;54001:21;;53983:15:::1;54033:37:::0;53983:15;54033:37;54001:21;54041:10;54033:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53972:106;53935:143::o:0;41431:185::-;41569:39;41586:4;41592:2;41596:7;41569:39;;;;;;;;;;;;:16;:39::i;54086:168::-;17820:6;;-1:-1:-1;;;;;17820:6:0;16604:10;17967:23;17959:68;;;;-1:-1:-1;;;17959:68:0;;;;;;;:::i;:::-;54170:30:::1;::::0;-1:-1:-1;;;54170:30:0;;54194:4:::1;54170:30;::::0;::::1;8168:51:1::0;54152:15:0::1;::::0;-1:-1:-1;;;;;54170:15:0;::::1;::::0;::::1;::::0;8141:18:1;;54170:30:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54211:35;::::0;-1:-1:-1;;;54211:35:0;;54226:10:::1;54211:35;::::0;::::1;8897:51:1::0;8964:18;;;8957:34;;;54152:48:0;;-1:-1:-1;;;;;;54211:14:0;::::1;::::0;::::1;::::0;8870:18:1;;54211:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;53456:104::-:0;17820:6;;-1:-1:-1;;;;;17820:6:0;16604:10;17967:23;17959:68;;;;-1:-1:-1;;;17959:68:0;;;;;;;:::i;:::-;53531:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;38406:239::-:0;38478:7;38514:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38514:16:0;38549:19;38541:73;;;;-1:-1:-1;;;38541:73:0;;13918:2:1;38541:73:0;;;13900:21:1;13957:2;13937:18;;;13930:30;13996:34;13976:18;;;13969:62;-1:-1:-1;;;14047:18:1;;;14040:39;14096:19;;38541:73:0;13716:405:1;38136:208:0;38208:7;-1:-1:-1;;;;;38236:19:0;;38228:74;;;;-1:-1:-1;;;38228:74:0;;13507:2:1;38228:74:0;;;13489:21:1;13546:2;13526:18;;;13519:30;13585:34;13565:18;;;13558:62;-1:-1:-1;;;13636:18:1;;;13629:40;13686:19;;38228:74:0;13305:406:1;38228:74:0;-1:-1:-1;;;;;;38320:16:0;;;;;:9;:16;;;;;;;38136:208::o;18398:103::-;17820:6;;-1:-1:-1;;;;;17820:6:0;16604:10;17967:23;17959:68;;;;-1:-1:-1;;;17959:68:0;;;;;;;:::i;:::-;18463:30:::1;18490:1;18463:18;:30::i;:::-;18398:103::o:0;53698:86::-;17820:6;;-1:-1:-1;;;;;17820:6:0;16604:10;17967:23;17959:68;;;;-1:-1:-1;;;17959:68:0;;;;;;;:::i;:::-;53756:10:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;53756:20:0;;::::1;::::0;;;::::1;::::0;;53698:86::o;38881:104::-;38937:13;38970:7;38963:14;;;;;:::i;52308:356::-;9950:1;10548:7;;:19;;10540:63;;;;-1:-1:-1;;;10540:63:0;;17382:2:1;10540:63:0;;;17364:21:1;17421:2;17401:18;;;17394:30;17460:33;17440:18;;;17433:61;17511:18;;10540:63:0;17180:355:1;10540:63:0;9950:1;10681:7;:18;50934:11:::1;52432:14:::0;50993:3:::1;51755:22;:12;7724:14:::0;;7632:114;51755:22:::1;:39;51751:195;;;51865:9;51838:22;51846:14:::0;51838:5;:22:::1;:::i;:::-;51837:37;51811:123;;;::::0;-1:-1:-1;;;51811:123:0;;17029:2:1;51811:123:0::1;::::0;::::1;17011:21:1::0;17068:2;17048:18;;;17041:30;17107:26;17087:18;;;17080:54;17151:18;;51811:123:0::1;16827:348:1::0;51811:123:0::1;51186:18:::2;::::0;::::2;;51178:58;;;::::0;-1:-1:-1;;;51178:58:0;;10803:2:1;51178:58:0::2;::::0;::::2;10785:21:1::0;10842:2;10822:18;;;10815:30;10881:29;10861:18;;;10854:57;10928:18;;51178:58:0::2;10601:351:1::0;51178:58:0::2;52487:14:::3;50828:4;51570:14;51545:22;:12;7724:14:::0;;7632:114;51545:22:::3;:39;;;;:::i;:::-;:66;;51523:124;;;::::0;-1:-1:-1;;;51523:124:0;;16693:2:1;51523:124:0::3;::::0;::::3;16675:21:1::0;16732:1;16712:18;;;16705:29;-1:-1:-1;;;16750:18:1;;;16743:38;16798:18;;51523:124:0::3;16491:331:1::0;51523:124:0::3;52522:14:::4;50882:1;51344:14;:34;;51322:117;;;::::0;-1:-1:-1;;;51322:117:0;;13105:2:1;51322:117:0::4;::::0;::::4;13087:21:1::0;13144:2;13124:18;;;13117:30;13183:34;13163:18;;;13156:62;-1:-1:-1;;;13234:18:1;;;13227:31;13275:19;;51322:117:0::4;12903:397:1::0;51322:117:0::4;52554:9:::5;52549:108;52573:14;52569:1;:18;52549:108;;;52609:36;52619:10;52631:13;:11;:13::i;:::-;52609:9;:36::i;:::-;52589:3:::0;::::5;::::0;::::5;:::i;:::-;;;;52549:108;;;-1:-1:-1::0;;9906:1:0;10860:7;:22;-1:-1:-1;;;;52308:356:0:o;40564:155::-;40659:52;16604:10;40692:8;40702;40659:18;:52::i;41687:328::-;41862:41;16604:10;41895:7;41862:18;:41::i;:::-;41854:103;;;;-1:-1:-1;;;41854:103:0;;;;;;;:::i;:::-;41968:39;41982:4;41988:2;41992:7;42001:5;41968:13;:39::i;:::-;41687:328;;;;:::o;55453:327::-;43590:4;43614:16;;;:7;:16;;;;;;55526:13;;-1:-1:-1;;;;;43614:16:0;55552:49;;;;-1:-1:-1;;;55552:49:0;;11918:2:1;55552:49:0;;;11900:21:1;11957:2;11937:18;;;11930:30;-1:-1:-1;;;11976:18:1;;;11969:50;12036:18;;55552:49:0;11716:344:1;55552:49:0;55618:10;;;;;;;55614:72;;55661:13;55654:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55453:327;;;:::o;55614:72::-;55729:7;55743:18;:7;:16;:18::i;:::-;55712:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55698:74;;55453:327;;;:::o;53305:143::-;17820:6;;-1:-1:-1;;;;;17820:6:0;16604:10;17967:23;17959:68;;;;-1:-1:-1;;;17959:68:0;;;;;;;:::i;:::-;53396:20:::1;:44:::0;;;::::1;;-1:-1:-1::0;;;53396:44:0::1;-1:-1:-1::0;;;;53396:44:0;;::::1;::::0;;;::::1;::::0;;53305:143::o;54865:517::-;55158:27;;54954:4;;-1:-1:-1;;;;;55158:27:0;;;-1:-1:-1;;;55203:20:0;;;;:73;;;;-1:-1:-1;55235:28:0;;-1:-1:-1;;;55235:28:0;;-1:-1:-1;;;;;8186:32:1;;;55235:28:0;;;8168:51:1;55227:49:0;;;;55235:21;;;;;;8141:18:1;;55235:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;55227:49:0;;55203:73;55199:117;;;55300:4;55293:11;;;;;55199:117;-1:-1:-1;;;;;40911:25:0;;;40887:4;40911:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;55335:39;55328:46;54865:517;-1:-1:-1;;;;54865:517:0:o;18656:201::-;17820:6;;-1:-1:-1;;;;;17820:6:0;16604:10;17967:23;17959:68;;;;-1:-1:-1;;;17959:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18745:22:0;::::1;18737:73;;;::::0;-1:-1:-1;;;18737:73:0;;10039:2:1;18737:73:0::1;::::0;::::1;10021:21:1::0;10078:2;10058:18;;;10051:30;10117:34;10097:18;;;10090:62;-1:-1:-1;;;10168:18:1;;;10161:36;10214:19;;18737:73:0::1;9837:402:1::0;18737:73:0::1;18821:28;18840:8;18821:18;:28::i;:::-;18656:201:::0;:::o;53568:122::-;17820:6;;-1:-1:-1;;;;;17820:6:0;16604:10;17967:23;17959:68;;;;-1:-1:-1;;;17959:68:0;;;;;;;:::i;:::-;53652:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;37779:293::-:0;37881:4;-1:-1:-1;;;;;;37914:40:0;;-1:-1:-1;;;37914:40:0;;:101;;-1:-1:-1;;;;;;;37967:48:0;;-1:-1:-1;;;37967:48:0;37914:101;:150;;;-1:-1:-1;;;;;;;;;;30870:40:0;;;38028:36;30761:157;47507:174;47582:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;47582:29:0;-1:-1:-1;;;;;47582:29:0;;;;;;;;:24;;47636:23;47582:24;47636:14;:23::i;:::-;-1:-1:-1;;;;;47627:46:0;;;;;;;;;;;47507:174;;:::o;43819:348::-;43912:4;43614:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43614:16:0;43929:73;;;;-1:-1:-1;;;43929:73:0;;12267:2:1;43929:73:0;;;12249:21:1;12306:2;12286:18;;;12279:30;12345:34;12325:18;;;12318:62;-1:-1:-1;;;12396:18:1;;;12389:42;12448:19;;43929:73:0;12065:408:1;43929:73:0;44013:13;44029:23;44044:7;44029:14;:23::i;:::-;44013:39;;44082:5;-1:-1:-1;;;;;44071:16:0;:7;-1:-1:-1;;;;;44071:16:0;;:51;;;;44115:7;-1:-1:-1;;;;;44091:31:0;:20;44103:7;44091:11;:20::i;:::-;-1:-1:-1;;;;;44091:31:0;;44071:51;:87;;;;44126:32;44143:5;44150:7;44126:16;:32::i;46811:578::-;46970:4;-1:-1:-1;;;;;46943:31:0;:23;46958:7;46943:14;:23::i;:::-;-1:-1:-1;;;;;46943:31:0;;46935:85;;;;-1:-1:-1;;;46935:85:0;;15463:2:1;46935:85:0;;;15445:21:1;15502:2;15482:18;;;15475:30;15541:34;15521:18;;;15514:62;-1:-1:-1;;;15592:18:1;;;15585:39;15641:19;;46935:85:0;15261:405:1;46935:85:0;-1:-1:-1;;;;;47039:16:0;;47031:65;;;;-1:-1:-1;;;47031:65:0;;11159:2:1;47031:65:0;;;11141:21:1;11198:2;11178:18;;;11171:30;11237:34;11217:18;;;11210:62;-1:-1:-1;;;11288:18:1;;;11281:34;11332:19;;47031:65:0;10957:400:1;47031:65:0;47213:29;47230:1;47234:7;47213:8;:29::i;:::-;-1:-1:-1;;;;;47255:15:0;;;;;;:9;:15;;;;;:20;;47274:1;;47255:15;:20;;47274:1;;47255:20;:::i;:::-;;;;-1:-1:-1;;;;;;;47286:13:0;;;;;;:9;:13;;;;;:18;;47303:1;;47286:13;:18;;47303:1;;47286:18;:::i;:::-;;;;-1:-1:-1;;47315:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;47315:21:0;-1:-1:-1;;;;;47315:21:0;;;;;;;;;47354:27;;47315:16;;47354:27;;;;;;;46811:578;;;:::o;3434:98::-;3492:7;3519:5;3523:1;3519;:5;:::i;:::-;3512:12;3434:98;-1:-1:-1;;;3434:98:0:o;3833:::-;3891:7;3918:5;3922:1;3918;:5;:::i;19017:191::-;19110:6;;;-1:-1:-1;;;;;19127:17:0;;;-1:-1:-1;;;;;;19127:17:0;;;;;;;19160:40;;19110:6;;;19127:17;19110:6;;19160:40;;19091:16;;19160:40;19080:128;19017:191;:::o;54319:132::-;54359:7;54379:24;:12;7835:19;;7853:1;7835:19;;;7754:115;54379:24;-1:-1:-1;54421:12:0;7724:14;;53015:103::o;44509:110::-;44585:26;44595:2;44599:7;44585:26;;;;;;;;;;;;:9;:26::i;47823:315::-;47978:8;-1:-1:-1;;;;;47969:17:0;:5;-1:-1:-1;;;;;47969:17:0;;;47961:55;;;;-1:-1:-1;;;47961:55:0;;11564:2:1;47961:55:0;;;11546:21:1;11603:2;11583:18;;;11576:30;11642:27;11622:18;;;11615:55;11687:18;;47961:55:0;11362:349:1;47961:55:0;-1:-1:-1;;;;;48027:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;48027:46:0;;;;;;;;;;48089:41;;9142::1;;;48089::0;;9115:18:1;48089:41:0;;;;;;;47823:315;;;:::o;42897:::-;43054:28;43064:4;43070:2;43074:7;43054:9;:28::i;:::-;43101:48;43124:4;43130:2;43134:7;43143:5;43101:22;:48::i;:::-;43093:111;;;;-1:-1:-1;;;43093:111:0;;;;;;;:::i;14138:723::-;14194:13;14415:10;14411:53;;-1:-1:-1;;14442:10:0;;;;;;;;;;;;-1:-1:-1;;;14442:10:0;;;;;14138:723::o;14411:53::-;14489:5;14474:12;14530:78;14537:9;;14530:78;;14563:8;;;;:::i;:::-;;-1:-1:-1;14586:10:0;;-1:-1:-1;14594:2:0;14586:10;;:::i;:::-;;;14530:78;;;14618:19;14650:6;14640:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14640:17:0;;14618:39;;14668:154;14675:10;;14668:154;;14702:11;14712:1;14702:11;;:::i;:::-;;-1:-1:-1;14771:10:0;14779:2;14771:5;:10;:::i;:::-;14758:24;;:2;:24;:::i;:::-;14745:39;;14728:6;14735;14728:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;14728:56:0;;;;;;;;-1:-1:-1;14799:11:0;14808:2;14799:11;;:::i;:::-;;;14668:154;;44846:321;44976:18;44982:2;44986:7;44976:5;:18::i;:::-;45027:54;45058:1;45062:2;45066:7;45075:5;45027:22;:54::i;:::-;45005:154;;;;-1:-1:-1;;;45005:154:0;;;;;;;:::i;48703:799::-;48858:4;-1:-1:-1;;;;;48879:13:0;;20306:20;20354:8;48875:620;;48915:72;;-1:-1:-1;;;48915:72:0;;-1:-1:-1;;;;;48915:36:0;;;;;:72;;16604:10;;48966:4;;48972:7;;48981:5;;48915:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48915:72:0;;;;;;;;-1:-1:-1;;48915:72:0;;;;;;;;;;;;:::i;:::-;;;48911:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49157:13:0;;49153:272;;49200:60;;-1:-1:-1;;;49200:60:0;;;;;;;:::i;49153:272::-;49375:6;49369:13;49360:6;49356:2;49352:15;49345:38;48911:529;-1:-1:-1;;;;;;49038:51:0;-1:-1:-1;;;49038:51:0;;-1:-1:-1;49031:58:0;;48875:620;-1:-1:-1;49479:4:0;48703:799;;;;;;:::o;45503:382::-;-1:-1:-1;;;;;45583:16:0;;45575:61;;;;-1:-1:-1;;;45575:61:0;;14328:2:1;45575:61:0;;;14310:21:1;;;14347:18;;;14340:30;14406:34;14386:18;;;14379:62;14458:18;;45575:61:0;14126:356:1;45575:61:0;43590:4;43614:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43614:16:0;:30;45647:58;;;;-1:-1:-1;;;45647:58:0;;10446:2:1;45647:58:0;;;10428:21:1;10485:2;10465:18;;;10458:30;10524;10504:18;;;10497:58;10572:18;;45647:58:0;10244:352:1;45647:58:0;-1:-1:-1;;;;;45776:13:0;;;;;;:9;:13;;;;;:18;;45793:1;;45776:13;:18;;45793:1;;45776:18;:::i;:::-;;;;-1:-1:-1;;45805:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;45805:21:0;-1:-1:-1;;;;;45805:21:0;;;;;;;;45844:33;;45805:16;;;45844:33;;45805:16;;45844:33;45503:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:52;;;1047:1;1044;1037:12;999:52;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;902:388;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1295:456;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1295:456::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:53;;;1945:1;1942;1935:12;1896:53;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;2311:18;2300:30;;2297:50;;;2343:1;2340;2333:12;2297:50;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:55:1;;2448:1;2445;2438:12;2397:55;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1756:794;;;;;;;:::o;2555:382::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2875:30;2834:32;2875:30;:::i;2942:315::-;3010:6;3018;3071:2;3059:9;3050:7;3046:23;3042:32;3039:52;;;3087:1;3084;3077:12;3039:52;3126:9;3113:23;3145:31;3170:5;3145:31;:::i;:::-;3195:5;3247:2;3232:18;;;;3219:32;;-1:-1:-1;;;2942:315:1:o;3262:241::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3426:9;3413:23;3445:28;3467:5;3445:28;:::i;3508:245::-;3575:6;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3676:9;3670:16;3695:28;3717:5;3695:28;:::i;3758:245::-;3816:6;3869:2;3857:9;3848:7;3844:23;3840:32;3837:52;;;3885:1;3882;3875:12;3837:52;3924:9;3911:23;3943:30;3967:5;3943:30;:::i;4008:249::-;4077:6;4130:2;4118:9;4109:7;4105:23;4101:32;4098:52;;;4146:1;4143;4136:12;4098:52;4178:9;4172:16;4197:30;4221:5;4197:30;:::i;4528:280::-;4627:6;4680:2;4668:9;4659:7;4655:23;4651:32;4648:52;;;4696:1;4693;4686:12;4648:52;4728:9;4722:16;4747:31;4772:5;4747:31;:::i;4813:450::-;4882:6;4935:2;4923:9;4914:7;4910:23;4906:32;4903:52;;;4951:1;4948;4941:12;4903:52;4991:9;4978:23;5024:18;5016:6;5013:30;5010:50;;;5056:1;5053;5046:12;5010:50;5079:22;;5132:4;5124:13;;5120:27;-1:-1:-1;5110:55:1;;5161:1;5158;5151:12;5110:55;5184:73;5249:7;5244:2;5231:16;5226:2;5222;5218:11;5184:73;:::i;5268:180::-;5327:6;5380:2;5368:9;5359:7;5355:23;5351:32;5348:52;;;5396:1;5393;5386:12;5348:52;-1:-1:-1;5419:23:1;;5268:180;-1:-1:-1;5268:180:1:o;5453:184::-;5523:6;5576:2;5564:9;5555:7;5551:23;5547:32;5544:52;;;5592:1;5589;5582:12;5544:52;-1:-1:-1;5615:16:1;;5453:184;-1:-1:-1;5453:184:1:o;5642:248::-;5710:6;5718;5771:2;5759:9;5750:7;5746:23;5742:32;5739:52;;;5787:1;5784;5777:12;5739:52;-1:-1:-1;;5810:23:1;;;5880:2;5865:18;;;5852:32;;-1:-1:-1;5642:248:1:o;5895:257::-;5936:3;5974:5;5968:12;6001:6;5996:3;5989:19;6017:63;6073:6;6066:4;6061:3;6057:14;6050:4;6043:5;6039:16;6017:63;:::i;:::-;6134:2;6113:15;-1:-1:-1;;6109:29:1;6100:39;;;;6141:4;6096:50;;5895:257;-1:-1:-1;;5895:257:1:o;6157:185::-;6199:3;6237:5;6231:12;6252:52;6297:6;6292:3;6285:4;6278:5;6274:16;6252:52;:::i;:::-;6320:16;;;;;6157:185;-1:-1:-1;;6157:185:1:o;6584:1433::-;6962:3;6991:1;7024:6;7018:13;7054:3;7076:1;7104:9;7100:2;7096:18;7086:28;;7164:2;7153:9;7149:18;7186;7176:61;;7230:4;7222:6;7218:17;7208:27;;7176:61;7256:2;7304;7296:6;7293:14;7273:18;7270:38;7267:165;;;-1:-1:-1;;;7331:33:1;;7387:4;7384:1;7377:15;7417:4;7338:3;7405:17;7267:165;7448:18;7475:104;;;;7593:1;7588:320;;;;7441:467;;7475:104;-1:-1:-1;;7508:24:1;;7496:37;;7553:16;;;;-1:-1:-1;7475:104:1;;7588:320;17795:1;17788:14;;;17832:4;17819:18;;7683:1;7697:165;7711:6;7708:1;7705:13;7697:165;;;7789:14;;7776:11;;;7769:35;7832:16;;;;7726:10;;7697:165;;;7701:3;;7891:6;7886:3;7882:16;7875:23;;7441:467;;;;;;;7924:87;7949:61;7975:34;8005:3;-1:-1:-1;;;6530:16:1;;6571:1;6562:11;;6465:114;7975:34;7967:6;7949:61;:::i;:::-;-1:-1:-1;;;6407:20:1;;6452:1;6443:11;;6347:113;7924:87;7917:94;6584:1433;-1:-1:-1;;;;;6584:1433:1:o;8230:488::-;-1:-1:-1;;;;;8499:15:1;;;8481:34;;8551:15;;8546:2;8531:18;;8524:43;8598:2;8583:18;;8576:34;;;8646:3;8641:2;8626:18;;8619:31;;;8424:4;;8667:45;;8692:19;;8684:6;8667:45;:::i;:::-;8659:53;8230:488;-1:-1:-1;;;;;;8230:488:1:o;9194:219::-;9343:2;9332:9;9325:21;9306:4;9363:44;9403:2;9392:9;9388:18;9380:6;9363:44;:::i;9418:414::-;9620:2;9602:21;;;9659:2;9639:18;;;9632:30;9698:34;9693:2;9678:18;;9671:62;-1:-1:-1;;;9764:2:1;9749:18;;9742:48;9822:3;9807:19;;9418:414::o;14900:356::-;15102:2;15084:21;;;15121:18;;;15114:30;15180:34;15175:2;15160:18;;15153:62;15247:2;15232:18;;14900:356::o;16073:413::-;16275:2;16257:21;;;16314:2;16294:18;;;16287:30;16353:34;16348:2;16333:18;;16326:62;-1:-1:-1;;;16419:2:1;16404:18;;16397:47;16476:3;16461:19;;16073:413::o;17848:128::-;17888:3;17919:1;17915:6;17912:1;17909:13;17906:39;;;17925:18;;:::i;:::-;-1:-1:-1;17961:9:1;;17848:128::o;17981:120::-;18021:1;18047;18037:35;;18052:18;;:::i;:::-;-1:-1:-1;18086:9:1;;17981:120::o;18106:168::-;18146:7;18212:1;18208;18204:6;18200:14;18197:1;18194:21;18189:1;18182:9;18175:17;18171:45;18168:71;;;18219:18;;:::i;:::-;-1:-1:-1;18259:9:1;;18106:168::o;18279:125::-;18319:4;18347:1;18344;18341:8;18338:34;;;18352:18;;:::i;:::-;-1:-1:-1;18389:9:1;;18279:125::o;18409:258::-;18481:1;18491:113;18505:6;18502:1;18499:13;18491:113;;;18581:11;;;18575:18;18562:11;;;18555:39;18527:2;18520:10;18491:113;;;18622:6;18619:1;18616:13;18613:48;;;-1:-1:-1;;18657:1:1;18639:16;;18632:27;18409:258::o;18672:380::-;18751:1;18747:12;;;;18794;;;18815:61;;18869:4;18861:6;18857:17;18847:27;;18815:61;18922:2;18914:6;18911:14;18891:18;18888:38;18885:161;;;18968:10;18963:3;18959:20;18956:1;18949:31;19003:4;19000:1;18993:15;19031:4;19028:1;19021:15;18885:161;;18672:380;;;:::o;19057:135::-;19096:3;-1:-1:-1;;19117:17:1;;19114:43;;;19137:18;;:::i;:::-;-1:-1:-1;19184:1:1;19173:13;;19057:135::o;19197:112::-;19229:1;19255;19245:35;;19260:18;;:::i;:::-;-1:-1:-1;19294:9:1;;19197:112::o;19314:127::-;19375:10;19370:3;19366:20;19363:1;19356:31;19406:4;19403:1;19396:15;19430:4;19427:1;19420:15;19446:127;19507:10;19502:3;19498:20;19495:1;19488:31;19538:4;19535:1;19528:15;19562:4;19559:1;19552:15;19578:127;19639:10;19634:3;19630:20;19627:1;19620:31;19670:4;19667:1;19660:15;19694:4;19691:1;19684:15;19710:127;19771:10;19766:3;19762:20;19759:1;19752:31;19802:4;19799:1;19792:15;19826:4;19823:1;19816:15;19842:131;-1:-1:-1;;;;;19917:31:1;;19907:42;;19897:70;;19963:1;19960;19953:12;19978:118;20064:5;20057:13;20050:21;20043:5;20040:32;20030:60;;20086:1;20083;20076:12;20101:131;-1:-1:-1;;;;;;20175:32:1;;20165:43;;20155:71;;20222:1;20219;20212:12

Swarm Source

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