ETH Price: $3,298.28 (-3.72%)
Gas: 8 Gwei

Token

Degen Elves (ELVES)
 

Overview

Max Total Supply

2,118 ELVES

Holders

741

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ELVES
0x05eee95364a14d144b0642f71f645234439f5652
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:
DegenElves

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-26
*/

// SPDX-License-Identifier: MIT

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 no longer needed starting with Solidity 0.8. 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;
        }
    }
}

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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.
     */

    /**
     * @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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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;


    string public _baseURI;
    /**
     * @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 base = baseURI();
        return bytes(base).length > 0 ? string(abi.encodePacked(base, 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 _baseURI;
    }

    /**
     * @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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //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 Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("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 {}
}

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @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}.
 */
 

pragma solidity ^0.8.0;

contract  DegenElves  is ERC721Enumerable, Ownable
{
    using SafeMath for uint256;
    uint maxSupply=10000;
    uint private tokenId=1;
    bool public isPreSalePaused=true;
    bool public isPaused=true;
    uint public publicMintCounter=3;
        struct SpecificAddresses{
        
        
        address userAddress;
        uint counter;
    }
    struct PublicMintAddresses{
        
        
        address userAddress;
        uint counter;
    }
    mapping(address => SpecificAddresses) public _whiteList;
    mapping(address => PublicMintAddresses) public _publicMintList;

    mapping(address=>bool) public _addressExist;
    mapping(address=>bool) public _publicAddressExist;
    constructor(string memory baseURI) ERC721("Degen Elves", "ELVES")  {
        setBaseURI(baseURI);
    }
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseURI = baseURI;
    }
        function flipPauseStatus() public onlyOwner {
        isPaused = !isPaused;
    }
    function flipPreSalePauseStatus() public onlyOwner {
        isPreSalePaused = !isPreSalePaused;
    }
    function updatePublicMintCounter(uint counter) public onlyOwner {
        publicMintCounter = counter;
    }
    function addWhiteListBundle(address[] memory whiteAddress,uint [] memory counter)public onlyOwner {
            for (uint i = 0; i < whiteAddress.length; i++)
            {

        require(!_addressExist[whiteAddress[i]],"Address already Exist");
        _whiteList[whiteAddress[i]]=SpecificAddresses({
             userAddress :whiteAddress[i],
            counter:counter[i]
           });
           _addressExist[whiteAddress[i]]=true;
    }
        }
        
   function preSalemint(uint quantity) public {
         
        
     require(isPreSalePaused == false, "Sale is not active at the moment");
      require(totalSupply()+quantity<=maxSupply,"Quantity is greater than remaining Supply");
        require(_addressExist[msg.sender]==true,"Address not Found in whitelist");
        SpecificAddresses storage myaddress = _whiteList[msg.sender];
        require(myaddress.counter>=quantity,"The Amount Selected is Greater than the Remaining Amount of the Token at this Address");

                  for (uint256 i; i < quantity; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            
        }
    
        myaddress.counter-=quantity;
       
    }
     function mint(uint quantity) public {
    
        require(isPaused == false, "Sale is not active at the moment");
        require(quantity>0,"quantity less than one");
        require(totalSupply()+quantity<=maxSupply,"Quantity is greater than remaining Supply");
        if(_publicAddressExist[msg.sender]==false)
        {
             _publicMintList[msg.sender]=PublicMintAddresses({
             userAddress :msg.sender,
            counter:publicMintCounter
          });
        PublicMintAddresses storage myaddress = _publicMintList[msg.sender];
        require(quantity<=myaddress.counter,"The Amount Selected is Greater than the Remaining Amount of the Token at this Address");
         for (uint256 i; i < quantity; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            
        }
          
          _publicAddressExist[msg.sender]=true;
          myaddress.counter-=quantity;
        }
        else
        {
       
     
        PublicMintAddresses storage myaddress = _publicMintList[msg.sender];
        require(quantity<=myaddress.counter,"The Amount Selected is Greater than the Remaining Amount of the Token at this Address");
         for (uint256 i; i < quantity; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            
        }
        myaddress.counter-=quantity;
       
        
    }
    
   
        
     }

    
 
    function tokensOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 count = balanceOf(_owner);
        uint256[] memory result = new uint256[](count);
        for (uint256 index = 0; index < count; index++) {
            result[index] = tokenOfOwnerByIndex(_owner, index);
        }
        return result;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
    function totalsupply() private view returns (uint)
   
    {
        return tokenId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":[{"internalType":"address","name":"","type":"address"}],"name":"_addressExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_publicAddressExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_publicMintList","outputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"counter","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whiteList","outputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"counter","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"whiteAddress","type":"address[]"},{"internalType":"uint256[]","name":"counter","type":"uint256[]"}],"name":"addWhiteListBundle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSalePauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"preSalemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicMintCounter","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":"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":"baseURI","type":"string"}],"name":"setBaseURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"counter","type":"uint256"}],"name":"updatePublicMintCounter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600c556001600d55600e805461ffff19166101011790556003600f553480156200003057600080fd5b5060405162002ae538038062002ae5833981016040819052620000539162000266565b604080518082018252600b81526a446567656e20456c76657360a81b602080830191825283518085019094526005845264454c56455360d81b908401528151919291620000a391600091620001aa565b508051620000b9906001906020840190620001aa565b5050506000620000ce6200012e60201b60201c565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001278162000132565b506200037f565b3390565b600b546001600160a01b03163314620001915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001a6906006906020840190620001aa565b5050565b828054620001b89062000342565b90600052602060002090601f016020900481019282620001dc576000855562000227565b82601f10620001f757805160ff191683800117855562000227565b8280016001018555821562000227579182015b82811115620002275782518255916020019190600101906200020a565b506200023592915062000239565b5090565b5b808211156200023557600081556001016200023a565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200027a57600080fd5b82516001600160401b03808211156200029257600080fd5b818501915085601f830112620002a757600080fd5b815181811115620002bc57620002bc62000250565b604051601f8201601f19908116603f01168101908382118183101715620002e757620002e762000250565b8160405282815288868487010111156200030057600080fd5b600093505b8284101562000324578484018601518185018701529285019262000305565b82841115620003365760008684830101525b98975050505050505050565b600181811c908216806200035757607f821691505b602082108114156200037957634e487b7160e01b600052602260045260246000fd5b50919050565b612756806200038f6000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c80636352211e11610125578063a22cb465116100ad578063c87b56dd1161007c578063c87b56dd146104cd578063e82c1e79146104e0578063e985e9c5146104f3578063f2fde38b1461052f578063fa62884c1461054257600080fd5b8063a22cb46514610472578063b187bd2614610485578063b88d4fde14610497578063c2f03776146104aa57600080fd5b80638462151c116100f45780638462151c1461041d5780638da5cb5b1461043d5780639437908e1461044e57806395d89b4114610457578063a0712d681461045f57600080fd5b80636352211e146103e757806367f8ccb8146103fa57806370a0823114610402578063743976a01461041557600080fd5b806323b872dd116101a85780633e343865116101775780633e3438651461037857806342842e0e1461038b5780634f6ccce71461039e57806355f804b3146103b157806359d96603146103c457600080fd5b806323b872dd1461033d5780632e280e32146103505780632f745c591461035d5780633ccfd60b1461037057600080fd5b8063081812fc116101e4578063081812fc146102ba578063095ea7b3146102e557806318160ddd146102f85780632180c9161461030a57600080fd5b806301ffc9a71461021657806303c349f91461023e57806305d60ffb1461025357806306fdde03146102a5575b600080fd5b610229610224366004611f52565b61054a565b60405190151581526020015b60405180910390f35b61025161024c366004611f6f565b610575565b005b610286610261366004611fa4565b601060205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610235565b6102ad6105ad565b6040516102359190612017565b6102cd6102c8366004611f6f565b61063f565b6040516001600160a01b039091168152602001610235565b6102516102f336600461202a565b6106d4565b6009545b604051908152602001610235565b610286610318366004611fa4565b601160205260009081526040902080546001909101546001600160a01b039091169082565b61025161034b366004612054565b6107ea565b600e546102299060ff1681565b6102fc61036b36600461202a565b61081b565b6102516108b1565b610251610386366004611f6f565b61090e565b610251610399366004612054565b610a90565b6102fc6103ac366004611f6f565b610aab565b6102516103bf36600461212f565b610b3e565b6102296103d2366004611fa4565b60136020526000908152604090205460ff1681565b6102cd6103f5366004611f6f565b610b7b565b610251610bf2565b6102fc610410366004611fa4565b610c30565b6102ad610cb7565b61043061042b366004611fa4565b610d45565b6040516102359190612178565b600b546001600160a01b03166102cd565b6102fc600f5481565b6102ad610de7565b61025161046d366004611f6f565b610df6565b6102516104803660046121bc565b61103d565b600e5461022990610100900460ff1681565b6102516104a53660046121f8565b611102565b6102296104b8366004611fa4565b60126020526000908152604090205460ff1681565b6102ad6104db366004611f6f565b61113a565b6102516104ee366004612303565b611215565b6102296105013660046123c3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61025161053d366004611fa4565b6113f1565b610251611489565b60006001600160e01b0319821663780e9d6360e01b148061056f575061056f826114d0565b92915050565b600b546001600160a01b031633146105a85760405162461bcd60e51b815260040161059f906123f6565b60405180910390fd5b600f55565b6060600080546105bc9061242b565b80601f01602080910402602001604051908101604052809291908181526020018280546105e89061242b565b80156106355780601f1061060a57610100808354040283529160200191610635565b820191906000526020600020905b81548152906001019060200180831161061857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106b85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059f565b506000908152600460205260409020546001600160a01b031690565b60006106df82610b7b565b9050806001600160a01b0316836001600160a01b0316141561074d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161059f565b336001600160a01b038216148061076957506107698133610501565b6107db5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161059f565b6107e58383611520565b505050565b6107f4338261158e565b6108105760405162461bcd60e51b815260040161059f90612466565b6107e5838383611685565b600061082683610c30565b82106108885760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161059f565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b031633146108db5760405162461bcd60e51b815260040161059f906123f6565b6040514790339082156108fc029083906000818181858888f1935050505015801561090a573d6000803e3d6000fd5b5050565b600e5460ff16156109615760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604482015260640161059f565b600c548161096e60095490565b61097891906124cd565b11156109965760405162461bcd60e51b815260040161059f906124e5565b3360009081526012602052604090205460ff1615156001146109fa5760405162461bcd60e51b815260206004820152601e60248201527f41646472657373206e6f7420466f756e6420696e2077686974656c6973740000604482015260640161059f565b3360009081526010602052604090206001810154821115610a2d5760405162461bcd60e51b815260040161059f9061252e565b60005b82811015610a7257610a4a33610a45600d5490565b611830565b600d8054906000610a5a836125a9565b91905055508080610a6a906125a9565b915050610a30565b5081816001016000828254610a8791906125c4565b90915550505050565b6107e583838360405180602001604052806000815250611102565b6000610ab660095490565b8210610b195760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161059f565b60098281548110610b2c57610b2c6125db565b90600052602060002001549050919050565b600b546001600160a01b03163314610b685760405162461bcd60e51b815260040161059f906123f6565b805161090a906006906020840190611ea3565b6000818152600260205260408120546001600160a01b03168061056f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161059f565b600b546001600160a01b03163314610c1c5760405162461bcd60e51b815260040161059f906123f6565b600e805460ff19811660ff90911615179055565b60006001600160a01b038216610c9b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161059f565b506001600160a01b031660009081526003602052604090205490565b60068054610cc49061242b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf09061242b565b8015610d3d5780601f10610d1257610100808354040283529160200191610d3d565b820191906000526020600020905b815481529060010190602001808311610d2057829003601f168201915b505050505081565b60606000610d5283610c30565b905060008167ffffffffffffffff811115610d6f57610d6f612090565b604051908082528060200260200182016040528015610d98578160200160208202803683370190505b50905060005b82811015610ddf57610db0858261081b565b828281518110610dc257610dc26125db565b602090810291909101015280610dd7816125a9565b915050610d9e565b509392505050565b6060600180546105bc9061242b565b600e54610100900460ff1615610e4e5760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604482015260640161059f565b60008111610e975760405162461bcd60e51b81526020600482015260166024820152757175616e74697479206c657373207468616e206f6e6560501b604482015260640161059f565b600c5481610ea460095490565b610eae91906124cd565b1115610ecc5760405162461bcd60e51b815260040161059f906124e5565b3360009081526013602052604090205460ff16610fc75760408051808201825233808252600f546020808401918252600092835260119052929020905181546001600160a01b0319166001600160a01b03909116178155905160018201819055821115610f4b5760405162461bcd60e51b815260040161059f9061252e565b60005b82811015610f8b57610f6333610a45600d5490565b600d8054906000610f73836125a9565b91905055508080610f83906125a9565b915050610f4e565b50336000908152601360205260408120805460ff1916600190811790915582018054849290610fbb9084906125c4565b9091555061103a915050565b3360009081526011602052604090206001810154821115610ffa5760405162461bcd60e51b815260040161059f9061252e565b60005b82811015610a725761101233610a45600d5490565b600d8054906000611022836125a9565b91905055508080611032906125a9565b915050610ffd565b50565b6001600160a01b0382163314156110965760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161059f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61110c338361158e565b6111285760405162461bcd60e51b815260040161059f90612466565b6111348484848461184a565b50505050565b6000818152600260205260409020546060906001600160a01b03166111b95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161059f565b60006111c361187d565b905060008151116111e3576040518060200160405280600081525061120e565b806111ed8461188c565b6040516020016111fe9291906125f1565b6040516020818303038152906040525b9392505050565b600b546001600160a01b0316331461123f5760405162461bcd60e51b815260040161059f906123f6565b60005b82518110156107e55760126000848381518110611261576112616125db565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16156112cd5760405162461bcd60e51b81526020600482015260156024820152741059191c995cdcc8185b1c9958591e48115e1a5cdd605a1b604482015260640161059f565b60405180604001604052808483815181106112ea576112ea6125db565b60200260200101516001600160a01b03168152602001838381518110611312576113126125db565b602002602001015181525060106000858481518110611333576113336125db565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550602082015181600101559050506001601260008584815181106113ad576113ad6125db565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806113e9816125a9565b915050611242565b600b546001600160a01b0316331461141b5760405162461bcd60e51b815260040161059f906123f6565b6001600160a01b0381166114805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059f565b61103a8161198a565b600b546001600160a01b031633146114b35760405162461bcd60e51b815260040161059f906123f6565b600e805461ff001981166101009182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b148061150157506001600160e01b03198216635b5e139f60e01b145b8061056f57506301ffc9a760e01b6001600160e01b031983161461056f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061155582610b7b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059f565b600061161283610b7b565b9050806001600160a01b0316846001600160a01b0316148061164d5750836001600160a01b03166116428461063f565b6001600160a01b0316145b8061167d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661169882610b7b565b6001600160a01b0316146117005760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161059f565b6001600160a01b0382166117625760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161059f565b61176d8383836119dc565b611778600082611520565b6001600160a01b03831660009081526003602052604081208054600192906117a19084906125c4565b90915550506001600160a01b03821660009081526003602052604081208054600192906117cf9084906124cd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61090a828260405180602001604052806000815250611a94565b611855848484611685565b61186184848484611ac7565b6111345760405162461bcd60e51b815260040161059f90612620565b6060600680546105bc9061242b565b6060816118b05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118da57806118c4816125a9565b91506118d39050600a83612688565b91506118b4565b60008167ffffffffffffffff8111156118f5576118f5612090565b6040519080825280601f01601f19166020018201604052801561191f576020820181803683370190505b5090505b841561167d576119346001836125c4565b9150611941600a8661269c565b61194c9060306124cd565b60f81b818381518110611961576119616125db565b60200101906001600160f81b031916908160001a905350611983600a86612688565b9450611923565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611a3757611a3281600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611a5a565b816001600160a01b0316836001600160a01b031614611a5a57611a5a8382611bc5565b6001600160a01b038216611a71576107e581611c62565b826001600160a01b0316826001600160a01b0316146107e5576107e58282611d11565b611a9e8383611d55565b611aab6000848484611ac7565b6107e55760405162461bcd60e51b815260040161059f90612620565b60006001600160a01b0384163b15611bba57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b0b9033908990889088906004016126b0565b6020604051808303816000875af1925050508015611b46575060408051601f3d908101601f19168201909252611b43918101906126ed565b60015b611ba0573d808015611b74576040519150601f19603f3d011682016040523d82523d6000602084013e611b79565b606091505b508051611b985760405162461bcd60e51b815260040161059f90612620565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061167d565b506001949350505050565b60006001611bd284610c30565b611bdc91906125c4565b600083815260086020526040902054909150808214611c2f576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611c74906001906125c4565b6000838152600a602052604081205460098054939450909284908110611c9c57611c9c6125db565b906000526020600020015490508060098381548110611cbd57611cbd6125db565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611cf557611cf561270a565b6001900381819060005260206000200160009055905550505050565b6000611d1c83610c30565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611dab5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161059f565b6000818152600260205260409020546001600160a01b031615611e105760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161059f565b611e1c600083836119dc565b6001600160a01b0382166000908152600360205260408120805460019290611e459084906124cd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611eaf9061242b565b90600052602060002090601f016020900481019282611ed15760008555611f17565b82601f10611eea57805160ff1916838001178555611f17565b82800160010185558215611f17579182015b82811115611f17578251825591602001919060010190611efc565b50611f23929150611f27565b5090565b5b80821115611f235760008155600101611f28565b6001600160e01b03198116811461103a57600080fd5b600060208284031215611f6457600080fd5b813561120e81611f3c565b600060208284031215611f8157600080fd5b5035919050565b80356001600160a01b0381168114611f9f57600080fd5b919050565b600060208284031215611fb657600080fd5b61120e82611f88565b60005b83811015611fda578181015183820152602001611fc2565b838111156111345750506000910152565b60008151808452612003816020860160208601611fbf565b601f01601f19169290920160200192915050565b60208152600061120e6020830184611feb565b6000806040838503121561203d57600080fd5b61204683611f88565b946020939093013593505050565b60008060006060848603121561206957600080fd5b61207284611f88565b925061208060208501611f88565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156120cf576120cf612090565b604052919050565b600067ffffffffffffffff8311156120f1576120f1612090565b612104601f8401601f19166020016120a6565b905082815283838301111561211857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561214157600080fd5b813567ffffffffffffffff81111561215857600080fd5b8201601f8101841361216957600080fd5b61167d848235602084016120d7565b6020808252825182820181905260009190848201906040850190845b818110156121b057835183529284019291840191600101612194565b50909695505050505050565b600080604083850312156121cf57600080fd5b6121d883611f88565b9150602083013580151581146121ed57600080fd5b809150509250929050565b6000806000806080858703121561220e57600080fd5b61221785611f88565b935061222560208601611f88565b925060408501359150606085013567ffffffffffffffff81111561224857600080fd5b8501601f8101871361225957600080fd5b612268878235602084016120d7565b91505092959194509250565b600067ffffffffffffffff82111561228e5761228e612090565b5060051b60200190565b600082601f8301126122a957600080fd5b813560206122be6122b983612274565b6120a6565b82815260059290921b840181019181810190868411156122dd57600080fd5b8286015b848110156122f857803583529183019183016122e1565b509695505050505050565b6000806040838503121561231657600080fd5b823567ffffffffffffffff8082111561232e57600080fd5b818501915085601f83011261234257600080fd5b813560206123526122b983612274565b82815260059290921b8401810191818101908984111561237157600080fd5b948201945b838610156123965761238786611f88565b82529482019490820190612376565b965050860135925050808211156123ac57600080fd5b506123b985828601612298565b9150509250929050565b600080604083850312156123d657600080fd5b6123df83611f88565b91506123ed60208401611f88565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061243f57607f821691505b6020821081141561246057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124e0576124e06124b7565b500190565b60208082526029908201527f5175616e746974792069732067726561746572207468616e2072656d61696e696040820152686e6720537570706c7960b81b606082015260800190565b60208082526055908201527f54686520416d6f756e742053656c65637465642069732047726561746572207460408201527f68616e207468652052656d61696e696e6720416d6f756e74206f662074686520606082015274546f6b656e2061742074686973204164647265737360581b608082015260a00190565b60006000198214156125bd576125bd6124b7565b5060010190565b6000828210156125d6576125d66124b7565b500390565b634e487b7160e01b600052603260045260246000fd5b60008351612603818460208801611fbf565b835190830190612617818360208801611fbf565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261269757612697612672565b500490565b6000826126ab576126ab612672565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126e390830184611feb565b9695505050505050565b6000602082840312156126ff57600080fd5b815161120e81611f3c565b634e487b7160e01b600052603160045260246000fdfea26469706673582212208e9740ef58fb06779d0c5ebba47e6b8af491f51276d89fe4c04893142c52973564736f6c634300080a00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f6170692e646567656e73616e7461732e696f2f656c7665732f6d657461646174612f00000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c80636352211e11610125578063a22cb465116100ad578063c87b56dd1161007c578063c87b56dd146104cd578063e82c1e79146104e0578063e985e9c5146104f3578063f2fde38b1461052f578063fa62884c1461054257600080fd5b8063a22cb46514610472578063b187bd2614610485578063b88d4fde14610497578063c2f03776146104aa57600080fd5b80638462151c116100f45780638462151c1461041d5780638da5cb5b1461043d5780639437908e1461044e57806395d89b4114610457578063a0712d681461045f57600080fd5b80636352211e146103e757806367f8ccb8146103fa57806370a0823114610402578063743976a01461041557600080fd5b806323b872dd116101a85780633e343865116101775780633e3438651461037857806342842e0e1461038b5780634f6ccce71461039e57806355f804b3146103b157806359d96603146103c457600080fd5b806323b872dd1461033d5780632e280e32146103505780632f745c591461035d5780633ccfd60b1461037057600080fd5b8063081812fc116101e4578063081812fc146102ba578063095ea7b3146102e557806318160ddd146102f85780632180c9161461030a57600080fd5b806301ffc9a71461021657806303c349f91461023e57806305d60ffb1461025357806306fdde03146102a5575b600080fd5b610229610224366004611f52565b61054a565b60405190151581526020015b60405180910390f35b61025161024c366004611f6f565b610575565b005b610286610261366004611fa4565b601060205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610235565b6102ad6105ad565b6040516102359190612017565b6102cd6102c8366004611f6f565b61063f565b6040516001600160a01b039091168152602001610235565b6102516102f336600461202a565b6106d4565b6009545b604051908152602001610235565b610286610318366004611fa4565b601160205260009081526040902080546001909101546001600160a01b039091169082565b61025161034b366004612054565b6107ea565b600e546102299060ff1681565b6102fc61036b36600461202a565b61081b565b6102516108b1565b610251610386366004611f6f565b61090e565b610251610399366004612054565b610a90565b6102fc6103ac366004611f6f565b610aab565b6102516103bf36600461212f565b610b3e565b6102296103d2366004611fa4565b60136020526000908152604090205460ff1681565b6102cd6103f5366004611f6f565b610b7b565b610251610bf2565b6102fc610410366004611fa4565b610c30565b6102ad610cb7565b61043061042b366004611fa4565b610d45565b6040516102359190612178565b600b546001600160a01b03166102cd565b6102fc600f5481565b6102ad610de7565b61025161046d366004611f6f565b610df6565b6102516104803660046121bc565b61103d565b600e5461022990610100900460ff1681565b6102516104a53660046121f8565b611102565b6102296104b8366004611fa4565b60126020526000908152604090205460ff1681565b6102ad6104db366004611f6f565b61113a565b6102516104ee366004612303565b611215565b6102296105013660046123c3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61025161053d366004611fa4565b6113f1565b610251611489565b60006001600160e01b0319821663780e9d6360e01b148061056f575061056f826114d0565b92915050565b600b546001600160a01b031633146105a85760405162461bcd60e51b815260040161059f906123f6565b60405180910390fd5b600f55565b6060600080546105bc9061242b565b80601f01602080910402602001604051908101604052809291908181526020018280546105e89061242b565b80156106355780601f1061060a57610100808354040283529160200191610635565b820191906000526020600020905b81548152906001019060200180831161061857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106b85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059f565b506000908152600460205260409020546001600160a01b031690565b60006106df82610b7b565b9050806001600160a01b0316836001600160a01b0316141561074d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161059f565b336001600160a01b038216148061076957506107698133610501565b6107db5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161059f565b6107e58383611520565b505050565b6107f4338261158e565b6108105760405162461bcd60e51b815260040161059f90612466565b6107e5838383611685565b600061082683610c30565b82106108885760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161059f565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b031633146108db5760405162461bcd60e51b815260040161059f906123f6565b6040514790339082156108fc029083906000818181858888f1935050505015801561090a573d6000803e3d6000fd5b5050565b600e5460ff16156109615760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604482015260640161059f565b600c548161096e60095490565b61097891906124cd565b11156109965760405162461bcd60e51b815260040161059f906124e5565b3360009081526012602052604090205460ff1615156001146109fa5760405162461bcd60e51b815260206004820152601e60248201527f41646472657373206e6f7420466f756e6420696e2077686974656c6973740000604482015260640161059f565b3360009081526010602052604090206001810154821115610a2d5760405162461bcd60e51b815260040161059f9061252e565b60005b82811015610a7257610a4a33610a45600d5490565b611830565b600d8054906000610a5a836125a9565b91905055508080610a6a906125a9565b915050610a30565b5081816001016000828254610a8791906125c4565b90915550505050565b6107e583838360405180602001604052806000815250611102565b6000610ab660095490565b8210610b195760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161059f565b60098281548110610b2c57610b2c6125db565b90600052602060002001549050919050565b600b546001600160a01b03163314610b685760405162461bcd60e51b815260040161059f906123f6565b805161090a906006906020840190611ea3565b6000818152600260205260408120546001600160a01b03168061056f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161059f565b600b546001600160a01b03163314610c1c5760405162461bcd60e51b815260040161059f906123f6565b600e805460ff19811660ff90911615179055565b60006001600160a01b038216610c9b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161059f565b506001600160a01b031660009081526003602052604090205490565b60068054610cc49061242b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf09061242b565b8015610d3d5780601f10610d1257610100808354040283529160200191610d3d565b820191906000526020600020905b815481529060010190602001808311610d2057829003601f168201915b505050505081565b60606000610d5283610c30565b905060008167ffffffffffffffff811115610d6f57610d6f612090565b604051908082528060200260200182016040528015610d98578160200160208202803683370190505b50905060005b82811015610ddf57610db0858261081b565b828281518110610dc257610dc26125db565b602090810291909101015280610dd7816125a9565b915050610d9e565b509392505050565b6060600180546105bc9061242b565b600e54610100900460ff1615610e4e5760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604482015260640161059f565b60008111610e975760405162461bcd60e51b81526020600482015260166024820152757175616e74697479206c657373207468616e206f6e6560501b604482015260640161059f565b600c5481610ea460095490565b610eae91906124cd565b1115610ecc5760405162461bcd60e51b815260040161059f906124e5565b3360009081526013602052604090205460ff16610fc75760408051808201825233808252600f546020808401918252600092835260119052929020905181546001600160a01b0319166001600160a01b03909116178155905160018201819055821115610f4b5760405162461bcd60e51b815260040161059f9061252e565b60005b82811015610f8b57610f6333610a45600d5490565b600d8054906000610f73836125a9565b91905055508080610f83906125a9565b915050610f4e565b50336000908152601360205260408120805460ff1916600190811790915582018054849290610fbb9084906125c4565b9091555061103a915050565b3360009081526011602052604090206001810154821115610ffa5760405162461bcd60e51b815260040161059f9061252e565b60005b82811015610a725761101233610a45600d5490565b600d8054906000611022836125a9565b91905055508080611032906125a9565b915050610ffd565b50565b6001600160a01b0382163314156110965760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161059f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61110c338361158e565b6111285760405162461bcd60e51b815260040161059f90612466565b6111348484848461184a565b50505050565b6000818152600260205260409020546060906001600160a01b03166111b95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161059f565b60006111c361187d565b905060008151116111e3576040518060200160405280600081525061120e565b806111ed8461188c565b6040516020016111fe9291906125f1565b6040516020818303038152906040525b9392505050565b600b546001600160a01b0316331461123f5760405162461bcd60e51b815260040161059f906123f6565b60005b82518110156107e55760126000848381518110611261576112616125db565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16156112cd5760405162461bcd60e51b81526020600482015260156024820152741059191c995cdcc8185b1c9958591e48115e1a5cdd605a1b604482015260640161059f565b60405180604001604052808483815181106112ea576112ea6125db565b60200260200101516001600160a01b03168152602001838381518110611312576113126125db565b602002602001015181525060106000858481518110611333576113336125db565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550602082015181600101559050506001601260008584815181106113ad576113ad6125db565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806113e9816125a9565b915050611242565b600b546001600160a01b0316331461141b5760405162461bcd60e51b815260040161059f906123f6565b6001600160a01b0381166114805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059f565b61103a8161198a565b600b546001600160a01b031633146114b35760405162461bcd60e51b815260040161059f906123f6565b600e805461ff001981166101009182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b148061150157506001600160e01b03198216635b5e139f60e01b145b8061056f57506301ffc9a760e01b6001600160e01b031983161461056f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061155582610b7b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059f565b600061161283610b7b565b9050806001600160a01b0316846001600160a01b0316148061164d5750836001600160a01b03166116428461063f565b6001600160a01b0316145b8061167d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661169882610b7b565b6001600160a01b0316146117005760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161059f565b6001600160a01b0382166117625760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161059f565b61176d8383836119dc565b611778600082611520565b6001600160a01b03831660009081526003602052604081208054600192906117a19084906125c4565b90915550506001600160a01b03821660009081526003602052604081208054600192906117cf9084906124cd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61090a828260405180602001604052806000815250611a94565b611855848484611685565b61186184848484611ac7565b6111345760405162461bcd60e51b815260040161059f90612620565b6060600680546105bc9061242b565b6060816118b05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118da57806118c4816125a9565b91506118d39050600a83612688565b91506118b4565b60008167ffffffffffffffff8111156118f5576118f5612090565b6040519080825280601f01601f19166020018201604052801561191f576020820181803683370190505b5090505b841561167d576119346001836125c4565b9150611941600a8661269c565b61194c9060306124cd565b60f81b818381518110611961576119616125db565b60200101906001600160f81b031916908160001a905350611983600a86612688565b9450611923565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611a3757611a3281600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611a5a565b816001600160a01b0316836001600160a01b031614611a5a57611a5a8382611bc5565b6001600160a01b038216611a71576107e581611c62565b826001600160a01b0316826001600160a01b0316146107e5576107e58282611d11565b611a9e8383611d55565b611aab6000848484611ac7565b6107e55760405162461bcd60e51b815260040161059f90612620565b60006001600160a01b0384163b15611bba57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b0b9033908990889088906004016126b0565b6020604051808303816000875af1925050508015611b46575060408051601f3d908101601f19168201909252611b43918101906126ed565b60015b611ba0573d808015611b74576040519150601f19603f3d011682016040523d82523d6000602084013e611b79565b606091505b508051611b985760405162461bcd60e51b815260040161059f90612620565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061167d565b506001949350505050565b60006001611bd284610c30565b611bdc91906125c4565b600083815260086020526040902054909150808214611c2f576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611c74906001906125c4565b6000838152600a602052604081205460098054939450909284908110611c9c57611c9c6125db565b906000526020600020015490508060098381548110611cbd57611cbd6125db565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611cf557611cf561270a565b6001900381819060005260206000200160009055905550505050565b6000611d1c83610c30565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611dab5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161059f565b6000818152600260205260409020546001600160a01b031615611e105760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161059f565b611e1c600083836119dc565b6001600160a01b0382166000908152600360205260408120805460019290611e459084906124cd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611eaf9061242b565b90600052602060002090601f016020900481019282611ed15760008555611f17565b82601f10611eea57805160ff1916838001178555611f17565b82800160010185558215611f17579182015b82811115611f17578251825591602001919060010190611efc565b50611f23929150611f27565b5090565b5b80821115611f235760008155600101611f28565b6001600160e01b03198116811461103a57600080fd5b600060208284031215611f6457600080fd5b813561120e81611f3c565b600060208284031215611f8157600080fd5b5035919050565b80356001600160a01b0381168114611f9f57600080fd5b919050565b600060208284031215611fb657600080fd5b61120e82611f88565b60005b83811015611fda578181015183820152602001611fc2565b838111156111345750506000910152565b60008151808452612003816020860160208601611fbf565b601f01601f19169290920160200192915050565b60208152600061120e6020830184611feb565b6000806040838503121561203d57600080fd5b61204683611f88565b946020939093013593505050565b60008060006060848603121561206957600080fd5b61207284611f88565b925061208060208501611f88565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156120cf576120cf612090565b604052919050565b600067ffffffffffffffff8311156120f1576120f1612090565b612104601f8401601f19166020016120a6565b905082815283838301111561211857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561214157600080fd5b813567ffffffffffffffff81111561215857600080fd5b8201601f8101841361216957600080fd5b61167d848235602084016120d7565b6020808252825182820181905260009190848201906040850190845b818110156121b057835183529284019291840191600101612194565b50909695505050505050565b600080604083850312156121cf57600080fd5b6121d883611f88565b9150602083013580151581146121ed57600080fd5b809150509250929050565b6000806000806080858703121561220e57600080fd5b61221785611f88565b935061222560208601611f88565b925060408501359150606085013567ffffffffffffffff81111561224857600080fd5b8501601f8101871361225957600080fd5b612268878235602084016120d7565b91505092959194509250565b600067ffffffffffffffff82111561228e5761228e612090565b5060051b60200190565b600082601f8301126122a957600080fd5b813560206122be6122b983612274565b6120a6565b82815260059290921b840181019181810190868411156122dd57600080fd5b8286015b848110156122f857803583529183019183016122e1565b509695505050505050565b6000806040838503121561231657600080fd5b823567ffffffffffffffff8082111561232e57600080fd5b818501915085601f83011261234257600080fd5b813560206123526122b983612274565b82815260059290921b8401810191818101908984111561237157600080fd5b948201945b838610156123965761238786611f88565b82529482019490820190612376565b965050860135925050808211156123ac57600080fd5b506123b985828601612298565b9150509250929050565b600080604083850312156123d657600080fd5b6123df83611f88565b91506123ed60208401611f88565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061243f57607f821691505b6020821081141561246057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124e0576124e06124b7565b500190565b60208082526029908201527f5175616e746974792069732067726561746572207468616e2072656d61696e696040820152686e6720537570706c7960b81b606082015260800190565b60208082526055908201527f54686520416d6f756e742053656c65637465642069732047726561746572207460408201527f68616e207468652052656d61696e696e6720416d6f756e74206f662074686520606082015274546f6b656e2061742074686973204164647265737360581b608082015260a00190565b60006000198214156125bd576125bd6124b7565b5060010190565b6000828210156125d6576125d66124b7565b500390565b634e487b7160e01b600052603260045260246000fd5b60008351612603818460208801611fbf565b835190830190612617818360208801611fbf565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261269757612697612672565b500490565b6000826126ab576126ab612672565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126e390830184611feb565b9695505050505050565b6000602082840312156126ff57600080fd5b815161120e81611f3c565b634e487b7160e01b600052603160045260246000fdfea26469706673582212208e9740ef58fb06779d0c5ebba47e6b8af491f51276d89fe4c04893142c52973564736f6c634300080a0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f6170692e646567656e73616e7461732e696f2f656c7665732f6d657461646174612f00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://api.degensantas.io/elves/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [2] : 68747470733a2f2f6170692e646567656e73616e7461732e696f2f656c766573
