ETH Price: $3,282.24 (-3.76%)
Gas: 15 Gwei

Token

Euphorians (Euphorians)
 

Overview

Max Total Supply

0 Euphorians

Holders

553

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
7995.eth
Balance
3 Euphorians
0xe51b24fa0dfcd87285f369e169c2eb903071d5a4
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:
Euphorians

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-10
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol

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() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _setOwner(newOwner);
    }

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

// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        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.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.5;

contract Euphorians is ERC721, Ownable {
    using Strings for uint256;
    uint256 public cost = 0.06969 ether;
    uint256 public maxSupply = 6969;
    uint256 public maxMintAmount = 5;
    uint256 public tokenCount = 0;
    bool public paused = true;
    bool public reveal;
    string public baseURI;
    string public notRevealedUri;

    mapping(address => uint256) public addressMintedBalance;

    constructor(string memory _initBaseURI, string memory _initNotRevealedUri)
        ERC721("Euphorians", "Euphorians")
    {
        baseURI = _initBaseURI;
        notRevealedUri = _initNotRevealedUri;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (reveal) {
            return
                bytes(baseURI).length > 0
                    ? string(
                        abi.encodePacked(
                            baseURI,
                            "/",
                            tokenId.toString(),
                            ".json"
                        )
                    )
                    : "";
        } else {
            return bytes(notRevealedUri).length > 0 ? notRevealedUri : "";
        }
    }

    function mint(uint256 _amount) external payable {
        require(!paused, "Euphorians - The Contract is Paused");
        require(
            tokenCount + _amount <= maxSupply,
            "Euphorians - max NFT limit exceeded"
        );
        if (msg.sender != owner()) {
            require(
                _amount <= maxMintAmount,
                "Euphorians - max mint amount limit exceeded"
            );
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(
                ownerMintedCount + _amount <= maxMintAmount,
                "Euphorians - max NFT per address exceeded"
            );
            require(
                msg.value >= cost * _amount,
                "Euphorians - insufficient ethers"
            );
        }
        for (uint256 i = 1; i <= _amount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, ++tokenCount);
        }
    }

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner {
        maxMintAmount = _maxMintAmount;
    }

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

    function pause() public onlyOwner {
        paused = !paused;
    }

    function revealNFT() external onlyOwner {
        reveal = !reveal;
    }

    function withdraw() public onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266f796af8e65a000600755611b3960085560056009556000600a55600b805460ff191660011790553480156200003957600080fd5b50604051620023b7380380620023b78339810160408190526200005c91620002d1565b604080518082018252600a80825269457570686f7269616e7360b01b602080840182815285518087019096529285528401528151919291620000a1916000916200015e565b508051620000b79060019060208401906200015e565b505050620000d4620000ce6200010860201b60201c565b6200010c565b8151620000e990600c9060208501906200015e565b508051620000ff90600d9060208401906200015e565b50505062000378565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016c906200033b565b90600052602060002090601f016020900481019282620001905760008555620001db565b82601f10620001ab57805160ff1916838001178555620001db565b82800160010185558215620001db579182015b82811115620001db578251825591602001919060010190620001be565b50620001e9929150620001ed565b5090565b5b80821115620001e95760008155600101620001ee565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200022c57600080fd5b81516001600160401b038082111562000249576200024962000204565b604051601f8301601f19908116603f0116810190828211818310171562000274576200027462000204565b816040528381526020925086838588010111156200029157600080fd5b600091505b83821015620002b5578582018301518183018401529082019062000296565b83821115620002c75760008385830101525b9695505050505050565b60008060408385031215620002e557600080fd5b82516001600160401b0380821115620002fd57600080fd5b6200030b868387016200021a565b935060208501519150808211156200032257600080fd5b5062000331858286016200021a565b9150509250929050565b600181811c908216806200035057607f821691505b602082108114156200037257634e487b7160e01b600052602260045260246000fd5b50919050565b61202f80620003886000396000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd14610533578063d5abeb0114610553578063e985e9c514610569578063f2fde38b146105b257600080fd5b8063a0712d68146104c1578063a22cb465146104d4578063a475b5dd146104f4578063b88d4fde1461051357600080fd5b80638456cb59116100d15780638456cb59146104635780638da5cb5b1461047857806395d89b41146104965780639f181b5e146104ab57600080fd5b80636352211e146103f95780636c0360eb1461041957806370a082311461042e578063715018a61461044e57600080fd5b806318cae2691161017a57806342842e0e1161014957806342842e0e1461037f57806344a0d68a1461039f57806355f804b3146103bf5780635c975abb146103df57600080fd5b806318cae26914610307578063239c70ae1461033457806323b872dd1461034a5780633ccfd60b1461036a57600080fd5b8063081c8c44116101b6578063081c8c441461028e578063088a4ed0146102a3578063095ea7b3146102c357806313faede6146102e357600080fd5b806301ffc9a7146101e857806304b4bba91461021d57806306fdde0314610234578063081812fc14610256575b600080fd5b3480156101f457600080fd5b506102086102033660046119d2565b6105d2565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610624565b005b34801561024057600080fd5b50610249610674565b6040516102149190611a4e565b34801561026257600080fd5b50610276610271366004611a61565b610706565b6040516001600160a01b039091168152602001610214565b34801561029a57600080fd5b5061024961079b565b3480156102af57600080fd5b506102326102be366004611a61565b610829565b3480156102cf57600080fd5b506102326102de366004611a91565b610858565b3480156102ef57600080fd5b506102f960075481565b604051908152602001610214565b34801561031357600080fd5b506102f9610322366004611abb565b600e6020526000908152604090205481565b34801561034057600080fd5b506102f960095481565b34801561035657600080fd5b50610232610365366004611ad6565b61096e565b34801561037657600080fd5b5061023261099f565b34801561038b57600080fd5b5061023261039a366004611ad6565b610a3d565b3480156103ab57600080fd5b506102326103ba366004611a61565b610a58565b3480156103cb57600080fd5b506102326103da366004611b9e565b610a87565b3480156103eb57600080fd5b50600b546102089060ff1681565b34801561040557600080fd5b50610276610414366004611a61565b610ac8565b34801561042557600080fd5b50610249610b3f565b34801561043a57600080fd5b506102f9610449366004611abb565b610b4c565b34801561045a57600080fd5b50610232610bd3565b34801561046f57600080fd5b50610232610c09565b34801561048457600080fd5b506006546001600160a01b0316610276565b3480156104a257600080fd5b50610249610c47565b3480156104b757600080fd5b506102f9600a5481565b6102326104cf366004611a61565b610c56565b3480156104e057600080fd5b506102326104ef366004611be7565b610ecd565b34801561050057600080fd5b50600b5461020890610100900460ff1681565b34801561051f57600080fd5b5061023261052e366004611c23565b610f92565b34801561053f57600080fd5b5061024961054e366004611a61565b610fca565b34801561055f57600080fd5b506102f960085481565b34801561057557600080fd5b50610208610584366004611c9f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105be57600080fd5b506102326105cd366004611abb565b611176565b60006001600160e01b031982166380ac58cd60e01b148061060357506001600160e01b03198216635b5e139f60e01b145b8061061e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106575760405162461bcd60e51b815260040161064e90611cd2565b60405180910390fd5b600b805461ff001981166101009182900460ff1615909102179055565b60606000805461068390611d07565b80601f01602080910402602001604051908101604052809291908181526020018280546106af90611d07565b80156106fc5780601f106106d1576101008083540402835291602001916106fc565b820191906000526020600020905b8154815290600101906020018083116106df57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661077f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161064e565b506000908152600460205260409020546001600160a01b031690565b600d80546107a890611d07565b80601f01602080910402602001604051908101604052809291908181526020018280546107d490611d07565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b505050505081565b6006546001600160a01b031633146108535760405162461bcd60e51b815260040161064e90611cd2565b600955565b600061086382610ac8565b9050806001600160a01b0316836001600160a01b031614156108d15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161064e565b336001600160a01b03821614806108ed57506108ed8133610584565b61095f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161064e565b610969838361120e565b505050565b610978338261127c565b6109945760405162461bcd60e51b815260040161064e90611d42565b610969838383611373565b6006546001600160a01b031633146109c95760405162461bcd60e51b815260040161064e90611cd2565b60006109dd6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a27576040519150601f19603f3d011682016040523d82523d6000602084013e610a2c565b606091505b5050905080610a3a57600080fd5b50565b61096983838360405180602001604052806000815250610f92565b6006546001600160a01b03163314610a825760405162461bcd60e51b815260040161064e90611cd2565b600755565b6006546001600160a01b03163314610ab15760405162461bcd60e51b815260040161064e90611cd2565b8051610ac490600c906020840190611923565b5050565b6000818152600260205260408120546001600160a01b03168061061e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161064e565b600c80546107a890611d07565b60006001600160a01b038216610bb75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161064e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610bfd5760405162461bcd60e51b815260040161064e90611cd2565b610c076000611513565b565b6006546001600160a01b03163314610c335760405162461bcd60e51b815260040161064e90611cd2565b600b805460ff19811660ff90911615179055565b60606001805461068390611d07565b600b5460ff1615610cb55760405162461bcd60e51b815260206004820152602360248201527f457570686f7269616e73202d2054686520436f6e7472616374206973205061756044820152621cd95960ea1b606482015260840161064e565b60085481600a54610cc69190611da9565b1115610d205760405162461bcd60e51b815260206004820152602360248201527f457570686f7269616e73202d206d6178204e4654206c696d697420657863656560448201526219195960ea1b606482015260840161064e565b6006546001600160a01b03163314610e7457600954811115610d985760405162461bcd60e51b815260206004820152602b60248201527f457570686f7269616e73202d206d6178206d696e7420616d6f756e74206c696d60448201526a1a5d08195e18d95959195960aa1b606482015260840161064e565b336000908152600e6020526040902054600954610db58383611da9565b1115610e155760405162461bcd60e51b815260206004820152602960248201527f457570686f7269616e73202d206d6178204e465420706572206164647265737360448201526808195e18d95959195960ba1b606482015260840161064e565b81600754610e239190611dc1565b341015610e725760405162461bcd60e51b815260206004820181905260248201527f457570686f7269616e73202d20696e73756666696369656e7420657468657273604482015260640161064e565b505b60015b818111610ac457336000908152600e60205260408120805491610e9983611de0565b9190505550610ebb33600a60008154610eb190611de0565b9182905550611565565b80610ec581611de0565b915050610e77565b6001600160a01b038216331415610f265760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161064e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f9c338361127c565b610fb85760405162461bcd60e51b815260040161064e90611d42565b610fc48484848461157f565b50505050565b6000818152600260205260409020546060906001600160a01b03166110495760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161064e565b600b54610100900460ff16156110b5576000600c805461106890611d07565b905011611084576040518060200160405280600081525061061e565b600c61108f836115b2565b6040516020016110a0929190611e17565b60405160208183030381529060405292915050565b6000600d80546110c490611d07565b9050116110e0576040518060200160405280600081525061061e565b600d80546110ed90611d07565b80601f016020809104026020016040519081016040528092919081815260200182805461111990611d07565b80156111665780601f1061113b57610100808354040283529160200191611166565b820191906000526020600020905b81548152906001019060200180831161114957829003601f168201915b505050505092915050565b919050565b6006546001600160a01b031633146111a05760405162461bcd60e51b815260040161064e90611cd2565b6001600160a01b0381166112055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161064e565b610a3a81611513565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061124382610ac8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112f55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161064e565b600061130083610ac8565b9050806001600160a01b0316846001600160a01b0316148061133b5750836001600160a01b031661133084610706565b6001600160a01b0316145b8061136b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661138682610ac8565b6001600160a01b0316146113ee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161064e565b6001600160a01b0382166114505760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161064e565b61145b60008261120e565b6001600160a01b0383166000908152600360205260408120805460019290611484908490611ee2565b90915550506001600160a01b03821660009081526003602052604081208054600192906114b2908490611da9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ac48282604051806020016040528060008152506116b0565b61158a848484611373565b611596848484846116e3565b610fc45760405162461bcd60e51b815260040161064e90611ef9565b6060816115d65750506040805180820190915260018152600360fc1b602082015290565b8160005b811561160057806115ea81611de0565b91506115f99050600a83611f61565b91506115da565b60008167ffffffffffffffff81111561161b5761161b611b12565b6040519080825280601f01601f191660200182016040528015611645576020820181803683370190505b5090505b841561136b5761165a600183611ee2565b9150611667600a86611f75565b611672906030611da9565b60f81b81838151811061168757611687611f89565b60200101906001600160f81b031916908160001a9053506116a9600a86611f61565b9450611649565b6116ba83836117e1565b6116c760008484846116e3565b6109695760405162461bcd60e51b815260040161064e90611ef9565b60006001600160a01b0384163b156117d657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611727903390899088908890600401611f9f565b6020604051808303816000875af1925050508015611762575060408051601f3d908101601f1916820190925261175f91810190611fdc565b60015b6117bc573d808015611790576040519150601f19603f3d011682016040523d82523d6000602084013e611795565b606091505b5080516117b45760405162461bcd60e51b815260040161064e90611ef9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061136b565b506001949350505050565b6001600160a01b0382166118375760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161064e565b6000818152600260205260409020546001600160a01b03161561189c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161064e565b6001600160a01b03821660009081526003602052604081208054600192906118c5908490611da9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461192f90611d07565b90600052602060002090601f0160209004810192826119515760008555611997565b82601f1061196a57805160ff1916838001178555611997565b82800160010185558215611997579182015b8281111561199757825182559160200191906001019061197c565b506119a39291506119a7565b5090565b5b808211156119a357600081556001016119a8565b6001600160e01b031981168114610a3a57600080fd5b6000602082840312156119e457600080fd5b81356119ef816119bc565b9392505050565b60005b83811015611a115781810151838201526020016119f9565b83811115610fc45750506000910152565b60008151808452611a3a8160208601602086016119f6565b601f01601f19169290920160200192915050565b6020815260006119ef6020830184611a22565b600060208284031215611a7357600080fd5b5035919050565b80356001600160a01b038116811461117157600080fd5b60008060408385031215611aa457600080fd5b611aad83611a7a565b946020939093013593505050565b600060208284031215611acd57600080fd5b6119ef82611a7a565b600080600060608486031215611aeb57600080fd5b611af484611a7a565b9250611b0260208501611a7a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b4357611b43611b12565b604051601f8501601f19908116603f01168101908282118183101715611b6b57611b6b611b12565b81604052809350858152868686011115611b8457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611bb057600080fd5b813567ffffffffffffffff811115611bc757600080fd5b8201601f81018413611bd857600080fd5b61136b84823560208401611b28565b60008060408385031215611bfa57600080fd5b611c0383611a7a565b915060208301358015158114611c1857600080fd5b809150509250929050565b60008060008060808587031215611c3957600080fd5b611c4285611a7a565b9350611c5060208601611a7a565b925060408501359150606085013567ffffffffffffffff811115611c7357600080fd5b8501601f81018713611c8457600080fd5b611c9387823560208401611b28565b91505092959194509250565b60008060408385031215611cb257600080fd5b611cbb83611a7a565b9150611cc960208401611a7a565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611d1b57607f821691505b60208210811415611d3c57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611dbc57611dbc611d93565b500190565b6000816000190483118215151615611ddb57611ddb611d93565b500290565b6000600019821415611df457611df4611d93565b5060010190565b60008151611e0d8185602086016119f6565b9290920192915050565b600080845481600182811c915080831680611e3357607f831692505b6020808410821415611e5357634e487b7160e01b86526022600452602486fd5b818015611e675760018114611e7857611ea5565b60ff19861689528489019650611ea5565b60008b81526020902060005b86811015611e9d5781548b820152908501908301611e84565b505084890196505b505050505050611ed9611ec8611ec283602f60f81b815260010190565b86611dfb565b64173539b7b760d91b815260050190565b95945050505050565b600082821015611ef457611ef4611d93565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611f7057611f70611f4b565b500490565b600082611f8457611f84611f4b565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fd290830184611a22565b9695505050505050565b600060208284031215611fee57600080fd5b81516119ef816119bc56fea2646970667358221220319cb36790ba8002f299e1e71f3cb3b9733e742a602041cea460e4f00291ab9764736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000361626300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d634e347a4c75423148455a364765584846447a337a41553565746776584a4547646e726241687a76707239380000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636352211e11610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd14610533578063d5abeb0114610553578063e985e9c514610569578063f2fde38b146105b257600080fd5b8063a0712d68146104c1578063a22cb465146104d4578063a475b5dd146104f4578063b88d4fde1461051357600080fd5b80638456cb59116100d15780638456cb59146104635780638da5cb5b1461047857806395d89b41146104965780639f181b5e146104ab57600080fd5b80636352211e146103f95780636c0360eb1461041957806370a082311461042e578063715018a61461044e57600080fd5b806318cae2691161017a57806342842e0e1161014957806342842e0e1461037f57806344a0d68a1461039f57806355f804b3146103bf5780635c975abb146103df57600080fd5b806318cae26914610307578063239c70ae1461033457806323b872dd1461034a5780633ccfd60b1461036a57600080fd5b8063081c8c44116101b6578063081c8c441461028e578063088a4ed0146102a3578063095ea7b3146102c357806313faede6146102e357600080fd5b806301ffc9a7146101e857806304b4bba91461021d57806306fdde0314610234578063081812fc14610256575b600080fd5b3480156101f457600080fd5b506102086102033660046119d2565b6105d2565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610624565b005b34801561024057600080fd5b50610249610674565b6040516102149190611a4e565b34801561026257600080fd5b50610276610271366004611a61565b610706565b6040516001600160a01b039091168152602001610214565b34801561029a57600080fd5b5061024961079b565b3480156102af57600080fd5b506102326102be366004611a61565b610829565b3480156102cf57600080fd5b506102326102de366004611a91565b610858565b3480156102ef57600080fd5b506102f960075481565b604051908152602001610214565b34801561031357600080fd5b506102f9610322366004611abb565b600e6020526000908152604090205481565b34801561034057600080fd5b506102f960095481565b34801561035657600080fd5b50610232610365366004611ad6565b61096e565b34801561037657600080fd5b5061023261099f565b34801561038b57600080fd5b5061023261039a366004611ad6565b610a3d565b3480156103ab57600080fd5b506102326103ba366004611a61565b610a58565b3480156103cb57600080fd5b506102326103da366004611b9e565b610a87565b3480156103eb57600080fd5b50600b546102089060ff1681565b34801561040557600080fd5b50610276610414366004611a61565b610ac8565b34801561042557600080fd5b50610249610b3f565b34801561043a57600080fd5b506102f9610449366004611abb565b610b4c565b34801561045a57600080fd5b50610232610bd3565b34801561046f57600080fd5b50610232610c09565b34801561048457600080fd5b506006546001600160a01b0316610276565b3480156104a257600080fd5b50610249610c47565b3480156104b757600080fd5b506102f9600a5481565b6102326104cf366004611a61565b610c56565b3480156104e057600080fd5b506102326104ef366004611be7565b610ecd565b34801561050057600080fd5b50600b5461020890610100900460ff1681565b34801561051f57600080fd5b5061023261052e366004611c23565b610f92565b34801561053f57600080fd5b5061024961054e366004611a61565b610fca565b34801561055f57600080fd5b506102f960085481565b34801561057557600080fd5b50610208610584366004611c9f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105be57600080fd5b506102326105cd366004611abb565b611176565b60006001600160e01b031982166380ac58cd60e01b148061060357506001600160e01b03198216635b5e139f60e01b145b8061061e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106575760405162461bcd60e51b815260040161064e90611cd2565b60405180910390fd5b600b805461ff001981166101009182900460ff1615909102179055565b60606000805461068390611d07565b80601f01602080910402602001604051908101604052809291908181526020018280546106af90611d07565b80156106fc5780601f106106d1576101008083540402835291602001916106fc565b820191906000526020600020905b8154815290600101906020018083116106df57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661077f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161064e565b506000908152600460205260409020546001600160a01b031690565b600d80546107a890611d07565b80601f01602080910402602001604051908101604052809291908181526020018280546107d490611d07565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b505050505081565b6006546001600160a01b031633146108535760405162461bcd60e51b815260040161064e90611cd2565b600955565b600061086382610ac8565b9050806001600160a01b0316836001600160a01b031614156108d15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161064e565b336001600160a01b03821614806108ed57506108ed8133610584565b61095f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161064e565b610969838361120e565b505050565b610978338261127c565b6109945760405162461bcd60e51b815260040161064e90611d42565b610969838383611373565b6006546001600160a01b031633146109c95760405162461bcd60e51b815260040161064e90611cd2565b60006109dd6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a27576040519150601f19603f3d011682016040523d82523d6000602084013e610a2c565b606091505b5050905080610a3a57600080fd5b50565b61096983838360405180602001604052806000815250610f92565b6006546001600160a01b03163314610a825760405162461bcd60e51b815260040161064e90611cd2565b600755565b6006546001600160a01b03163314610ab15760405162461bcd60e51b815260040161064e90611cd2565b8051610ac490600c906020840190611923565b5050565b6000818152600260205260408120546001600160a01b03168061061e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161064e565b600c80546107a890611d07565b60006001600160a01b038216610bb75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161064e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610bfd5760405162461bcd60e51b815260040161064e90611cd2565b610c076000611513565b565b6006546001600160a01b03163314610c335760405162461bcd60e51b815260040161064e90611cd2565b600b805460ff19811660ff90911615179055565b60606001805461068390611d07565b600b5460ff1615610cb55760405162461bcd60e51b815260206004820152602360248201527f457570686f7269616e73202d2054686520436f6e7472616374206973205061756044820152621cd95960ea1b606482015260840161064e565b60085481600a54610cc69190611da9565b1115610d205760405162461bcd60e51b815260206004820152602360248201527f457570686f7269616e73202d206d6178204e4654206c696d697420657863656560448201526219195960ea1b606482015260840161064e565b6006546001600160a01b03163314610e7457600954811115610d985760405162461bcd60e51b815260206004820152602b60248201527f457570686f7269616e73202d206d6178206d696e7420616d6f756e74206c696d60448201526a1a5d08195e18d95959195960aa1b606482015260840161064e565b336000908152600e6020526040902054600954610db58383611da9565b1115610e155760405162461bcd60e51b815260206004820152602960248201527f457570686f7269616e73202d206d6178204e465420706572206164647265737360448201526808195e18d95959195960ba1b606482015260840161064e565b81600754610e239190611dc1565b341015610e725760405162461bcd60e51b815260206004820181905260248201527f457570686f7269616e73202d20696e73756666696369656e7420657468657273604482015260640161064e565b505b60015b818111610ac457336000908152600e60205260408120805491610e9983611de0565b9190505550610ebb33600a60008154610eb190611de0565b9182905550611565565b80610ec581611de0565b915050610e77565b6001600160a01b038216331415610f265760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161064e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f9c338361127c565b610fb85760405162461bcd60e51b815260040161064e90611d42565b610fc48484848461157f565b50505050565b6000818152600260205260409020546060906001600160a01b03166110495760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161064e565b600b54610100900460ff16156110b5576000600c805461106890611d07565b905011611084576040518060200160405280600081525061061e565b600c61108f836115b2565b6040516020016110a0929190611e17565b60405160208183030381529060405292915050565b6000600d80546110c490611d07565b9050116110e0576040518060200160405280600081525061061e565b600d80546110ed90611d07565b80601f016020809104026020016040519081016040528092919081815260200182805461111990611d07565b80156111665780601f1061113b57610100808354040283529160200191611166565b820191906000526020600020905b81548152906001019060200180831161114957829003601f168201915b505050505092915050565b919050565b6006546001600160a01b031633146111a05760405162461bcd60e51b815260040161064e90611cd2565b6001600160a01b0381166112055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161064e565b610a3a81611513565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061124382610ac8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112f55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161064e565b600061130083610ac8565b9050806001600160a01b0316846001600160a01b0316148061133b5750836001600160a01b031661133084610706565b6001600160a01b0316145b8061136b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661138682610ac8565b6001600160a01b0316146113ee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161064e565b6001600160a01b0382166114505760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161064e565b61145b60008261120e565b6001600160a01b0383166000908152600360205260408120805460019290611484908490611ee2565b90915550506001600160a01b03821660009081526003602052604081208054600192906114b2908490611da9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ac48282604051806020016040528060008152506116b0565b61158a848484611373565b611596848484846116e3565b610fc45760405162461bcd60e51b815260040161064e90611ef9565b6060816115d65750506040805180820190915260018152600360fc1b602082015290565b8160005b811561160057806115ea81611de0565b91506115f99050600a83611f61565b91506115da565b60008167ffffffffffffffff81111561161b5761161b611b12565b6040519080825280601f01601f191660200182016040528015611645576020820181803683370190505b5090505b841561136b5761165a600183611ee2565b9150611667600a86611f75565b611672906030611da9565b60f81b81838151811061168757611687611f89565b60200101906001600160f81b031916908160001a9053506116a9600a86611f61565b9450611649565b6116ba83836117e1565b6116c760008484846116e3565b6109695760405162461bcd60e51b815260040161064e90611ef9565b60006001600160a01b0384163b156117d657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611727903390899088908890600401611f9f565b6020604051808303816000875af1925050508015611762575060408051601f3d908101601f1916820190925261175f91810190611fdc565b60015b6117bc573d808015611790576040519150601f19603f3d011682016040523d82523d6000602084013e611795565b606091505b5080516117b45760405162461bcd60e51b815260040161064e90611ef9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061136b565b506001949350505050565b6001600160a01b0382166118375760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161064e565b6000818152600260205260409020546001600160a01b03161561189c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161064e565b6001600160a01b03821660009081526003602052604081208054600192906118c5908490611da9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461192f90611d07565b90600052602060002090601f0160209004810192826119515760008555611997565b82601f1061196a57805160ff1916838001178555611997565b82800160010185558215611997579182015b8281111561199757825182559160200191906001019061197c565b506119a39291506119a7565b5090565b5b808211156119a357600081556001016119a8565b6001600160e01b031981168114610a3a57600080fd5b6000602082840312156119e457600080fd5b81356119ef816119bc565b9392505050565b60005b83811015611a115781810151838201526020016119f9565b83811115610fc45750506000910152565b60008151808452611a3a8160208601602086016119f6565b601f01601f19169290920160200192915050565b6020815260006119ef6020830184611a22565b600060208284031215611a7357600080fd5b5035919050565b80356001600160a01b038116811461117157600080fd5b60008060408385031215611aa457600080fd5b611aad83611a7a565b946020939093013593505050565b600060208284031215611acd57600080fd5b6119ef82611a7a565b600080600060608486031215611aeb57600080fd5b611af484611a7a565b9250611b0260208501611a7a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b4357611b43611b12565b604051601f8501601f19908116603f01168101908282118183101715611b6b57611b6b611b12565b81604052809350858152868686011115611b8457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611bb057600080fd5b813567ffffffffffffffff811115611bc757600080fd5b8201601f81018413611bd857600080fd5b61136b84823560208401611b28565b60008060408385031215611bfa57600080fd5b611c0383611a7a565b915060208301358015158114611c1857600080fd5b809150509250929050565b60008060008060808587031215611c3957600080fd5b611c4285611a7a565b9350611c5060208601611a7a565b925060408501359150606085013567ffffffffffffffff811115611c7357600080fd5b8501601f81018713611c8457600080fd5b611c9387823560208401611b28565b91505092959194509250565b60008060408385031215611cb257600080fd5b611cbb83611a7a565b9150611cc960208401611a7a565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611d1b57607f821691505b60208210811415611d3c57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611dbc57611dbc611d93565b500190565b6000816000190483118215151615611ddb57611ddb611d93565b500290565b6000600019821415611df457611df4611d93565b5060010190565b60008151611e0d8185602086016119f6565b9290920192915050565b600080845481600182811c915080831680611e3357607f831692505b6020808410821415611e5357634e487b7160e01b86526022600452602486fd5b818015611e675760018114611e7857611ea5565b60ff19861689528489019650611ea5565b60008b81526020902060005b86811015611e9d5781548b820152908501908301611e84565b505084890196505b505050505050611ed9611ec8611ec283602f60f81b815260010190565b86611dfb565b64173539b7b760d91b815260050190565b95945050505050565b600082821015611ef457611ef4611d93565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611f7057611f70611f4b565b500490565b600082611f8457611f84611f4b565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fd290830184611a22565b9695505050505050565b600060208284031215611fee57600080fd5b81516119ef816119bc56fea2646970667358221220319cb36790ba8002f299e1e71f3cb3b9733e742a602041cea460e4f00291ab9764736f6c634300080c0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000361626300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d634e347a4c75423148455a364765584846447a337a41553565746776584a4547646e726241687a76707239380000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): abc