Arg [3] : 2f6d657461646174612f00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49315:4564:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42844:224;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;42844:224:0;;;;;;;;50456:110;;;;;;:::i;:::-;;:::i;:::-;;49800:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49800:55:0;;;;;;;;;;-1:-1:-1;;;;;1338:32:1;;;1320:51;;1402:2;1387:18;;1380:34;;;;1293:18;49800:55:0;1146:274:1;30826:100:0;;;:::i;:::-;;;;;;;:::i;32380:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2340:32:1;;;2322:51;;2310:2;2295:18;32380:221:0;2176:203:1;31903:411:0;;;;;;:::i;:::-;;:::i;43484:113::-;43572:10;:17;43484:113;;;2789:25:1;;;2777:2;2762:18;43484:113:0;2643:177:1;49862:62:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49862:62:0;;;;;;33270:339;;;;;;:::i;:::-;;:::i;49463:32::-;;;;;;;;;43152:256;;;;;;:::i;:::-;;:::i;53636:140::-;;;:::i;51054:745::-;;;;;;:::i;:::-;;:::i;33680:185::-;;;;;;:::i;:::-;;:::i;43674:233::-;;;;;;:::i;:::-;;:::i;50150:97::-;;;;;;:::i;:::-;;:::i;49983:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;30520:239;;;;;;:::i;:::-;;:::i;50346:104::-;;;:::i;30250:208::-;;;;;;:::i;:::-;;:::i;29548:22::-;;;:::i;53277:351::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27416:87::-;27489:6;;-1:-1:-1;;;;;27489:6:0;27416:87;;49534:31;;;;;;30995:104;;;:::i;51806:1454::-;;;;;;:::i;:::-;;:::i;32673:295::-;;;;;;:::i;:::-;;:::i;49502:25::-;;;;;;;;;;;;33936:328;;;;;;:::i;:::-;;:::i;49933:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;31170:324;;;;;;:::i;:::-;;:::i;50572:467::-;;;;;;:::i;:::-;;:::i;33039:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;33160:25:0;;;33136:4;33160:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33039:164;28216:192;;;;;;:::i;:::-;;:::i;50257:83::-;;;:::i;42844:224::-;42946:4;-1:-1:-1;;;;;;42970:50:0;;-1:-1:-1;;;42970:50:0;;:90;;;43024:36;43048:11;43024:23;:36::i;:::-;42963:97;42844:224;-1:-1:-1;;42844:224:0:o;50456:110::-;27489:6;;-1:-1:-1;;;;;27489:6:0;26247:10;27636:23;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;;;;;;;;;50531:17:::1;:27:::0;50456:110::o;30826:100::-;30880:13;30913:5;30906:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30826:100;:::o;32380:221::-;32456:7;35863:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35863:16:0;32476:73;;;;-1:-1:-1;;;32476:73:0;;9318:2:1;32476:73:0;;;9300:21:1;9357:2;9337:18;;;9330:30;9396:34;9376:18;;;9369:62;-1:-1:-1;;;9447:18:1;;;9440:42;9499:19;;32476:73:0;9116:408:1;32476:73:0;-1:-1:-1;32569:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32569:24:0;;32380:221::o;31903:411::-;31984:13;32000:23;32015:7;32000:14;:23::i;:::-;31984:39;;32048:5;-1:-1:-1;;;;;32042:11:0;:2;-1:-1:-1;;;;;32042:11:0;;;32034:57;;;;-1:-1:-1;;;32034:57:0;;9731:2:1;32034:57:0;;;9713:21:1;9770:2;9750:18;;;9743:30;9809:34;9789:18;;;9782:62;-1:-1:-1;;;9860:18:1;;;9853:31;9901:19;;32034:57:0;9529:397:1;32034:57:0;26247:10;-1:-1:-1;;;;;32126:21:0;;;;:62;;-1:-1:-1;32151:37:0;32168:5;26247:10;33039:164;:::i;32151:37::-;32104:168;;;;-1:-1:-1;;;32104:168:0;;10133:2:1;32104:168:0;;;10115:21:1;10172:2;10152:18;;;10145:30;10211:34;10191:18;;;10184:62;10282:26;10262:18;;;10255:54;10326:19;;32104:168:0;9931:420:1;32104:168:0;32285:21;32294:2;32298:7;32285:8;:21::i;:::-;31973:341;31903:411;;:::o;33270:339::-;33465:41;26247:10;33498:7;33465:18;:41::i;:::-;33457:103;;;;-1:-1:-1;;;33457:103:0;;;;;;;:::i;:::-;33573:28;33583:4;33589:2;33593:7;33573:9;:28::i;43152:256::-;43249:7;43285:23;43302:5;43285:16;:23::i;:::-;43277:5;:31;43269:87;;;;-1:-1:-1;;;43269:87:0;;10976:2:1;43269:87:0;;;10958:21:1;11015:2;10995:18;;;10988:30;11054:34;11034:18;;;11027:62;-1:-1:-1;;;11105:18:1;;;11098:41;11156:19;;43269:87:0;10774:407:1;43269:87:0;-1:-1:-1;;;;;;43374:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43152:256::o;53636:140::-;27489:6;;-1:-1:-1;;;;;27489:6:0;26247:10;27636:23;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;53731:37:::1;::::0;53699:21:::1;::::0;53739:10:::1;::::0;53731:37;::::1;;;::::0;53699:21;;53684:12:::1;53731:37:::0;53684:12;53731:37;53699:21;53739:10;53731:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53673:103;53636:140::o:0;51054:745::-;51134:15;;;;:24;51126:69;;;;-1:-1:-1;;;51126:69:0;;11388:2:1;51126:69:0;;;11370:21:1;;;11407:18;;;11400:30;11466:34;11446:18;;;11439:62;11518:18;;51126:69:0;11186:356:1;51126:69:0;51236:9;;51226:8;51212:13;43572:10;:17;;43484:113;51212:13;:22;;;;:::i;:::-;:33;;51204:86;;;;-1:-1:-1;;;51204:86:0;;;;;;;:::i;:::-;51323:10;51309:25;;;;:13;:25;;;;;;;;:31;;:25;:31;51301:73;;;;-1:-1:-1;;;51301:73:0;;12424:2:1;51301:73:0;;;12406:21:1;12463:2;12443:18;;;12436:30;12502:32;12482:18;;;12475:60;12552:18;;51301:73:0;12222:354:1;51301:73:0;51434:10;51385:35;51423:22;;;:10;:22;;;;;51464:17;;;;:27;-1:-1:-1;51464:27:0;51456:124;;;;-1:-1:-1;;;51456:124:0;;;;;;;:::i;:::-;51608:9;51603:136;51623:8;51619:1;:12;51603:136;;;51653:36;51663:10;51675:13;53861:7;;;53782:94;51675:13;51653:9;:36::i;:::-;51704:7;:9;;;:7;:9;;;:::i;:::-;;;;;;51633:3;;;;;:::i;:::-;;;;51603:136;;;;51774:8;51755:9;:17;;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;51054:745:0:o;33680:185::-;33818:39;33835:4;33841:2;33845:7;33818:39;;;;;;;;;;;;:16;:39::i;43674:233::-;43749:7;43785:30;43572:10;:17;;43484:113;43785:30;43777:5;:38;43769:95;;;;-1:-1:-1;;;43769:95:0;;13547:2:1;43769:95:0;;;13529:21:1;13586:2;13566:18;;;13559:30;13625:34;13605:18;;;13598:62;-1:-1:-1;;;13676:18:1;;;13669:42;13728:19;;43769:95:0;13345:408:1;43769:95:0;43882:10;43893:5;43882:17;;;;;;;;:::i;:::-;;;;;;;;;43875:24;;43674:233;;;:::o;50150:97::-;27489:6;;-1:-1:-1;;;;;27489:6:0;26247:10;27636:23;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;50221:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;30520:239::-:0;30592:7;30628:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30628:16:0;30663:19;30655:73;;;;-1:-1:-1;;;30655:73:0;;14092:2:1;30655:73:0;;;14074:21:1;14131:2;14111:18;;;14104:30;14170:34;14150:18;;;14143:62;-1:-1:-1;;;14221:18:1;;;14214:39;14270:19;;30655:73:0;13890:405:1;50346:104:0;27489:6;;-1:-1:-1;;;;;27489:6:0;26247:10;27636:23;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;50427:15:::1;::::0;;-1:-1:-1;;50408:34:0;::::1;50427:15;::::0;;::::1;50426:16;50408:34;::::0;;50346:104::o;30250:208::-;30322:7;-1:-1:-1;;;;;30350:19:0;;30342:74;;;;-1:-1:-1;;;30342:74:0;;14502:2:1;30342:74:0;;;14484:21:1;14541:2;14521:18;;;14514:30;14580:34;14560:18;;;14553:62;-1:-1:-1;;;14631:18:1;;;14624:40;14681:19;;30342:74:0;14300:406:1;30342:74:0;-1:-1:-1;;;;;;30434:16:0;;;;;:9;:16;;;;;;;30250:208::o;29548:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53277:351::-;53337:16;53371:13;53387:17;53397:6;53387:9;:17::i;:::-;53371:33;;53415:23;53455:5;53441:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53441:20:0;;53415:46;;53477:13;53472:125;53504:5;53496;:13;53472:125;;;53551:34;53571:6;53579:5;53551:19;:34::i;:::-;53535:6;53542:5;53535:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;53511:7;;;;:::i;:::-;;;;53472:125;;;-1:-1:-1;53614:6:0;53277:351;-1:-1:-1;;;53277:351:0:o;30995:104::-;31051:13;31084:7;31077:14;;;;;:::i;51806:1454::-;51867:8;;;;;;;:17;51859:62;;;;-1:-1:-1;;;51859:62:0;;11388:2:1;51859:62:0;;;11370:21:1;;;11407:18;;;11400:30;11466:34;11446:18;;;11439:62;11518:18;;51859:62:0;11186:356:1;51859:62:0;51949:1;51940:8;:10;51932:44;;;;-1:-1:-1;;;51932:44:0;;14913:2:1;51932:44:0;;;14895:21:1;14952:2;14932:18;;;14925:30;-1:-1:-1;;;14971:18:1;;;14964:52;15033:18;;51932:44:0;14711:346:1;51932:44:0;52019:9;;52009:8;51995:13;43572:10;:17;;43484:113;51995:13;:22;;;;:::i;:::-;:33;;51987:86;;;;-1:-1:-1;;;51987:86:0;;;;;;;:::i;:::-;52107:10;52087:31;;;;:19;:31;;;;;;;;52084:1147;;52180:113;;;;;;;;52229:10;52180:113;;;52262:17;;52180:113;;;;;;;-1:-1:-1;52152:27:0;;;:15;:27;;;;;:141;;;;-1:-1:-1;;;;;;52152:141:0;-1:-1:-1;;;;;52152:141:0;;;;;;;;-1:-1:-1;52152:141:0;;;;;52390:27;;;52382:124;;;;-1:-1:-1;;;52382:124:0;;;;;;;:::i;:::-;52523:9;52518:136;52538:8;52534:1;:12;52518:136;;;52568:36;52578:10;52590:13;53861:7;;;53782:94;52568:36;52619:7;:9;;;:7;:9;;;:::i;:::-;;;;;;52548:3;;;;;:::i;:::-;;;;52518:136;;;-1:-1:-1;52698:10:0;52678:31;;;;:19;:31;;;;;:36;;-1:-1:-1;;52678:36:0;52710:4;52678:36;;;;;;52727:17;;:27;;52746:8;;52678:31;52727:27;;52746:8;;52727:27;:::i;:::-;;;;-1:-1:-1;52084:1147:0;;-1:-1:-1;;52084:1147:0;;52873:10;52817:37;52857:27;;;:15;:27;;;;;52913:17;;;;52903:27;;;52895:124;;;;-1:-1:-1;;;52895:124:0;;;;;;;:::i;:::-;53036:9;53031:136;53051:8;53047:1;:12;53031:136;;;53081:36;53091:10;53103:13;53861:7;;;53782:94;53081:36;53132:7;:9;;;:7;:9;;;:::i;:::-;;;;;;53061:3;;;;;:::i;:::-;;;;53031:136;;52084:1147;51806:1454;:::o;32673:295::-;-1:-1:-1;;;;;32776:24:0;;26247:10;32776:24;;32768:62;;;;-1:-1:-1;;;32768:62:0;;15264:2:1;32768:62:0;;;15246:21:1;15303:2;15283:18;;;15276:30;15342:27;15322:18;;;15315:55;15387:18;;32768:62:0;15062:349:1;32768:62:0;26247:10;32843:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32843:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32843:53:0;;;;;;;;;;32912:48;;540:41:1;;;32843:42:0;;26247:10;32912:48;;513:18:1;32912:48:0;;;;;;;32673:295;;:::o;33936:328::-;34111:41;26247:10;34144:7;34111:18;:41::i;:::-;34103:103;;;;-1:-1:-1;;;34103:103:0;;;;;;;:::i;:::-;34217:39;34231:4;34237:2;34241:7;34250:5;34217:13;:39::i;:::-;33936:328;;;;:::o;31170:324::-;35839:4;35863:16;;;:7;:16;;;;;;31243:13;;-1:-1:-1;;;;;35863:16:0;31269:76;;;;-1:-1:-1;;;31269:76:0;;15618:2:1;31269:76:0;;;15600:21:1;15657:2;15637:18;;;15630:30;15696:34;15676:18;;;15669:62;-1:-1:-1;;;15747:18:1;;;15740:45;15802:19;;31269:76:0;15416:411:1;31269:76:0;31358:18;31379:9;:7;:9::i;:::-;31358:30;;31427:1;31412:4;31406:18;:22;:80;;;;;;;;;;;;;;;;;31455:4;31461:18;:7;:16;:18::i;:::-;31438:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31406:80;31399:87;31170:324;-1:-1:-1;;;31170:324:0:o;50572:467::-;27489:6;;-1:-1:-1;;;;;27489:6:0;26247:10;27636:23;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;50690:6:::1;50685:343;50706:12;:19;50702:1;:23;50685:343;;;50767:13;:30;50781:12;50794:1;50781:15;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50767:30:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50767:30:0;;::::1;;50766:31;50758:64;;;::::0;-1:-1:-1;;;50758:64:0;;16509:2:1;50758:64:0::1;::::0;::::1;16491:21:1::0;16548:2;16528:18;;;16521:30;-1:-1:-1;;;16567:18:1;;;16560:51;16628:18;;50758:64:0::1;16307:345:1::0;50758:64:0::1;50861:110;;;;;;;;50908:12;50921:1;50908:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;50861:110:0::1;;;;;50946:7;50954:1;50946:10;;;;;;;;:::i;:::-;;;;;;;50861:110;;::::0;50833:10:::1;:27;50844:12;50857:1;50844:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;50833:27:0::1;-1:-1:-1::0;;;;;50833:27:0::1;;;;;;;;;;;;:138;;;;;;;;;;;;;-1:-1:-1::0;;;;;50833:138:0::1;;;;;-1:-1:-1::0;;;;;50833:138:0::1;;;;;;;;;;;;;;;;;51016:4;50985:13;:30;50999:12;51012:1;50999:15;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50985:30:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50985:30:0;:35;;-1:-1:-1;;50985:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50727:3;::::1;::::0;::::1;:::i;:::-;;;;50685:343;;28216:192:::0;27489:6;;-1:-1:-1;;;;;27489:6:0;26247:10;27636:23;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28305:22:0;::::1;28297:73;;;::::0;-1:-1:-1;;;28297:73:0;;16859:2:1;28297:73:0::1;::::0;::::1;16841:21:1::0;16898:2;16878:18;;;16871:30;16937:34;16917:18;;;16910:62;-1:-1:-1;;;16988:18:1;;;16981:36;17034:19;;28297:73:0::1;16657:402:1::0;28297:73:0::1;28381:19;28391:8;28381:9;:19::i;50257:83::-:0;27489:6;;-1:-1:-1;;;;;27489:6:0;26247:10;27636:23;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;50324:8:::1;::::0;;-1:-1:-1;;50312:20:0;::::1;50324:8;::::0;;;::::1;;;50323:9;50312:20:::0;;::::1;;::::0;;50257:83::o;29881:305::-;29983:4;-1:-1:-1;;;;;;30020:40:0;;-1:-1:-1;;;30020:40:0;;:105;;-1:-1:-1;;;;;;;30077:48:0;;-1:-1:-1;;;30077:48:0;30020:105;:158;;;-1:-1:-1;;;;;;;;;;19262:40:0;;;30142:36;19153:157;39756:174;39831:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39831:29:0;-1:-1:-1;;;;;39831:29:0;;;;;;;;:24;;39885:23;39831:24;39885:14;:23::i;:::-;-1:-1:-1;;;;;39876:46:0;;;;;;;;;;;39756:174;;:::o;36068:348::-;36161:4;35863:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35863:16:0;36178:73;;;;-1:-1:-1;;;36178:73:0;;17266:2:1;36178:73:0;;;17248:21:1;17305:2;17285:18;;;17278:30;17344:34;17324:18;;;17317:62;-1:-1:-1;;;17395:18:1;;;17388:42;17447:19;;36178:73:0;17064:408:1;36178:73:0;36262:13;36278:23;36293:7;36278:14;:23::i;:::-;36262:39;;36331:5;-1:-1:-1;;;;;36320:16:0;:7;-1:-1:-1;;;;;36320:16:0;;:51;;;;36364:7;-1:-1:-1;;;;;36340:31:0;:20;36352:7;36340:11;:20::i;:::-;-1:-1:-1;;;;;36340:31:0;;36320:51;:87;;;-1:-1:-1;;;;;;33160:25:0;;;33136:4;33160:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36375:32;36312:96;36068:348;-1:-1:-1;;;;36068:348:0:o;39060:578::-;39219:4;-1:-1:-1;;;;;39192:31:0;:23;39207:7;39192:14;:23::i;:::-;-1:-1:-1;;;;;39192:31:0;;39184:85;;;;-1:-1:-1;;;39184:85:0;;17679:2:1;39184:85:0;;;17661:21:1;17718:2;17698:18;;;17691:30;17757:34;17737:18;;;17730:62;-1:-1:-1;;;17808:18:1;;;17801:39;17857:19;;39184:85:0;17477:405:1;39184:85:0;-1:-1:-1;;;;;39288:16:0;;39280:65;;;;-1:-1:-1;;;39280:65:0;;18089:2:1;39280:65:0;;;18071:21:1;18128:2;18108:18;;;18101:30;18167:34;18147:18;;;18140:62;-1:-1:-1;;;18218:18:1;;;18211:34;18262:19;;39280:65:0;17887:400:1;39280:65:0;39358:39;39379:4;39385:2;39389:7;39358:20;:39::i;:::-;39462:29;39479:1;39483:7;39462:8;:29::i;:::-;-1:-1:-1;;;;;39504:15:0;;;;;;:9;:15;;;;;:20;;39523:1;;39504:15;:20;;39523:1;;39504:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39535:13:0;;;;;;:9;:13;;;;;:18;;39552:1;;39535:13;:18;;39552:1;;39535:18;:::i;:::-;;;;-1:-1:-1;;39564:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39564:21:0;-1:-1:-1;;;;;39564:21:0;;;;;;;;;39603:27;;39564:16;;39603:27;;;;;;;39060:578;;;:::o;36758:110::-;36834:26;36844:2;36848:7;36834:26;;;;;;;;;;;;:9;:26::i;35146:315::-;35303:28;35313:4;35319:2;35323:7;35303:9;:28::i;:::-;35350:48;35373:4;35379:2;35383:7;35392:5;35350:22;:48::i;:::-;35342:111;;;;-1:-1:-1;;;35342:111:0;;;;;;;:::i;31742:99::-;31792:13;31825:8;31818:15;;;;;:::i;7181:723::-;7237:13;7458:10;7454:53;;-1:-1:-1;;7485:10:0;;;;;;;;;;;;-1:-1:-1;;;7485:10:0;;;;;7181:723::o;7454:53::-;7532:5;7517:12;7573:78;7580:9;;7573:78;;7606:8;;;;:::i;:::-;;-1:-1:-1;7629:10:0;;-1:-1:-1;7637:2:0;7629:10;;:::i;:::-;;;7573:78;;;7661:19;7693:6;7683:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7683:17:0;;7661:39;;7711:154;7718:10;;7711:154;;7745:11;7755:1;7745:11;;:::i;:::-;;-1:-1:-1;7814:10:0;7822:2;7814:5;:10;:::i;:::-;7801:24;;:2;:24;:::i;:::-;7788:39;;7771:6;7778;7771:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7771:56:0;;;;;;;;-1:-1:-1;7842:11:0;7851:2;7842:11;;:::i;:::-;;;7711:154;;28416:173;28491:6;;;-1:-1:-1;;;;;28508:17:0;;;-1:-1:-1;;;;;;28508:17:0;;;;;;;28541:40;;28491:6;;;28508:17;28491:6;;28541:40;;28472:16;;28541:40;28461:128;28416:173;:::o;44520:589::-;-1:-1:-1;;;;;44726:18:0;;44722:187;;44761:40;44793:7;45936:10;:17;;45909:24;;;;:15;:24;;;;;:44;;;45964:24;;;;;;;;;;;;45832:164;44761:40;44722:187;;;44831:2;-1:-1:-1;;;;;44823:10:0;:4;-1:-1:-1;;;;;44823:10:0;;44819:90;;44850:47;44883:4;44889:7;44850:32;:47::i;:::-;-1:-1:-1;;;;;44923:16:0;;44919:183;;44956:45;44993:7;44956:36;:45::i;44919:183::-;45029:4;-1:-1:-1;;;;;45023:10:0;:2;-1:-1:-1;;;;;45023:10:0;;45019:83;;45050:40;45078:2;45082:7;45050:27;:40::i;37095:321::-;37225:18;37231:2;37235:7;37225:5;:18::i;:::-;37276:54;37307:1;37311:2;37315:7;37324:5;37276:22;:54::i;:::-;37254:154;;;;-1:-1:-1;;;37254:154:0;;;;;;;:::i;40495:803::-;40650:4;-1:-1:-1;;;;;40671:13:0;;9971:20;10019:8;40667:624;;40707:72;;-1:-1:-1;;;40707:72:0;;-1:-1:-1;;;;;40707:36:0;;;;;:72;;26247:10;;40758:4;;40764:7;;40773:5;;40707:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40707:72:0;;;;;;;;-1:-1:-1;;40707:72:0;;;;;;;;;;;;:::i;:::-;;;40703:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40953:13:0;;40949:272;;40996:60;;-1:-1:-1;;;40996:60:0;;;;;;;:::i;40949:272::-;41171:6;41165:13;41156:6;41152:2;41148:15;41141:38;40703:533;-1:-1:-1;;;;;;40830:55:0;-1:-1:-1;;;40830:55:0;;-1:-1:-1;40823:62:0;;40667:624;-1:-1:-1;41275:4:0;40495:803;;;;;;:::o;46623:988::-;46889:22;46939:1;46914:22;46931:4;46914:16;:22::i;:::-;:26;;;;:::i;:::-;46951:18;46972:26;;;:17;:26;;;;;;46889:51;;-1:-1:-1;47105:28:0;;;47101:328;;-1:-1:-1;;;;;47172:18:0;;47150:19;47172:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47223:30;;;;;;:44;;;47340:30;;:17;:30;;;;;:43;;;47101:328;-1:-1:-1;47525:26:0;;;;:17;:26;;;;;;;;47518:33;;;-1:-1:-1;;;;;47569:18:0;;;;;:12;:18;;;;;:34;;;;;;;47562:41;46623:988::o;47906:1079::-;48184:10;:17;48159:22;;48184:21;;48204:1;;48184:21;:::i;:::-;48216:18;48237:24;;;:15;:24;;;;;;48610:10;:26;;48159:46;;-1:-1:-1;48237:24:0;;48159:46;;48610:26;;;;;;:::i;:::-;;;;;;;;;48588:48;;48674:11;48649:10;48660;48649:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48754:28;;;:15;:28;;;;;;;:41;;;48926:24;;;;;48919:31;48961:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47977:1008;;;47906:1079;:::o;45410:221::-;45495:14;45512:20;45529:2;45512:16;:20::i;:::-;-1:-1:-1;;;;;45543:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45588:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45410:221:0:o;37752:382::-;-1:-1:-1;;;;;37832:16:0;;37824:61;;;;-1:-1:-1;;;37824:61:0;;20167:2:1;37824:61:0;;;20149:21:1;;;20186:18;;;20179:30;20245:34;20225:18;;;20218:62;20297:18;;37824:61:0;19965:356:1;37824:61:0;35839:4;35863:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35863:16:0;:30;37896:58;;;;-1:-1:-1;;;37896:58:0;;20528:2:1;37896:58:0;;;20510:21:1;20567:2;20547:18;;;20540:30;20606;20586:18;;;20579:58;20654:18;;37896:58:0;20326:352:1;37896:58:0;37967:45;37996:1;38000:2;38004:7;37967:20;:45::i;:::-;-1:-1:-1;;;;;38025:13:0;;;;;;:9;:13;;;;;:18;;38042:1;;38025:13;:18;;38042:1;;38025:18;:::i;:::-;;;;-1:-1:-1;;38054:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38054:21:0;-1:-1:-1;;;;;38054:21:0;;;;;;;;38093:33;;38054:16;;;38093:33;;38054:16;;38093:33;37752:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;777:173::-;845:20;;-1:-1:-1;;;;;894:31:1;;884:42;;874:70;;940:1;937;930:12;874:70;777:173;;;:::o;955:186::-;1014:6;1067:2;1055:9;1046:7;1042:23;1038:32;1035:52;;;1083:1;1080;1073:12;1035:52;1106:29;1125:9;1106:29;:::i;1425:258::-;1497:1;1507:113;1521:6;1518:1;1515:13;1507:113;;;1597:11;;;1591:18;1578:11;;;1571:39;1543:2;1536:10;1507:113;;;1638:6;1635:1;1632:13;1629:48;;;-1:-1:-1;;1673:1:1;1655:16;;1648:27;1425:258::o;1688:::-;1730:3;1768:5;1762:12;1795:6;1790:3;1783:19;1811:63;1867:6;1860:4;1855:3;1851:14;1844:4;1837:5;1833:16;1811:63;:::i;:::-;1928:2;1907:15;-1:-1:-1;;1903:29:1;1894:39;;;;1935:4;1890:50;;1688:258;-1:-1:-1;;1688:258:1:o;1951:220::-;2100:2;2089:9;2082:21;2063:4;2120:45;2161:2;2150:9;2146:18;2138:6;2120:45;:::i;2384:254::-;2452:6;2460;2513:2;2501:9;2492:7;2488:23;2484:32;2481:52;;;2529:1;2526;2519:12;2481:52;2552:29;2571:9;2552:29;:::i;:::-;2542:39;2628:2;2613:18;;;;2600:32;;-1:-1:-1;;;2384:254:1:o;2825:328::-;2902:6;2910;2918;2971:2;2959:9;2950:7;2946:23;2942:32;2939:52;;;2987:1;2984;2977:12;2939:52;3010:29;3029:9;3010:29;:::i;:::-;3000:39;;3058:38;3092:2;3081:9;3077:18;3058:38;:::i;:::-;3048:48;;3143:2;3132:9;3128:18;3115:32;3105:42;;2825:328;;;;;:::o;3158:127::-;3219:10;3214:3;3210:20;3207:1;3200:31;3250:4;3247:1;3240:15;3274:4;3271:1;3264:15;3290:275;3361:2;3355:9;3426:2;3407:13;;-1:-1:-1;;3403:27:1;3391:40;;3461:18;3446:34;;3482:22;;;3443:62;3440:88;;;3508:18;;:::i;:::-;3544:2;3537:22;3290:275;;-1:-1:-1;3290:275:1:o;3570:407::-;3635:5;3669:18;3661:6;3658:30;3655:56;;;3691:18;;:::i;:::-;3729:57;3774:2;3753:15;;-1:-1:-1;;3749:29:1;3780:4;3745:40;3729:57;:::i;:::-;3720:66;;3809:6;3802:5;3795:21;3849:3;3840:6;3835:3;3831:16;3828:25;3825:45;;;3866:1;3863;3856:12;3825:45;3915:6;3910:3;3903:4;3896:5;3892:16;3879:43;3969:1;3962:4;3953:6;3946:5;3942:18;3938:29;3931:40;3570:407;;;;;:::o;3982:451::-;4051:6;4104:2;4092:9;4083:7;4079:23;4075:32;4072:52;;;4120:1;4117;4110:12;4072:52;4160:9;4147:23;4193:18;4185:6;4182:30;4179:50;;;4225:1;4222;4215:12;4179:50;4248:22;;4301:4;4293:13;;4289:27;-1:-1:-1;4279:55:1;;4330:1;4327;4320:12;4279:55;4353:74;4419:7;4414:2;4401:16;4396:2;4392;4388:11;4353:74;:::i;4438:632::-;4609:2;4661:21;;;4731:13;;4634:18;;;4753:22;;;4580:4;;4609:2;4832:15;;;;4806:2;4791:18;;;4580:4;4875:169;4889:6;4886:1;4883:13;4875:169;;;4950:13;;4938:26;;5019:15;;;;4984:12;;;;4911:1;4904:9;4875:169;;;-1:-1:-1;5061:3:1;;4438:632;-1:-1:-1;;;;;;4438:632:1:o;5075:347::-;5140:6;5148;5201:2;5189:9;5180:7;5176:23;5172:32;5169:52;;;5217:1;5214;5207:12;5169:52;5240:29;5259:9;5240:29;:::i;:::-;5230:39;;5319:2;5308:9;5304:18;5291:32;5366:5;5359:13;5352:21;5345:5;5342:32;5332:60;;5388:1;5385;5378:12;5332:60;5411:5;5401:15;;;5075:347;;;;;:::o;5427:667::-;5522:6;5530;5538;5546;5599:3;5587:9;5578:7;5574:23;5570:33;5567:53;;;5616:1;5613;5606:12;5567:53;5639:29;5658:9;5639:29;:::i;:::-;5629:39;;5687:38;5721:2;5710:9;5706:18;5687:38;:::i;:::-;5677:48;;5772:2;5761:9;5757:18;5744:32;5734:42;;5827:2;5816:9;5812:18;5799:32;5854:18;5846:6;5843:30;5840:50;;;5886:1;5883;5876:12;5840:50;5909:22;;5962:4;5954:13;;5950:27;-1:-1:-1;5940:55:1;;5991:1;5988;5981:12;5940:55;6014:74;6080:7;6075:2;6062:16;6057:2;6053;6049:11;6014:74;:::i;:::-;6004:84;;;5427:667;;;;;;;:::o;6099:183::-;6159:4;6192:18;6184:6;6181:30;6178:56;;;6214:18;;:::i;:::-;-1:-1:-1;6259:1:1;6255:14;6271:4;6251:25;;6099:183::o;6287:662::-;6341:5;6394:3;6387:4;6379:6;6375:17;6371:27;6361:55;;6412:1;6409;6402:12;6361:55;6448:6;6435:20;6474:4;6498:60;6514:43;6554:2;6514:43;:::i;:::-;6498:60;:::i;:::-;6592:15;;;6678:1;6674:10;;;;6662:23;;6658:32;;;6623:12;;;;6702:15;;;6699:35;;;6730:1;6727;6720:12;6699:35;6766:2;6758:6;6754:15;6778:142;6794:6;6789:3;6786:15;6778:142;;;6860:17;;6848:30;;6898:12;;;;6811;;6778:142;;;-1:-1:-1;6938:5:1;6287:662;-1:-1:-1;;;;;;6287:662:1:o;6954:1146::-;7072:6;7080;7133:2;7121:9;7112:7;7108:23;7104:32;7101:52;;;7149:1;7146;7139:12;7101:52;7189:9;7176:23;7218:18;7259:2;7251:6;7248:14;7245:34;;;7275:1;7272;7265:12;7245:34;7313:6;7302:9;7298:22;7288:32;;7358:7;7351:4;7347:2;7343:13;7339:27;7329:55;;7380:1;7377;7370:12;7329:55;7416:2;7403:16;7438:4;7462:60;7478:43;7518:2;7478:43;:::i;7462:60::-;7556:15;;;7638:1;7634:10;;;;7626:19;;7622:28;;;7587:12;;;;7662:19;;;7659:39;;;7694:1;7691;7684:12;7659:39;7718:11;;;;7738:148;7754:6;7749:3;7746:15;7738:148;;;7820:23;7839:3;7820:23;:::i;:::-;7808:36;;7771:12;;;;7864;;;;7738:148;;;7905:5;-1:-1:-1;;7948:18:1;;7935:32;;-1:-1:-1;;7979:16:1;;;7976:36;;;8008:1;8005;7998:12;7976:36;;8031:63;8086:7;8075:8;8064:9;8060:24;8031:63;:::i;:::-;8021:73;;;6954:1146;;;;;:::o;8105:260::-;8173:6;8181;8234:2;8222:9;8213:7;8209:23;8205:32;8202:52;;;8250:1;8247;8240:12;8202:52;8273:29;8292:9;8273:29;:::i;:::-;8263:39;;8321:38;8355:2;8344:9;8340:18;8321:38;:::i;:::-;8311:48;;8105:260;;;;;:::o;8370:356::-;8572:2;8554:21;;;8591:18;;;8584:30;8650:34;8645:2;8630:18;;8623:62;8717:2;8702:18;;8370:356::o;8731:380::-;8810:1;8806:12;;;;8853;;;8874:61;;8928:4;8920:6;8916:17;8906:27;;8874:61;8981:2;8973:6;8970:14;8950:18;8947:38;8944:161;;;9027:10;9022:3;9018:20;9015:1;9008:31;9062:4;9059:1;9052:15;9090:4;9087:1;9080:15;8944:161;;8731:380;;;:::o;10356:413::-;10558:2;10540:21;;;10597:2;10577:18;;;10570:30;10636:34;10631:2;10616:18;;10609:62;-1:-1:-1;;;10702:2:1;10687:18;;10680:47;10759:3;10744:19;;10356:413::o;11547:127::-;11608:10;11603:3;11599:20;11596:1;11589:31;11639:4;11636:1;11629:15;11663:4;11660:1;11653:15;11679:128;11719:3;11750:1;11746:6;11743:1;11740:13;11737:39;;;11756:18;;:::i;:::-;-1:-1:-1;11792:9:1;;11679:128::o;11812:405::-;12014:2;11996:21;;;12053:2;12033:18;;;12026:30;12092:34;12087:2;12072:18;;12065:62;-1:-1:-1;;;12158:2:1;12143:18;;12136:39;12207:3;12192:19;;11812:405::o;12581:489::-;12783:2;12765:21;;;12822:2;12802:18;;;12795:30;12861:34;12856:2;12841:18;;12834:62;12932:34;12927:2;12912:18;;12905:62;-1:-1:-1;;;12998:3:1;12983:19;;12976:52;13060:3;13045:19;;12581:489::o;13075:135::-;13114:3;-1:-1:-1;;13135:17:1;;13132:43;;;13155:18;;:::i;:::-;-1:-1:-1;13202:1:1;13191:13;;13075:135::o;13215:125::-;13255:4;13283:1;13280;13277:8;13274:34;;;13288:18;;:::i;:::-;-1:-1:-1;13325:9:1;;13215:125::o;13758:127::-;13819:10;13814:3;13810:20;13807:1;13800:31;13850:4;13847:1;13840:15;13874:4;13871:1;13864:15;15832:470;16011:3;16049:6;16043:13;16065:53;16111:6;16106:3;16099:4;16091:6;16087:17;16065:53;:::i;:::-;16181:13;;16140:16;;;;16203:57;16181:13;16140:16;16237:4;16225:17;;16203:57;:::i;:::-;16276:20;;15832:470;-1:-1:-1;;;;15832:470:1:o;18292:414::-;18494:2;18476:21;;;18533:2;18513:18;;;18506:30;18572:34;18567:2;18552:18;;18545:62;-1:-1:-1;;;18638:2:1;18623:18;;18616:48;18696:3;18681:19;;18292:414::o;18711:127::-;18772:10;18767:3;18763:20;18760:1;18753:31;18803:4;18800:1;18793:15;18827:4;18824:1;18817:15;18843:120;18883:1;18909;18899:35;;18914:18;;:::i;:::-;-1:-1:-1;18948:9:1;;18843:120::o;18968:112::-;19000:1;19026;19016:35;;19031:18;;:::i;:::-;-1:-1:-1;19065:9:1;;18968:112::o;19085:489::-;-1:-1:-1;;;;;19354:15:1;;;19336:34;;19406:15;;19401:2;19386:18;;19379:43;19453:2;19438:18;;19431:34;;;19501:3;19496:2;19481:18;;19474:31;;;19279:4;;19522:46;;19548:19;;19540:6;19522:46;:::i;:::-;19514:54;19085:489;-1:-1:-1;;;;;;19085:489:1:o;19579:249::-;19648:6;19701:2;19689:9;19680:7;19676:23;19672:32;19669:52;;;19717:1;19714;19707:12;19669:52;19749:9;19743:16;19768:30;19792:5;19768:30;:::i;19833:127::-;19894:10;19889:3;19885:20;19882:1;19875:31;19925:4;19922:1;19915:15;19949:4;19946:1;19939:15

Swarm Source

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