Arg [1] : _initNotRevealedUri (string): ipfs://QmcN4zLuB1HEZ6GeXHFDz3zAU5etgvXJEGdnrbAhzvpr98

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 6162630000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [5] : 697066733a2f2f516d634e347a4c75423148455a364765584846447a337a4155
Arg [6] : 3565746776584a4547646e726241687a76707239380000000000000000000000


Deployed Bytecode Sourcemap

36771:3035:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23661:355;;;;;;;;;;-1:-1:-1;23661:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23661:355:0;;;;;;;;39573:75;;;;;;;;;;;;;:::i;:::-;;24830:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26523:308::-;;;;;;;;;;-1:-1:-1;26523:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;26523:308:0;1550:203:1;37089:28:0;;;;;;;;;;;;;:::i;39266:116::-;;;;;;;;;;-1:-1:-1;39266:116:0;;;;;:::i;:::-;;:::i;26046:411::-;;;;;;;;;;-1:-1:-1;26046:411:0;;;;;:::i;:::-;;:::i;36849:35::-;;;;;;;;;;;;;;;;;;;2341:25:1;;;2329:2;2314:18;36849:35:0;2195:177:1;37126:55:0;;;;;;;;;;-1:-1:-1;37126:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;36929:32;;;;;;;;;;;;;;;;27582:376;;;;;;;;;;-1:-1:-1;27582:376:0;;;;;:::i;:::-;;:::i;39656:147::-;;;;;;;;;;;;;:::i;28029:185::-;;;;;;;;;;-1:-1:-1;28029:185:0;;;;;:::i;:::-;;:::i;39172:86::-;;;;;;;;;;-1:-1:-1;39172:86:0;;;;;:::i;:::-;;:::i;39390:98::-;;;;;;;;;;-1:-1:-1;39390:98:0;;;;;:::i;:::-;;:::i;37004:25::-;;;;;;;;;;-1:-1:-1;37004:25:0;;;;;;;;24437:326;;;;;;;;;;-1:-1:-1;24437:326:0;;;;;:::i;:::-;;:::i;37061:21::-;;;;;;;;;;;;;:::i;24080:295::-;;;;;;;;;;-1:-1:-1;24080:295:0;;;;;:::i;:::-;;:::i;4634:94::-;;;;;;;;;;;;;:::i;39496:69::-;;;;;;;;;;;;;:::i;3983:87::-;;;;;;;;;;-1:-1:-1;4056:6:0;;-1:-1:-1;;;;;4056:6:0;3983:87;;24999:104;;;;;;;;;;;;;:::i;36968:29::-;;;;;;;;;;;;;;;;38171:975;;;;;;:::i;:::-;;:::i;26903:327::-;;;;;;;;;;-1:-1:-1;26903:327:0;;;;;:::i;:::-;;:::i;37036:18::-;;;;;;;;;;-1:-1:-1;37036:18:0;;;;;;;;;;;28285:365;;;;;;;;;;-1:-1:-1;28285:365:0;;;;;:::i;:::-;;:::i;37410:753::-;;;;;;;;;;-1:-1:-1;37410:753:0;;;;;:::i;:::-;;:::i;36891:31::-;;;;;;;;;;;;;;;;27301:214;;;;;;;;;;-1:-1:-1;27301:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;27472:25:0;;;27443:4;27472:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27301:214;4883:229;;;;;;;;;;-1:-1:-1;4883:229:0;;;;;:::i;:::-;;:::i;23661:355::-;23808:4;-1:-1:-1;;;;;;23850:40:0;;-1:-1:-1;;;23850:40:0;;:105;;-1:-1:-1;;;;;;;23907:48:0;;-1:-1:-1;;;23907:48:0;23850:105;:158;;;-1:-1:-1;;;;;;;;;;16614:40:0;;;23972:36;23830:178;23661:355;-1:-1:-1;;23661:355:0:o;39573:75::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;;;;;;;;;39634:6:::1;::::0;;-1:-1:-1;;39624:16:0;::::1;39634:6;::::0;;;::::1;;;39633:7;39624:16:::0;;::::1;;::::0;;39573:75::o;24830:100::-;24884:13;24917:5;24910:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24830:100;:::o;26523:308::-;26644:7;30286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30286:16:0;26669:110;;;;-1:-1:-1;;;26669:110:0;;6363:2:1;26669:110:0;;;6345:21:1;6402:2;6382:18;;;6375:30;6441:34;6421:18;;;6414:62;-1:-1:-1;;;6492:18:1;;;6485:42;6544:19;;26669:110:0;6161:408:1;26669:110:0;-1:-1:-1;26799:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26799:24:0;;26523:308::o;37089:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39266:116::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39344:13:::1;:30:::0;39266:116::o;26046:411::-;26127:13;26143:23;26158:7;26143:14;:23::i;:::-;26127:39;;26191:5;-1:-1:-1;;;;;26185:11:0;:2;-1:-1:-1;;;;;26185:11:0;;;26177:57;;;;-1:-1:-1;;;26177:57:0;;6776:2:1;26177:57:0;;;6758:21:1;6815:2;6795:18;;;6788:30;6854:34;6834:18;;;6827:62;-1:-1:-1;;;6905:18:1;;;6898:31;6946:19;;26177:57:0;6574:397:1;26177:57:0;2832:10;-1:-1:-1;;;;;26269:21:0;;;;:62;;-1:-1:-1;26294:37:0;26311:5;2832:10;27301:214;:::i;26294:37::-;26247:168;;;;-1:-1:-1;;;26247:168:0;;7178:2:1;26247:168:0;;;7160:21:1;7217:2;7197:18;;;7190:30;7256:34;7236:18;;;7229:62;7327:26;7307:18;;;7300:54;7371:19;;26247:168:0;6976:420:1;26247:168:0;26428:21;26437:2;26441:7;26428:8;:21::i;:::-;26116:341;26046:411;;:::o;27582:376::-;27791:41;2832:10;27824:7;27791:18;:41::i;:::-;27769:140;;;;-1:-1:-1;;;27769:140:0;;;;;;;:::i;:::-;27922:28;27932:4;27938:2;27942:7;27922:9;:28::i;39656:147::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39705:7:::1;39726;4056:6:::0;;-1:-1:-1;;;;;4056:6:0;;3983:87;39726:7:::1;-1:-1:-1::0;;;;;39718:21:0::1;39747;39718:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39704:69;;;39792:2;39784:11;;;::::0;::::1;;39693:110;39656:147::o:0;28029:185::-;28167:39;28184:4;28190:2;28194:7;28167:39;;;;;;;;;;;;:16;:39::i;39172:86::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39235:4:::1;:15:::0;39172:86::o;39390:98::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39462:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39390:98:::0;:::o;24437:326::-;24554:7;24595:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24595:16:0;24644:19;24622:110;;;;-1:-1:-1;;;24622:110:0;;8231:2:1;24622:110:0;;;8213:21:1;8270:2;8250:18;;;8243:30;8309:34;8289:18;;;8282:62;-1:-1:-1;;;8360:18:1;;;8353:39;8409:19;;24622:110:0;8029:405:1;37061:21:0;;;;;;;:::i;24080:295::-;24197:7;-1:-1:-1;;;;;24244:19:0;;24222:111;;;;-1:-1:-1;;;24222:111:0;;8641:2:1;24222:111:0;;;8623:21:1;8680:2;8660:18;;;8653:30;8719:34;8699:18;;;8692:62;-1:-1:-1;;;8770:18:1;;;8763:40;8820:19;;24222:111:0;8439:406:1;24222:111:0;-1:-1:-1;;;;;;24351:16:0;;;;;:9;:16;;;;;;;24080:295::o;4634:94::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;4699:21:::1;4717:1;4699:9;:21::i;:::-;4634:94::o:0;39496:69::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39551:6:::1;::::0;;-1:-1:-1;;39541:16:0;::::1;39551:6;::::0;;::::1;39550:7;39541:16;::::0;;39496:69::o;24999:104::-;25055:13;25088:7;25081:14;;;;;:::i;38171:975::-;38239:6;;;;38238:7;38230:55;;;;-1:-1:-1;;;38230:55:0;;9052:2:1;38230:55:0;;;9034:21:1;9091:2;9071:18;;;9064:30;9130:34;9110:18;;;9103:62;-1:-1:-1;;;9181:18:1;;;9174:33;9224:19;;38230:55:0;8850:399:1;38230:55:0;38342:9;;38331:7;38318:10;;:20;;;;:::i;:::-;:33;;38296:118;;;;-1:-1:-1;;;38296:118:0;;9721:2:1;38296:118:0;;;9703:21:1;9760:2;9740:18;;;9733:30;9799:34;9779:18;;;9772:62;-1:-1:-1;;;9850:18:1;;;9843:33;9893:19;;38296:118:0;9519:399:1;38296:118:0;4056:6;;-1:-1:-1;;;;;4056:6:0;38429:10;:21;38425:554;;38504:13;;38493:7;:24;;38467:129;;;;-1:-1:-1;;;38467:129:0;;10125:2:1;38467:129:0;;;10107:21:1;10164:2;10144:18;;;10137:30;10203:34;10183:18;;;10176:62;-1:-1:-1;;;10254:18:1;;;10247:41;10305:19;;38467:129:0;9923:407:1;38467:129:0;38659:10;38611:24;38638:32;;;:20;:32;;;;;;38741:13;;38711:26;38730:7;38638:32;38711:26;:::i;:::-;:43;;38685:146;;;;-1:-1:-1;;;38685:146:0;;10537:2:1;38685:146:0;;;10519:21:1;10576:2;10556:18;;;10549:30;10615:34;10595:18;;;10588:62;-1:-1:-1;;;10666:18:1;;;10659:39;10715:19;;38685:146:0;10335:405:1;38685:146:0;38892:7;38885:4;;:14;;;;:::i;:::-;38872:9;:27;;38846:121;;;;-1:-1:-1;;;38846:121:0;;11120:2:1;38846:121:0;;;11102:21:1;;;11139:18;;;11132:30;11198:34;11178:18;;;11171:62;11250:18;;38846:121:0;10918:356:1;38846:121:0;38452:527;38425:554;39006:1;38989:150;39014:7;39009:1;:12;38989:150;;39064:10;39043:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;39092:35;39102:10;39116;;39114:12;;;;;:::i;:::-;;;;;-1:-1:-1;39092:9:0;:35::i;:::-;39023:3;;;;:::i;:::-;;;;38989:150;;26903:327;-1:-1:-1;;;;;27038:24:0;;2832:10;27038:24;;27030:62;;;;-1:-1:-1;;;27030:62:0;;11621:2:1;27030:62:0;;;11603:21:1;11660:2;11640:18;;;11633:30;11699:27;11679:18;;;11672:55;11744:18;;27030:62:0;11419:349:1;27030:62:0;2832:10;27105:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27105:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27105:53:0;;;;;;;;;;27174:48;;540:41:1;;;27105:42:0;;2832:10;27174:48;;513:18:1;27174:48:0;;;;;;;26903:327;;:::o;28285:365::-;28474:41;2832:10;28507:7;28474:18;:41::i;:::-;28452:140;;;;-1:-1:-1;;;28452:140:0;;;;;;;:::i;:::-;28603:39;28617:4;28623:2;28627:7;28636:5;28603:13;:39::i;:::-;28285:365;;;;:::o;37410:753::-;30262:4;30286:16;;;:7;:16;;;;;;37511:13;;-1:-1:-1;;;;;30286:16:0;37542:113;;;;-1:-1:-1;;;37542:113:0;;11975:2:1;37542:113:0;;;11957:21:1;12014:2;11994:18;;;11987:30;12053:34;12033:18;;;12026:62;-1:-1:-1;;;12104:18:1;;;12097:45;12159:19;;37542:113:0;11773:411:1;37542:113:0;37670:6;;;;;;;37666:490;;;37741:1;37723:7;37717:21;;;;;:::i;:::-;;;:25;:333;;;;;;;;;;;;;;;;;37846:7;37918:18;:7;:16;:18::i;:::-;37799:202;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37693:357;37410:753;-1:-1:-1;;37410:753:0:o;37666:490::-;38121:1;38096:14;38090:28;;;;;:::i;:::-;;;:32;:54;;;;;;;;;;;;;;;;;38125:14;38090:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38083:61;37410:753;-1:-1:-1;;37410:753:0:o;37666:490::-;37410:753;;;:::o;4883:229::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4986:22:0;::::1;4964:110;;;::::0;-1:-1:-1;;;4964:110:0;;14382:2:1;4964:110:0::1;::::0;::::1;14364:21:1::0;14421:2;14401:18;;;14394:30;14460:34;14440:18;;;14433:62;-1:-1:-1;;;14511:18:1;;;14504:36;14557:19;;4964:110:0::1;14180:402:1::0;4964:110:0::1;5085:19;5095:8;5085:9;:19::i;34320:174::-:0;34395:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34395:29:0;-1:-1:-1;;;;;34395:29:0;;;;;;;;:24;;34449:23;34395:24;34449:14;:23::i;:::-;-1:-1:-1;;;;;34440:46:0;;;;;;;;;;;34320:174;;:::o;30491:452::-;30620:4;30286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30286:16:0;30642:110;;;;-1:-1:-1;;;30642:110:0;;14789:2:1;30642:110:0;;;14771:21:1;14828:2;14808:18;;;14801:30;14867:34;14847:18;;;14840:62;-1:-1:-1;;;14918:18:1;;;14911:42;14970:19;;30642:110:0;14587:408:1;30642:110:0;30763:13;30779:23;30794:7;30779:14;:23::i;:::-;30763:39;;30832:5;-1:-1:-1;;;;;30821:16:0;:7;-1:-1:-1;;;;;30821:16:0;;:64;;;;30878:7;-1:-1:-1;;;;;30854:31:0;:20;30866:7;30854:11;:20::i;:::-;-1:-1:-1;;;;;30854:31:0;;30821:64;:113;;;-1:-1:-1;;;;;;27472:25:0;;;27443:4;27472:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30902:32;30813:122;30491:452;-1:-1:-1;;;;30491:452:0:o;33587:615::-;33760:4;-1:-1:-1;;;;;33733:31:0;:23;33748:7;33733:14;:23::i;:::-;-1:-1:-1;;;;;33733:31:0;;33711:122;;;;-1:-1:-1;;;33711:122:0;;15202:2:1;33711:122:0;;;15184:21:1;15241:2;15221:18;;;15214:30;15280:34;15260:18;;;15253:62;-1:-1:-1;;;15331:18:1;;;15324:39;15380:19;;33711:122:0;15000:405:1;33711:122:0;-1:-1:-1;;;;;33852:16:0;;33844:65;;;;-1:-1:-1;;;33844:65:0;;15612:2:1;33844:65:0;;;15594:21:1;15651:2;15631:18;;;15624:30;15690:34;15670:18;;;15663:62;-1:-1:-1;;;15741:18:1;;;15734:34;15785:19;;33844:65:0;15410:400:1;33844:65:0;34026:29;34043:1;34047:7;34026:8;:29::i;:::-;-1:-1:-1;;;;;34068:15:0;;;;;;:9;:15;;;;;:20;;34087:1;;34068:15;:20;;34087:1;;34068:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34099:13:0;;;;;;:9;:13;;;;;:18;;34116:1;;34099:13;:18;;34116:1;;34099:18;:::i;:::-;;;;-1:-1:-1;;34128:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34128:21:0;-1:-1:-1;;;;;34128:21:0;;;;;;;;;34167:27;;34128:16;;34167:27;;;;;;;33587:615;;;:::o;5120:173::-;5195:6;;;-1:-1:-1;;;;;5212:17:0;;;-1:-1:-1;;;;;;5212:17:0;;;;;;;5245:40;;5195:6;;;5212:17;5195:6;;5245:40;;5176:16;;5245:40;5165:128;5120:173;:::o;31285:110::-;31361:26;31371:2;31375:7;31361:26;;;;;;;;;;;;:9;:26::i;29532:352::-;29689:28;29699:4;29705:2;29709:7;29689:9;:28::i;:::-;29750:48;29773:4;29779:2;29783:7;29792:5;29750:22;:48::i;:::-;29728:148;;;;-1:-1:-1;;;29728:148:0;;;;;;;:::i;340:723::-;396:13;617:10;613:53;;-1:-1:-1;;644:10:0;;;;;;;;;;;;-1:-1:-1;;;644:10:0;;;;;340:723::o;613:53::-;691:5;676:12;732:78;739:9;;732:78;;765:8;;;;:::i;:::-;;-1:-1:-1;788:10:0;;-1:-1:-1;796:2:0;788:10;;:::i;:::-;;;732:78;;;820:19;852:6;842:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;842:17:0;;820:39;;870:154;877:10;;870:154;;904:11;914:1;904:11;;:::i;:::-;;-1:-1:-1;973:10:0;981:2;973:5;:10;:::i;:::-;960:24;;:2;:24;:::i;:::-;947:39;;930:6;937;930:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;930:56:0;;;;;;;;-1:-1:-1;1001:11:0;1010:2;1001:11;;:::i;:::-;;;870:154;;31622:321;31752:18;31758:2;31762:7;31752:5;:18::i;:::-;31803:54;31834:1;31838:2;31842:7;31851:5;31803:22;:54::i;:::-;31781:154;;;;-1:-1:-1;;;31781:154:0;;;;;;;:::i;35059:980::-;35214:4;-1:-1:-1;;;;;35235:13:0;;6385:20;6433:8;35231:801;;35288:175;;-1:-1:-1;;;35288:175:0;;-1:-1:-1;;;;;35288:36:0;;;;;:175;;2832:10;;35382:4;;35409:7;;35439:5;;35288:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35288:175:0;;;;;;;;-1:-1:-1;;35288:175:0;;;;;;;;;;;;:::i;:::-;;;35267:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35646:13:0;;35642:320;;35689:108;;-1:-1:-1;;;35689:108:0;;;;;;;:::i;35642:320::-;35912:6;35906:13;35897:6;35893:2;35889:15;35882:38;35267:710;-1:-1:-1;;;;;;35527:51:0;-1:-1:-1;;;35527:51:0;;-1:-1:-1;35520:58:0;;35231:801;-1:-1:-1;36016:4:0;35059:980;;;;;;:::o;32279:382::-;-1:-1:-1;;;;;32359:16:0;;32351:61;;;;-1:-1:-1;;;32351:61:0;;17831:2:1;32351:61:0;;;17813:21:1;;;17850:18;;;17843:30;17909:34;17889:18;;;17882:62;17961:18;;32351:61:0;17629:356:1;32351:61:0;30262:4;30286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30286:16:0;:30;32423:58;;;;-1:-1:-1;;;32423:58:0;;18192:2:1;32423:58:0;;;18174:21:1;18231:2;18211:18;;;18204:30;18270;18250:18;;;18243:58;18318:18;;32423:58:0;17990:352:1;32423:58:0;-1:-1:-1;;;;;32552:13:0;;;;;;:9;:13;;;;;:18;;32569:1;;32552:13;:18;;32569:1;;32552:18;:::i;:::-;;;;-1:-1:-1;;32581:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32581:21:0;-1:-1:-1;;;;;32581:21:0;;;;;;;;32620:33;;32581:16;;;32620:33;;32581:16;;32620:33;32279: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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1936:254;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:186::-;2436:6;2489:2;2477:9;2468:7;2464:23;2460:32;2457:52;;;2505:1;2502;2495:12;2457:52;2528:29;2547:9;2528:29;:::i;2568:328::-;2645:6;2653;2661;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;2753:29;2772:9;2753:29;:::i;:::-;2743:39;;2801:38;2835:2;2824:9;2820:18;2801:38;:::i;:::-;2791:48;;2886:2;2875:9;2871:18;2858:32;2848:42;;2568:328;;;;;:::o;2901:127::-;2962:10;2957:3;2953:20;2950:1;2943:31;2993:4;2990:1;2983:15;3017:4;3014:1;3007:15;3033:632;3098:5;3128:18;3169:2;3161:6;3158:14;3155:40;;;3175:18;;:::i;:::-;3250:2;3244:9;3218:2;3304:15;;-1:-1:-1;;3300:24:1;;;3326:2;3296:33;3292:42;3280:55;;;3350:18;;;3370:22;;;3347:46;3344:72;;;3396:18;;:::i;:::-;3436:10;3432:2;3425:22;3465:6;3456:15;;3495:6;3487;3480:22;3535:3;3526:6;3521:3;3517:16;3514:25;3511:45;;;3552:1;3549;3542:12;3511:45;3602:6;3597:3;3590:4;3582:6;3578:17;3565:44;3657:1;3650:4;3641:6;3633;3629:19;3625:30;3618:41;;;;3033:632;;;;;:::o;3670:451::-;3739:6;3792:2;3780:9;3771:7;3767:23;3763:32;3760:52;;;3808:1;3805;3798:12;3760:52;3848:9;3835:23;3881:18;3873:6;3870:30;3867:50;;;3913:1;3910;3903:12;3867:50;3936:22;;3989:4;3981:13;;3977:27;-1:-1:-1;3967:55:1;;4018:1;4015;4008:12;3967:55;4041:74;4107:7;4102:2;4089:16;4084:2;4080;4076:11;4041:74;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;4905:18;4897:6;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:260::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5150:260;;;;;:::o;5415:356::-;5617:2;5599:21;;;5636:18;;;5629:30;5695:34;5690:2;5675:18;;5668:62;5762:2;5747:18;;5415:356::o;5776:380::-;5855:1;5851:12;;;;5898;;;5919:61;;5973:4;5965:6;5961:17;5951:27;;5919:61;6026:2;6018:6;6015:14;5995:18;5992:38;5989:161;;;6072:10;6067:3;6063:20;6060:1;6053:31;6107:4;6104:1;6097:15;6135:4;6132:1;6125:15;5989:161;;5776:380;;;:::o;7401:413::-;7603:2;7585:21;;;7642:2;7622:18;;;7615:30;7681:34;7676:2;7661:18;;7654:62;-1:-1:-1;;;7747:2:1;7732:18;;7725:47;7804:3;7789:19;;7401:413::o;9254:127::-;9315:10;9310:3;9306:20;9303:1;9296:31;9346:4;9343:1;9336:15;9370:4;9367:1;9360:15;9386:128;9426:3;9457:1;9453:6;9450:1;9447:13;9444:39;;;9463:18;;:::i;:::-;-1:-1:-1;9499:9:1;;9386:128::o;10745:168::-;10785:7;10851:1;10847;10843:6;10839:14;10836:1;10833:21;10828:1;10821:9;10814:17;10810:45;10807:71;;;10858:18;;:::i;:::-;-1:-1:-1;10898:9:1;;10745:168::o;11279:135::-;11318:3;-1:-1:-1;;11339:17:1;;11336:43;;;11359:18;;:::i;:::-;-1:-1:-1;11406:1:1;11395:13;;11279:135::o;12434:185::-;12476:3;12514:5;12508:12;12529:52;12574:6;12569:3;12562:4;12555:5;12551:16;12529:52;:::i;:::-;12597:16;;;;;12434:185;-1:-1:-1;;12434:185:1:o;12742:1433::-;13120:3;13149:1;13182:6;13176:13;13212:3;13234:1;13262:9;13258:2;13254:18;13244:28;;13322:2;13311:9;13307:18;13344;13334:61;;13388:4;13380:6;13376:17;13366:27;;13334:61;13414:2;13462;13454:6;13451:14;13431:18;13428:38;13425:165;;;-1:-1:-1;;;13489:33:1;;13545:4;13542:1;13535:15;13575:4;13496:3;13563:17;13425:165;13606:18;13633:104;;;;13751:1;13746:320;;;;13599:467;;13633:104;-1:-1:-1;;13666:24:1;;13654:37;;13711:16;;;;-1:-1:-1;13633:104:1;;13746:320;12262:1;12255:14;;;12299:4;12286:18;;13841:1;13855:165;13869:6;13866:1;13863:13;13855:165;;;13947:14;;13934:11;;;13927:35;13990:16;;;;13884:10;;13855:165;;;13859:3;;14049:6;14044:3;14040:16;14033:23;;13599:467;;;;;;;14082:87;14107:61;14133:34;14163:3;-1:-1:-1;;;12380:16:1;;12421:1;12412:11;;12315:114;14133:34;14125:6;14107:61;:::i;:::-;-1:-1:-1;;;12684:20:1;;12729:1;12720:11;;12624:113;14082:87;14075:94;12742:1433;-1:-1:-1;;;;;12742:1433:1:o;15815:125::-;15855:4;15883:1;15880;15877:8;15874:34;;;15888:18;;:::i;:::-;-1:-1:-1;15925:9:1;;15815:125::o;15945:414::-;16147:2;16129:21;;;16186:2;16166:18;;;16159:30;16225:34;16220:2;16205:18;;16198:62;-1:-1:-1;;;16291:2:1;16276:18;;16269:48;16349:3;16334:19;;15945:414::o;16364:127::-;16425:10;16420:3;16416:20;16413:1;16406:31;16456:4;16453:1;16446:15;16480:4;16477:1;16470:15;16496:120;16536:1;16562;16552:35;;16567:18;;:::i;:::-;-1:-1:-1;16601:9:1;;16496:120::o;16621:112::-;16653:1;16679;16669:35;;16684:18;;:::i;:::-;-1:-1:-1;16718:9:1;;16621:112::o;16738:127::-;16799:10;16794:3;16790:20;16787:1;16780:31;16830:4;16827:1;16820:15;16854:4;16851:1;16844:15;16870:500;-1:-1:-1;;;;;17139:15:1;;;17121:34;;17191:15;;17186:2;17171:18;;17164:43;17238:2;17223:18;;17216:34;;;17286:3;17281:2;17266:18;;17259:31;;;17064:4;;17307:57;;17344:19;;17336:6;17307:57;:::i;:::-;17299:65;16870:500;-1:-1:-1;;;;;;16870:500:1:o;17375:249::-;17444:6;17497:2;17485:9;17476:7;17472:23;17468:32;17465:52;;;17513:1;17510;17503:12;17465:52;17545:9;17539:16;17564:30;17588:5;17564:30;:::i

Swarm Source

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