ETH Price: $3,111.45 (+0.74%)
Gas: 3 Gwei

Token

Miss Universe NFT (MU)
 

Overview

Max Total Supply

0 MU

Holders

801

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
SushiSwap: Router
Balance
2 MU
0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f
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:
MissUniverseNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 9 of 12: MissUniverse.sol
// SPDX-License-Identifier: None

pragma solidity ^0.8.4;

import "./Ownable.sol";
import "./ERC721.sol";
import "./SafeMath.sol";
import "./String.sol";
                                                 
contract MissUniverseNFT is Ownable, ERC721 {
    using SafeMath for uint256;
    using Strings for uint256;
    
    uint256 public supply = 0;
    uint256 public price = 0.06 ether;
    uint256 public supply_amount;

    string public baseURI = "";
    bool public start_sale = false;

    address public wallet1 = 0x8831569a68Dcb1E1091F86443Ac75214f8F95a86;
    address public wallet2 = 0x0171a1e4cc0B2e5170c93BF155670E2C223D6A0e;

    constructor(
        uint256 amount,
        string memory _baseURI
    ) ERC721("Miss Universe NFT", "MU") {
        supply_amount = amount;
        baseURI = _baseURI;
    }
    
    function tokenURI(uint256 token_num) public view override returns (string memory) {
        require(_exists(token_num), "nonexistent token");
        return bytes(baseURI).length > 0 ? 
        string(abi.encodePacked(baseURI, token_num.toString())) : "";
    }

    function flipSale() external onlyOwner {
        start_sale = !start_sale;
    }
    
    function set_uri(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function withdraw() external onlyOwner {
        require(address(this).balance > 0, "None");
        uint256 walletBalance = address(this).balance;
        
        (bool success1,) = wallet1.call{value: walletBalance.mul(94).div(100)}("");
        (bool success2,) = wallet2.call{value: walletBalance.mul(6).div(100)}("");

        require(success1 && success2, "Failed withdraw");
    }
    
    function withdraw_emergency() external onlyOwner {
        (bool success1,) = wallet2.call{value: address(this).balance}("");
        require(success1, "Failed Withdraw");
    }
    
    function purchase_nft(uint nft) external payable {
        require(start_sale, "Sale hasn't started yet.");
        require(msg.value >= price.mul(nft), "Amount sent is incorrect.");
        require(supply.add(nft) <= supply_amount, "Supply has sold out.");

        uint256 token_num = supply;
        for(uint i = 0; i < nft; i++) {
            token_num += 1;
            supply = supply.add(1);

            _safeMint(msg.sender, token_num);
        }
    }

}

File 1 of 12: Address.sol
// SPDX-License-Identifier: MIT

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 2 of 12: Context.sol
// SPDX-License-Identifier: MIT

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 3 of 12: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 12: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./String.sol";
import "./ERC165.sol";

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

File 5 of 12: IERC165.sol
// SPDX-License-Identifier: MIT

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 6 of 12: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 7 of 12: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 8 of 12: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 10 of 12: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @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 11 of 12: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 12: String.sol
// SPDX-License-Identifier: MIT

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nft","type":"uint256"}],"name":"purchase_nft","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"set_uri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start_sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply_amount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"token_num","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":"wallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw_emergency","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600781905566d529ae9e86000060085560a0604081905260808290526200002c91600a9190620001b0565b50600b8054748831569a68dcb1e1091f86443ac75214f8f95a86006001600160a81b0319909116179055600c80546001600160a01b031916730171a1e4cc0b2e5170c93bf155670e2c223d6a0e1790553480156200008957600080fd5b506040516200221538038062002215833981016040819052620000ac9162000256565b60405180604001604052806011815260200170135a5cdcc8155b9a5d995c9cd948139195607a1b815250604051806040016040528060028152602001614d5560f01b8152506200010b620001056200015c60201b60201c565b62000160565b815162000120906001906020850190620001b0565b50805162000136906002906020840190620001b0565b505050600982905580516200015390600a906020840190620001b0565b50505062000393565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001be9062000340565b90600052602060002090601f016020900481019282620001e257600085556200022d565b82601f10620001fd57805160ff19168380011785556200022d565b828001600101855582156200022d579182015b828111156200022d57825182559160200191906001019062000210565b506200023b9291506200023f565b5090565b5b808211156200023b576000815560010162000240565b600080604083850312156200026a57600080fd5b8251602080850151919350906001600160401b03808211156200028c57600080fd5b818601915086601f830112620002a157600080fd5b815181811115620002b657620002b66200037d565b604051601f8201601f19908116603f01168101908382118183101715620002e157620002e16200037d565b816040528281528986848701011115620002fa57600080fd5b600093505b828410156200031e5784840186015181850187015292850192620002ff565b82841115620003305760008684830101525b8096505050505050509250929050565b600181811c908216806200035557607f821691505b602082108114156200037757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611e7280620003a36000396000f3fe6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a035b1fe1161008a578063c87b56dd11610064578063c87b56dd14610496578063dfeac3a9146104b6578063e985e9c5146104cb578063f2fde38b1461051457600080fd5b8063a035b1fe14610440578063a22cb46514610456578063b88d4fde1461047657600080fd5b8063715018a6116100c6578063715018a6146103e35780637ba5e621146103f85780638da5cb5b1461040d57806395d89b411461042b57600080fd5b80636c0360eb146103985780636c7c5a53146103ad57806370a08231146103c357600080fd5b80630b8d0a28116101595780633ccfd60b116101335780633ccfd60b14610329578063425ef7091461033e57806342842e0e146103585780636352211e1461037857600080fd5b80630b8d0a28146102c45780631a026c96146102e457806323b872dd1461030957600080fd5b8063081812fc11610195578063081812fc1461023757806308630f861461026f578063095ea7b3146102845780630a04472b146102a457600080fd5b806301ffc9a7146101bc578063047fc9aa146101f157806306fdde0314610215575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611a23565b610534565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020760075481565b6040519081526020016101e8565b34801561022157600080fd5b5061022a610586565b6040516101e89190611beb565b34801561024357600080fd5b50610257610252366004611aa6565b610618565b6040516001600160a01b0390911681526020016101e8565b61028261027d366004611aa6565b6106b2565b005b34801561029057600080fd5b5061028261029f3660046119f9565b610803565b3480156102b057600080fd5b506102826102bf366004611a5d565b610914565b3480156102d057600080fd5b50600c54610257906001600160a01b031681565b3480156102f057600080fd5b50600b546102579061010090046001600160a01b031681565b34801561031557600080fd5b50610282610324366004611905565b610955565b34801561033557600080fd5b50610282610986565b34801561034a57600080fd5b50600b546101dc9060ff1681565b34801561036457600080fd5b50610282610373366004611905565b610b07565b34801561038457600080fd5b50610257610393366004611aa6565b610b22565b3480156103a457600080fd5b5061022a610b99565b3480156103b957600080fd5b5061020760095481565b3480156103cf57600080fd5b506102076103de3660046118b7565b610c27565b3480156103ef57600080fd5b50610282610cae565b34801561040457600080fd5b50610282610ce4565b34801561041957600080fd5b506000546001600160a01b0316610257565b34801561043757600080fd5b5061022a610d22565b34801561044c57600080fd5b5061020760085481565b34801561046257600080fd5b506102826104713660046119bd565b610d31565b34801561048257600080fd5b50610282610491366004611941565b610df6565b3480156104a257600080fd5b5061022a6104b1366004611aa6565b610e2e565b3480156104c257600080fd5b50610282610ee5565b3480156104d757600080fd5b506101dc6104e63660046118d2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561052057600080fd5b5061028261052f3660046118b7565b610fa7565b60006001600160e01b031982166380ac58cd60e01b148061056557506001600160e01b03198216635b5e139f60e01b145b8061058057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461059590611d64565b80601f01602080910402602001604051908101604052809291908181526020018280546105c190611d64565b801561060e5780601f106105e35761010080835404028352916020019161060e565b820191906000526020600020905b8154815290600101906020018083116105f157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106965760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600b5460ff166107045760405162461bcd60e51b815260206004820152601860248201527f53616c65206861736e27742073746172746564207965742e0000000000000000604482015260640161068d565b600854610711908261103f565b3410156107605760405162461bcd60e51b815260206004820152601960248201527f416d6f756e742073656e7420697320696e636f72726563742e00000000000000604482015260640161068d565b6009546007546107709083611052565b11156107b55760405162461bcd60e51b815260206004820152601460248201527329bab838363c903430b99039b7b6321037baba1760611b604482015260640161068d565b60075460005b828110156107fe576107ce600183611cd6565b6007549092506107df906001611052565b6007556107ec338361105e565b806107f681611d9f565b9150506107bb565b505050565b600061080e82610b22565b9050806001600160a01b0316836001600160a01b0316141561087c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161068d565b336001600160a01b0382161480610898575061089881336104e6565b61090a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161068d565b6107fe8383611078565b6000546001600160a01b0316331461093e5760405162461bcd60e51b815260040161068d90611c50565b805161095190600a90602084019061178c565b5050565b61095f33826110e6565b61097b5760405162461bcd60e51b815260040161068d90611c85565b6107fe8383836111dd565b6000546001600160a01b031633146109b05760405162461bcd60e51b815260040161068d90611c50565b600047116109e95760405162461bcd60e51b815260040161068d906020808252600490820152634e6f6e6560e01b604082015260600190565b600b54479060009061010090046001600160a01b0316610a156064610a0f85605e61103f565b9061137d565b604051600081818185875af1925050503d8060008114610a51576040519150601f19603f3d011682016040523d82523d6000602084013e610a56565b606091505b5050600c549091506000906001600160a01b0316610a7a6064610a0f86600661103f565b604051600081818185875af1925050503d8060008114610ab6576040519150601f19603f3d011682016040523d82523d6000602084013e610abb565b606091505b50509050818015610ac95750805b6107fe5760405162461bcd60e51b815260206004820152600f60248201526e4661696c656420776974686472617760881b604482015260640161068d565b6107fe83838360405180602001604052806000815250610df6565b6000818152600360205260408120546001600160a01b0316806105805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161068d565b600a8054610ba690611d64565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd290611d64565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b505050505081565b60006001600160a01b038216610c925760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161068d565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610cd85760405162461bcd60e51b815260040161068d90611c50565b610ce26000611389565b565b6000546001600160a01b03163314610d0e5760405162461bcd60e51b815260040161068d90611c50565b600b805460ff19811660ff90911615179055565b60606002805461059590611d64565b6001600160a01b038216331415610d8a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161068d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e0033836110e6565b610e1c5760405162461bcd60e51b815260040161068d90611c85565b610e28848484846113d9565b50505050565b6000818152600360205260409020546060906001600160a01b0316610e895760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b604482015260640161068d565b6000600a8054610e9890611d64565b905011610eb45760405180602001604052806000815250610580565b600a610ebf8361140c565b604051602001610ed0929190611b07565b60405160208183030381529060405292915050565b6000546001600160a01b03163314610f0f5760405162461bcd60e51b815260040161068d90611c50565b600c546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610f5c576040519150601f19603f3d011682016040523d82523d6000602084013e610f61565b606091505b5050905080610fa45760405162461bcd60e51b815260206004820152600f60248201526e4661696c656420576974686472617760881b604482015260640161068d565b50565b6000546001600160a01b03163314610fd15760405162461bcd60e51b815260040161068d90611c50565b6001600160a01b0381166110365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068d565b610fa481611389565b600061104b8284611d02565b9392505050565b600061104b8284611cd6565b61095182826040518060200160405280600081525061150a565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110ad82610b22565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b031661115f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068d565b600061116a83610b22565b9050806001600160a01b0316846001600160a01b031614806111a55750836001600160a01b031661119a84610618565b6001600160a01b0316145b806111d557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111f082610b22565b6001600160a01b0316146112585760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161068d565b6001600160a01b0382166112ba5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161068d565b6112c5600082611078565b6001600160a01b03831660009081526004602052604081208054600192906112ee908490611d21565b90915550506001600160a01b038216600090815260046020526040812080546001929061131c908490611cd6565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061104b8284611cee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6113e48484846111dd565b6113f08484848461153d565b610e285760405162461bcd60e51b815260040161068d90611bfe565b6060816114305750506040805180820190915260018152600360fc1b602082015290565b8160005b811561145a578061144481611d9f565b91506114539050600a83611cee565b9150611434565b60008167ffffffffffffffff81111561147557611475611e10565b6040519080825280601f01601f19166020018201604052801561149f576020820181803683370190505b5090505b84156111d5576114b4600183611d21565b91506114c1600a86611dba565b6114cc906030611cd6565b60f81b8183815181106114e1576114e1611dfa565b60200101906001600160f81b031916908160001a905350611503600a86611cee565b94506114a3565b611514838361164a565b611521600084848461153d565b6107fe5760405162461bcd60e51b815260040161068d90611bfe565b60006001600160a01b0384163b1561163f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611581903390899088908890600401611bae565b602060405180830381600087803b15801561159b57600080fd5b505af19250505080156115cb575060408051601f3d908101601f191682019092526115c891810190611a40565b60015b611625573d8080156115f9576040519150601f19603f3d011682016040523d82523d6000602084013e6115fe565b606091505b50805161161d5760405162461bcd60e51b815260040161068d90611bfe565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111d5565b506001949350505050565b6001600160a01b0382166116a05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161068d565b6000818152600360205260409020546001600160a01b0316156117055760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161068d565b6001600160a01b038216600090815260046020526040812080546001929061172e908490611cd6565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461179890611d64565b90600052602060002090601f0160209004810192826117ba5760008555611800565b82601f106117d357805160ff1916838001178555611800565b82800160010185558215611800579182015b828111156118005782518255916020019190600101906117e5565b5061180c929150611810565b5090565b5b8082111561180c5760008155600101611811565b600067ffffffffffffffff8084111561184057611840611e10565b604051601f8501601f19908116603f0116810190828211818310171561186857611868611e10565b8160405280935085815286868601111561188157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118b257600080fd5b919050565b6000602082840312156118c957600080fd5b61104b8261189b565b600080604083850312156118e557600080fd5b6118ee8361189b565b91506118fc6020840161189b565b90509250929050565b60008060006060848603121561191a57600080fd5b6119238461189b565b92506119316020850161189b565b9150604084013590509250925092565b6000806000806080858703121561195757600080fd5b6119608561189b565b935061196e6020860161189b565b925060408501359150606085013567ffffffffffffffff81111561199157600080fd5b8501601f810187136119a257600080fd5b6119b187823560208401611825565b91505092959194509250565b600080604083850312156119d057600080fd5b6119d98361189b565b9150602083013580151581146119ee57600080fd5b809150509250929050565b60008060408385031215611a0c57600080fd5b611a158361189b565b946020939093013593505050565b600060208284031215611a3557600080fd5b813561104b81611e26565b600060208284031215611a5257600080fd5b815161104b81611e26565b600060208284031215611a6f57600080fd5b813567ffffffffffffffff811115611a8657600080fd5b8201601f81018413611a9757600080fd5b6111d584823560208401611825565b600060208284031215611ab857600080fd5b5035919050565b60008151808452611ad7816020860160208601611d38565b601f01601f19169290920160200192915050565b60008151611afd818560208601611d38565b9290920192915050565b600080845481600182811c915080831680611b2357607f831692505b6020808410821415611b4357634e487b7160e01b86526022600452602486fd5b818015611b575760018114611b6857611b95565b60ff19861689528489019650611b95565b60008b81526020902060005b86811015611b8d5781548b820152908501908301611b74565b505084890196505b505050505050611ba58185611aeb565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611be190830184611abf565b9695505050505050565b60208152600061104b6020830184611abf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611ce957611ce9611dce565b500190565b600082611cfd57611cfd611de4565b500490565b6000816000190483118215151615611d1c57611d1c611dce565b500290565b600082821015611d3357611d33611dce565b500390565b60005b83811015611d53578181015183820152602001611d3b565b83811115610e285750506000910152565b600181811c90821680611d7857607f821691505b60208210811415611d9957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611db357611db3611dce565b5060010190565b600082611dc957611dc9611de4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fa457600080fdfea264697066735822122010f651410e9b185da7e9d1a0251068a9f044feb9442939670474132984758b4064736f6c6343000807003300000000000000000000000000000000000000000000000000000000000012d30000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005b68747470733a2f2f6d697373756e6976657273656e66742e6d7970696e6174612e636c6f75642f697066732f516d6147317136783156324b57416d3851736d6250767958574e6a476b5134585658344453375250674336417a782f0000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a035b1fe1161008a578063c87b56dd11610064578063c87b56dd14610496578063dfeac3a9146104b6578063e985e9c5146104cb578063f2fde38b1461051457600080fd5b8063a035b1fe14610440578063a22cb46514610456578063b88d4fde1461047657600080fd5b8063715018a6116100c6578063715018a6146103e35780637ba5e621146103f85780638da5cb5b1461040d57806395d89b411461042b57600080fd5b80636c0360eb146103985780636c7c5a53146103ad57806370a08231146103c357600080fd5b80630b8d0a28116101595780633ccfd60b116101335780633ccfd60b14610329578063425ef7091461033e57806342842e0e146103585780636352211e1461037857600080fd5b80630b8d0a28146102c45780631a026c96146102e457806323b872dd1461030957600080fd5b8063081812fc11610195578063081812fc1461023757806308630f861461026f578063095ea7b3146102845780630a04472b146102a457600080fd5b806301ffc9a7146101bc578063047fc9aa146101f157806306fdde0314610215575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611a23565b610534565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020760075481565b6040519081526020016101e8565b34801561022157600080fd5b5061022a610586565b6040516101e89190611beb565b34801561024357600080fd5b50610257610252366004611aa6565b610618565b6040516001600160a01b0390911681526020016101e8565b61028261027d366004611aa6565b6106b2565b005b34801561029057600080fd5b5061028261029f3660046119f9565b610803565b3480156102b057600080fd5b506102826102bf366004611a5d565b610914565b3480156102d057600080fd5b50600c54610257906001600160a01b031681565b3480156102f057600080fd5b50600b546102579061010090046001600160a01b031681565b34801561031557600080fd5b50610282610324366004611905565b610955565b34801561033557600080fd5b50610282610986565b34801561034a57600080fd5b50600b546101dc9060ff1681565b34801561036457600080fd5b50610282610373366004611905565b610b07565b34801561038457600080fd5b50610257610393366004611aa6565b610b22565b3480156103a457600080fd5b5061022a610b99565b3480156103b957600080fd5b5061020760095481565b3480156103cf57600080fd5b506102076103de3660046118b7565b610c27565b3480156103ef57600080fd5b50610282610cae565b34801561040457600080fd5b50610282610ce4565b34801561041957600080fd5b506000546001600160a01b0316610257565b34801561043757600080fd5b5061022a610d22565b34801561044c57600080fd5b5061020760085481565b34801561046257600080fd5b506102826104713660046119bd565b610d31565b34801561048257600080fd5b50610282610491366004611941565b610df6565b3480156104a257600080fd5b5061022a6104b1366004611aa6565b610e2e565b3480156104c257600080fd5b50610282610ee5565b3480156104d757600080fd5b506101dc6104e63660046118d2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561052057600080fd5b5061028261052f3660046118b7565b610fa7565b60006001600160e01b031982166380ac58cd60e01b148061056557506001600160e01b03198216635b5e139f60e01b145b8061058057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461059590611d64565b80601f01602080910402602001604051908101604052809291908181526020018280546105c190611d64565b801561060e5780601f106105e35761010080835404028352916020019161060e565b820191906000526020600020905b8154815290600101906020018083116105f157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106965760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600b5460ff166107045760405162461bcd60e51b815260206004820152601860248201527f53616c65206861736e27742073746172746564207965742e0000000000000000604482015260640161068d565b600854610711908261103f565b3410156107605760405162461bcd60e51b815260206004820152601960248201527f416d6f756e742073656e7420697320696e636f72726563742e00000000000000604482015260640161068d565b6009546007546107709083611052565b11156107b55760405162461bcd60e51b815260206004820152601460248201527329bab838363c903430b99039b7b6321037baba1760611b604482015260640161068d565b60075460005b828110156107fe576107ce600183611cd6565b6007549092506107df906001611052565b6007556107ec338361105e565b806107f681611d9f565b9150506107bb565b505050565b600061080e82610b22565b9050806001600160a01b0316836001600160a01b0316141561087c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161068d565b336001600160a01b0382161480610898575061089881336104e6565b61090a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161068d565b6107fe8383611078565b6000546001600160a01b0316331461093e5760405162461bcd60e51b815260040161068d90611c50565b805161095190600a90602084019061178c565b5050565b61095f33826110e6565b61097b5760405162461bcd60e51b815260040161068d90611c85565b6107fe8383836111dd565b6000546001600160a01b031633146109b05760405162461bcd60e51b815260040161068d90611c50565b600047116109e95760405162461bcd60e51b815260040161068d906020808252600490820152634e6f6e6560e01b604082015260600190565b600b54479060009061010090046001600160a01b0316610a156064610a0f85605e61103f565b9061137d565b604051600081818185875af1925050503d8060008114610a51576040519150601f19603f3d011682016040523d82523d6000602084013e610a56565b606091505b5050600c549091506000906001600160a01b0316610a7a6064610a0f86600661103f565b604051600081818185875af1925050503d8060008114610ab6576040519150601f19603f3d011682016040523d82523d6000602084013e610abb565b606091505b50509050818015610ac95750805b6107fe5760405162461bcd60e51b815260206004820152600f60248201526e4661696c656420776974686472617760881b604482015260640161068d565b6107fe83838360405180602001604052806000815250610df6565b6000818152600360205260408120546001600160a01b0316806105805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161068d565b600a8054610ba690611d64565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd290611d64565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b505050505081565b60006001600160a01b038216610c925760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161068d565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610cd85760405162461bcd60e51b815260040161068d90611c50565b610ce26000611389565b565b6000546001600160a01b03163314610d0e5760405162461bcd60e51b815260040161068d90611c50565b600b805460ff19811660ff90911615179055565b60606002805461059590611d64565b6001600160a01b038216331415610d8a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161068d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e0033836110e6565b610e1c5760405162461bcd60e51b815260040161068d90611c85565b610e28848484846113d9565b50505050565b6000818152600360205260409020546060906001600160a01b0316610e895760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b604482015260640161068d565b6000600a8054610e9890611d64565b905011610eb45760405180602001604052806000815250610580565b600a610ebf8361140c565b604051602001610ed0929190611b07565b60405160208183030381529060405292915050565b6000546001600160a01b03163314610f0f5760405162461bcd60e51b815260040161068d90611c50565b600c546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610f5c576040519150601f19603f3d011682016040523d82523d6000602084013e610f61565b606091505b5050905080610fa45760405162461bcd60e51b815260206004820152600f60248201526e4661696c656420576974686472617760881b604482015260640161068d565b50565b6000546001600160a01b03163314610fd15760405162461bcd60e51b815260040161068d90611c50565b6001600160a01b0381166110365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068d565b610fa481611389565b600061104b8284611d02565b9392505050565b600061104b8284611cd6565b61095182826040518060200160405280600081525061150a565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110ad82610b22565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b031661115f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068d565b600061116a83610b22565b9050806001600160a01b0316846001600160a01b031614806111a55750836001600160a01b031661119a84610618565b6001600160a01b0316145b806111d557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111f082610b22565b6001600160a01b0316146112585760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161068d565b6001600160a01b0382166112ba5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161068d565b6112c5600082611078565b6001600160a01b03831660009081526004602052604081208054600192906112ee908490611d21565b90915550506001600160a01b038216600090815260046020526040812080546001929061131c908490611cd6565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061104b8284611cee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6113e48484846111dd565b6113f08484848461153d565b610e285760405162461bcd60e51b815260040161068d90611bfe565b6060816114305750506040805180820190915260018152600360fc1b602082015290565b8160005b811561145a578061144481611d9f565b91506114539050600a83611cee565b9150611434565b60008167ffffffffffffffff81111561147557611475611e10565b6040519080825280601f01601f19166020018201604052801561149f576020820181803683370190505b5090505b84156111d5576114b4600183611d21565b91506114c1600a86611dba565b6114cc906030611cd6565b60f81b8183815181106114e1576114e1611dfa565b60200101906001600160f81b031916908160001a905350611503600a86611cee565b94506114a3565b611514838361164a565b611521600084848461153d565b6107fe5760405162461bcd60e51b815260040161068d90611bfe565b60006001600160a01b0384163b1561163f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611581903390899088908890600401611bae565b602060405180830381600087803b15801561159b57600080fd5b505af19250505080156115cb575060408051601f3d908101601f191682019092526115c891810190611a40565b60015b611625573d8080156115f9576040519150601f19603f3d011682016040523d82523d6000602084013e6115fe565b606091505b50805161161d5760405162461bcd60e51b815260040161068d90611bfe565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111d5565b506001949350505050565b6001600160a01b0382166116a05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161068d565b6000818152600360205260409020546001600160a01b0316156117055760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161068d565b6001600160a01b038216600090815260046020526040812080546001929061172e908490611cd6565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461179890611d64565b90600052602060002090601f0160209004810192826117ba5760008555611800565b82601f106117d357805160ff1916838001178555611800565b82800160010185558215611800579182015b828111156118005782518255916020019190600101906117e5565b5061180c929150611810565b5090565b5b8082111561180c5760008155600101611811565b600067ffffffffffffffff8084111561184057611840611e10565b604051601f8501601f19908116603f0116810190828211818310171561186857611868611e10565b8160405280935085815286868601111561188157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118b257600080fd5b919050565b6000602082840312156118c957600080fd5b61104b8261189b565b600080604083850312156118e557600080fd5b6118ee8361189b565b91506118fc6020840161189b565b90509250929050565b60008060006060848603121561191a57600080fd5b6119238461189b565b92506119316020850161189b565b9150604084013590509250925092565b6000806000806080858703121561195757600080fd5b6119608561189b565b935061196e6020860161189b565b925060408501359150606085013567ffffffffffffffff81111561199157600080fd5b8501601f810187136119a257600080fd5b6119b187823560208401611825565b91505092959194509250565b600080604083850312156119d057600080fd5b6119d98361189b565b9150602083013580151581146119ee57600080fd5b809150509250929050565b60008060408385031215611a0c57600080fd5b611a158361189b565b946020939093013593505050565b600060208284031215611a3557600080fd5b813561104b81611e26565b600060208284031215611a5257600080fd5b815161104b81611e26565b600060208284031215611a6f57600080fd5b813567ffffffffffffffff811115611a8657600080fd5b8201601f81018413611a9757600080fd5b6111d584823560208401611825565b600060208284031215611ab857600080fd5b5035919050565b60008151808452611ad7816020860160208601611d38565b601f01601f19169290920160200192915050565b60008151611afd818560208601611d38565b9290920192915050565b600080845481600182811c915080831680611b2357607f831692505b6020808410821415611b4357634e487b7160e01b86526022600452602486fd5b818015611b575760018114611b6857611b95565b60ff19861689528489019650611b95565b60008b81526020902060005b86811015611b8d5781548b820152908501908301611b74565b505084890196505b505050505050611ba58185611aeb565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611be190830184611abf565b9695505050505050565b60208152600061104b6020830184611abf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611ce957611ce9611dce565b500190565b600082611cfd57611cfd611de4565b500490565b6000816000190483118215151615611d1c57611d1c611dce565b500290565b600082821015611d3357611d33611dce565b500390565b60005b83811015611d53578181015183820152602001611d3b565b83811115610e285750506000910152565b600181811c90821680611d7857607f821691505b60208210811415611d9957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611db357611db3611dce565b5060010190565b600082611dc957611dc9611de4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fa457600080fdfea264697066735822122010f651410e9b185da7e9d1a0251068a9f044feb9442939670474132984758b4064736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000012d30000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005b68747470733a2f2f6d697373756e6976657273656e66742e6d7970696e6174612e636c6f75642f697066732f516d6147317136783156324b57416d3851736d6250767958574e6a476b5134585658344453375250674336417a782f0000000000

-----Decoded View---------------
Arg [0] : amount (uint256): 4819
Arg [1] : _baseURI (string): https://missuniversenft.mypinata.cloud/ipfs/QmaG1q6x1V2KWAm8QsmbPvyXWNjGkQ4XVX4DS7RPgC6Azx/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000012d3
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 000000000000000000000000000000000000000000000000000000000000005b
Arg [3] : 68747470733a2f2f6d697373756e6976657273656e66742e6d7970696e617461
Arg [4] : 2e636c6f75642f697066732f516d6147317136783156324b57416d3851736d62
Arg [5] : 50767958574e6a476b5134585658344453375250674336417a782f0000000000


Deployed Bytecode Sourcemap

204:2131:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1430:300:3;;;;;;;;;;-1:-1:-1;1430:300:3;;;;;:::i;:::-;;:::i;:::-;;;6750:14:12;;6743:22;6725:41;;6713:2;6698:18;1430:300:3;;;;;;;;322:25:8;;;;;;;;;;;;;;;;;;;15535::12;;;15523:2;15508:18;322:25:8;15389:177:12;2348:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3859:217::-;;;;;;;;;;-1:-1:-1;3859:217:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6048:32:12;;;6030:51;;6018:2;6003:18;3859:217:3;5884:203:12;1871:461:8;;;;;;:::i;:::-;;:::i;:::-;;3397:401:3;;;;;;;;;;-1:-1:-1;3397:401:3;;;;;:::i;:::-;;:::i;1185:95:8:-;;;;;;;;;;-1:-1:-1;1185:95:8;;;;;:::i;:::-;;:::i;569:67::-;;;;;;;;;;-1:-1:-1;569:67:8;;;;-1:-1:-1;;;;;569:67:8;;;496;;;;;;;;;;-1:-1:-1;496:67:8;;;;;;;-1:-1:-1;;;;;496:67:8;;;4723:330:3;;;;;;;;;;-1:-1:-1;4723:330:3;;;;;:::i;:::-;;:::i;1286:388:8:-;;;;;;;;;;;;;:::i;459:30::-;;;;;;;;;;-1:-1:-1;459:30:8;;;;;;;;5119:179:3;;;;;;;;;;-1:-1:-1;5119:179:3;;;;;:::i;:::-;;:::i;2051:235::-;;;;;;;;;;-1:-1:-1;2051:235:3;;;;;:::i;:::-;;:::i;427:26:8:-;;;;;;;;;;;;;:::i;392:28::-;;;;;;;;;;;;;;;;1789:205:3;;;;;;;;;;-1:-1:-1;1789:205:3;;;;;:::i;:::-;;:::i;1598:92:9:-;;;;;;;;;;;;;:::i;1095:80:8:-;;;;;;;;;;;;;:::i;966:85:9:-;;;;;;;;;;-1:-1:-1;1012:7:9;1038:6;-1:-1:-1;;;;;1038:6:9;966:85;;2510:102:3;;;;;;;;;;;;;:::i;353:33:8:-;;;;;;;;;;;;;;;;4143:290:3;;;;;;;;;;-1:-1:-1;4143:290:3;;;;;:::i;:::-;;:::i;5364:320::-;;;;;;;;;;-1:-1:-1;5364:320:3;;;;;:::i;:::-;;:::i;828:261:8:-;;;;;;;;;;-1:-1:-1;828:261:8;;;;;:::i;:::-;;:::i;1684:177::-;;;;;;;;;;;;;:::i;4499:162:3:-;;;;;;;;;;-1:-1:-1;4499:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;4619:25:3;;;4596:4;4619:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4499:162;1839:189:9;;;;;;;;;;-1:-1:-1;1839:189:9;;;;;:::i;:::-;;:::i;1430:300:3:-;1532:4;-1:-1:-1;;;;;;1567:40:3;;-1:-1:-1;;;1567:40:3;;:104;;-1:-1:-1;;;;;;;1623:48:3;;-1:-1:-1;;;1623:48:3;1567:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:2;;;1687:36:3;1548:175;1430:300;-1:-1:-1;;1430:300:3:o;2348:98::-;2402:13;2434:5;2427:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2348:98;:::o;3859:217::-;3935:7;7244:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7244:16:3;3954:73;;;;-1:-1:-1;;;3954:73:3;;12553:2:12;3954:73:3;;;12535:21:12;12592:2;12572:18;;;12565:30;12631:34;12611:18;;;12604:62;-1:-1:-1;;;12682:18:12;;;12675:42;12734:19;;3954:73:3;;;;;;;;;-1:-1:-1;4045:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4045:24:3;;3859:217::o;1871:461:8:-;1938:10;;;;1930:47;;;;-1:-1:-1;;;1930:47:8;;7552:2:12;1930:47:8;;;7534:21:12;7591:2;7571:18;;;7564:30;7630:26;7610:18;;;7603:54;7674:18;;1930:47:8;7350:348:12;1930:47:8;2008:5;;:14;;2018:3;2008:9;:14::i;:::-;1995:9;:27;;1987:65;;;;-1:-1:-1;;;1987:65:8;;9088:2:12;1987:65:8;;;9070:21:12;9127:2;9107:18;;;9100:30;9166:27;9146:18;;;9139:55;9211:18;;1987:65:8;8886:349:12;1987:65:8;2089:13;;2070:6;;:15;;2081:3;2070:10;:15::i;:::-;:32;;2062:65;;;;-1:-1:-1;;;2062:65:8;;7203:2:12;2062:65:8;;;7185:21:12;7242:2;7222:18;;;7215:30;-1:-1:-1;;;7261:18:12;;;7254:50;7321:18;;2062:65:8;7001:344:12;2062:65:8;2158:6;;2138:17;2174:152;2194:3;2190:1;:7;2174:152;;;2218:14;2231:1;2218:14;;:::i;:::-;2255:6;;2218:14;;-1:-1:-1;2255:13:8;;2266:1;2255:10;:13::i;:::-;2246:6;:22;2283:32;2293:10;2305:9;2283;:32::i;:::-;2199:3;;;;:::i;:::-;;;;2174:152;;;;1920:412;1871:461;:::o;3397:401:3:-;3477:13;3493:23;3508:7;3493:14;:23::i;:::-;3477:39;;3540:5;-1:-1:-1;;;;;3534:11:3;:2;-1:-1:-1;;;;;3534:11:3;;;3526:57;;;;-1:-1:-1;;;3526:57:3;;14771:2:12;3526:57:3;;;14753:21:12;14810:2;14790:18;;;14783:30;14849:34;14829:18;;;14822:62;-1:-1:-1;;;14900:18:12;;;14893:31;14941:19;;3526:57:3;14569:397:12;3526:57:3;666:10:1;-1:-1:-1;;;;;3615:21:3;;;;:62;;-1:-1:-1;3640:37:3;3657:5;666:10:1;4499:162:3;:::i;3640:37::-;3594:165;;;;-1:-1:-1;;;3594:165:3;;10614:2:12;3594:165:3;;;10596:21:12;10653:2;10633:18;;;10626:30;10692:34;10672:18;;;10665:62;10763:26;10743:18;;;10736:54;10807:19;;3594:165:3;10412:420:12;3594:165:3;3770:21;3779:2;3783:7;3770:8;:21::i;1185:95:8:-;1012:7:9;1038:6;-1:-1:-1;;;;;1038:6:9;666:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;1255:18:8;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1185:95:::0;:::o;4723:330:3:-;4912:41;666:10:1;4945:7:3;4912:18;:41::i;:::-;4904:103;;;;-1:-1:-1;;;4904:103:3;;;;;;;:::i;:::-;5018:28;5028:4;5034:2;5038:7;5018:9;:28::i;1286:388:8:-;1012:7:9;1038:6;-1:-1:-1;;;;;1038:6:9;666:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;1367:1:8::1;1343:21;:25;1335:42;;;;-1:-1:-1::0;;;1335:42:8::1;;;;;;12221:2:12::0;12203:21;;;12260:1;12240:18;;;12233:29;-1:-1:-1;;;12293:2:12;12278:18;;12271:34;12337:2;12322:18;;12019:327;1335:42:8::1;1470:7;::::0;1411:21:::1;::::0;1387::::1;::::0;1470:7:::1;::::0;::::1;-1:-1:-1::0;;;;;1470:7:8::1;1490:30;1516:3;1490:21;1411::::0;1508:2:::1;1490:17;:21::i;:::-;:25:::0;::::1;:30::i;:::-;1470:55;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;1554:7:8::1;::::0;1451:74;;-1:-1:-1;1536:13:8::1;::::0;-1:-1:-1;;;;;1554:7:8::1;1574:29;1599:3;1574:20;:13:::0;1592:1:::1;1574:17;:20::i;:29::-;1554:54;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1535:73;;;1627:8;:20;;;;;1639:8;1627:20;1619:48;;;::::0;-1:-1:-1;;;1619:48:8;;14427:2:12;1619:48:8::1;::::0;::::1;14409:21:12::0;14466:2;14446:18;;;14439:30;-1:-1:-1;;;14485:18:12;;;14478:45;14540:18;;1619:48:8::1;14225:339:12::0;5119:179:3;5252:39;5269:4;5275:2;5279:7;5252:39;;;;;;;;;;;;:16;:39::i;2051:235::-;2123:7;2158:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2158:16:3;2192:19;2184:73;;;;-1:-1:-1;;;2184:73:3;;11450:2:12;2184:73:3;;;11432:21:12;11489:2;11469:18;;;11462:30;11528:34;11508:18;;;11501:62;-1:-1:-1;;;11579:18:12;;;11572:39;11628:19;;2184:73:3;11248:405:12;427:26:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1789:205:3:-;1861:7;-1:-1:-1;;;;;1888:19:3;;1880:74;;;;-1:-1:-1;;;1880:74:3;;11039:2:12;1880:74:3;;;11021:21:12;11078:2;11058:18;;;11051:30;11117:34;11097:18;;;11090:62;-1:-1:-1;;;11168:18:12;;;11161:40;11218:19;;1880:74:3;10837:406:12;1880:74:3;-1:-1:-1;;;;;;1971:16:3;;;;;:9;:16;;;;;;;1789:205::o;1598:92:9:-;1012:7;1038:6;-1:-1:-1;;;;;1038:6:9;666:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;1095:80:8:-;1012:7:9;1038:6;-1:-1:-1;;;;;1038:6:9;666:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;1158:10:8::1;::::0;;-1:-1:-1;;1144:24:8;::::1;1158:10;::::0;;::::1;1157:11;1144:24;::::0;;1095:80::o;2510:102:3:-;2566:13;2598:7;2591:14;;;;;:::i;4143:290::-;-1:-1:-1;;;;;4245:24:3;;666:10:1;4245:24:3;;4237:62;;;;-1:-1:-1;;;4237:62:3;;9847:2:12;4237:62:3;;;9829:21:12;9886:2;9866:18;;;9859:30;9925:27;9905:18;;;9898:55;9970:18;;4237:62:3;9645:349:12;4237:62:3;666:10:1;4310:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4310:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;4310:53:3;;;;;;;;;;4378:48;;6725:41:12;;;4310:42:3;;666:10:1;4378:48:3;;6698:18:12;4378:48:3;;;;;;;4143:290;;:::o;5364:320::-;5533:41;666:10:1;5566:7:3;5533:18;:41::i;:::-;5525:103;;;;-1:-1:-1;;;5525:103:3;;;;;;;:::i;:::-;5638:39;5652:4;5658:2;5662:7;5671:5;5638:13;:39::i;:::-;5364:320;;;;:::o;828:261:8:-;7221:4:3;7244:16;;;:7;:16;;;;;;895:13:8;;-1:-1:-1;;;;;7244:16:3;920:48:8;;;;-1:-1:-1;;;920:48:8;;12966:2:12;920:48:8;;;12948:21:12;13005:2;12985:18;;;12978:30;-1:-1:-1;;;13024:18:12;;;13017:47;13081:18;;920:48:8;12764:341:12;920:48:8;1009:1;991:7;985:21;;;;;:::i;:::-;;;:25;:97;;;;;;;;;;;;;;;;;1046:7;1055:20;:9;:18;:20::i;:::-;1029:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;978:104;828:261;-1:-1:-1;;828:261:8:o;1684:177::-;1012:7:9;1038:6;-1:-1:-1;;;;;1038:6:9;666:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;1762:7:8::1;::::0;:46:::1;::::0;1744:13:::1;::::0;-1:-1:-1;;;;;1762:7:8::1;::::0;1782:21:::1;::::0;1744:13;1762:46;1744:13;1762:46;1782:21;1762:7;:46:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1743:65;;;1826:8;1818:36;;;::::0;-1:-1:-1;;;1818:36:8;;14083:2:12;1818:36:8::1;::::0;::::1;14065:21:12::0;14122:2;14102:18;;;14095:30;-1:-1:-1;;;14141:18:12;;;14134:45;14196:18;;1818:36:8::1;13881:339:12::0;1818:36:8::1;1733:128;1684:177::o:0;1839:189:9:-;1012:7;1038:6;-1:-1:-1;;;;;1038:6:9;666:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:9;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:9;;8324:2:12;1919:73:9::1;::::0;::::1;8306:21:12::0;8363:2;8343:18;;;8336:30;8402:34;8382:18;;;8375:62;-1:-1:-1;;;8453:18:12;;;8446:36;8499:19;;1919:73:9::1;8122:402:12::0;1919:73:9::1;2002:19;2012:8;2002:9;:19::i;3382:96:10:-:0;3440:7;3466:5;3470:1;3466;:5;:::i;:::-;3459:12;3382:96;-1:-1:-1;;;3382:96:10:o;2672:::-;2730:7;2756:5;2760:1;2756;:5;:::i;8113:108:3:-;8188:26;8198:2;8202:7;8188:26;;;;;;;;;;;;:9;:26::i;11007:171::-;11081:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11081:29:3;-1:-1:-1;;;;;11081:29:3;;;;;;;;:24;;11134:23;11081:24;11134:14;:23::i;:::-;-1:-1:-1;;;;;11125:46:3;;;;;;;;;;;11007:171;;:::o;7439:344::-;7532:4;7244:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7244:16:3;7548:73;;;;-1:-1:-1;;;7548:73:3;;10201:2:12;7548:73:3;;;10183:21:12;10240:2;10220:18;;;10213:30;10279:34;10259:18;;;10252:62;-1:-1:-1;;;10330:18:12;;;10323:42;10382:19;;7548:73:3;9999:408:12;7548:73:3;7631:13;7647:23;7662:7;7647:14;:23::i;:::-;7631:39;;7699:5;-1:-1:-1;;;;;7688:16:3;:7;-1:-1:-1;;;;;7688:16:3;;:51;;;;7732:7;-1:-1:-1;;;;;7708:31:3;:20;7720:7;7708:11;:20::i;:::-;-1:-1:-1;;;;;7708:31:3;;7688:51;:87;;;-1:-1:-1;;;;;;4619:25:3;;;4596:4;4619:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7743:32;7680:96;7439:344;-1:-1:-1;;;;7439:344:3:o;10336:560::-;10490:4;-1:-1:-1;;;;;10463:31:3;:23;10478:7;10463:14;:23::i;:::-;-1:-1:-1;;;;;10463:31:3;;10455:85;;;;-1:-1:-1;;;10455:85:3;;13673:2:12;10455:85:3;;;13655:21:12;13712:2;13692:18;;;13685:30;13751:34;13731:18;;;13724:62;-1:-1:-1;;;13802:18:12;;;13795:39;13851:19;;10455:85:3;13471:405:12;10455:85:3;-1:-1:-1;;;;;10558:16:3;;10550:65;;;;-1:-1:-1;;;10550:65:3;;9442:2:12;10550:65:3;;;9424:21:12;9481:2;9461:18;;;9454:30;9520:34;9500:18;;;9493:62;-1:-1:-1;;;9571:18:12;;;9564:34;9615:19;;10550:65:3;9240:400:12;10550:65:3;10727:29;10744:1;10748:7;10727:8;:29::i;:::-;-1:-1:-1;;;;;10767:15:3;;;;;;:9;:15;;;;;:20;;10786:1;;10767:15;:20;;10786:1;;10767:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10797:13:3;;;;;;:9;:13;;;;;:18;;10814:1;;10797:13;:18;;10814:1;;10797:18;:::i;:::-;;;;-1:-1:-1;;10825:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10825:21:3;-1:-1:-1;;;;;10825:21:3;;;;;;;;;10862:27;;10825:16;;10862:27;;;;;;;10336:560;;;:::o;3767:96:10:-;3825:7;3851:5;3855:1;3851;:5;:::i;2034:169:9:-;2089:16;2108:6;;-1:-1:-1;;;;;2124:17:9;;;-1:-1:-1;;;;;;2124:17:9;;;;;;2156:40;;2108:6;;;;;;;2156:40;;2089:16;2156:40;2079:124;2034:169;:::o;6546:307:3:-;6697:28;6707:4;6713:2;6717:7;6697:9;:28::i;:::-;6743:48;6766:4;6772:2;6776:7;6785:5;6743:22;:48::i;:::-;6735:111;;;;-1:-1:-1;;;6735:111:3;;;;;;;:::i;275:703:11:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:11;;;;;;;;;;;;-1:-1:-1;;;574:10:11;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:11;;-1:-1:-1;720:2:11;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:11;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:11;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:11;;;;;;;;-1:-1:-1;919:11:11;928:2;919:11;;:::i;:::-;;;791:150;;8442:311:3;8567:18;8573:2;8577:7;8567:5;:18::i;:::-;8616:54;8647:1;8651:2;8655:7;8664:5;8616:22;:54::i;:::-;8595:151;;;;-1:-1:-1;;;8595:151:3;;;;;;;:::i;11731:778::-;11881:4;-1:-1:-1;;;;;11901:13:3;;1034:20:0;1080:8;11897:606:3;;11936:72;;-1:-1:-1;;;11936:72:3;;-1:-1:-1;;;;;11936:36:3;;;;;:72;;666:10:1;;11987:4:3;;11993:7;;12002:5;;11936:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11936:72:3;;;;;;;;-1:-1:-1;;11936:72:3;;;;;;;;;;;;:::i;:::-;;;11932:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12175:13:3;;12171:266;;12217:60;;-1:-1:-1;;;12217:60:3;;;;;;;:::i;12171:266::-;12389:6;12383:13;12374:6;12370:2;12366:15;12359:38;11932:519;-1:-1:-1;;;;;;12058:51:3;-1:-1:-1;;;12058:51:3;;-1:-1:-1;12051:58:3;;11897:606;-1:-1:-1;12488:4:3;11731:778;;;;;;:::o;9075:372::-;-1:-1:-1;;;;;9154:16:3;;9146:61;;;;-1:-1:-1;;;9146:61:3;;11860:2:12;9146:61:3;;;11842:21:12;;;11879:18;;;11872:30;11938:34;11918:18;;;11911:62;11990:18;;9146:61:3;11658:356:12;9146:61:3;7221:4;7244:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7244:16:3;:30;9217:58;;;;-1:-1:-1;;;9217:58:3;;8731:2:12;9217:58:3;;;8713:21:12;8770:2;8750:18;;;8743:30;8809;8789:18;;;8782:58;8857:18;;9217:58:3;8529:352:12;9217:58:3;-1:-1:-1;;;;;9342:13:3;;;;;;:9;:13;;;;;:18;;9359:1;;9342:13;:18;;9359:1;;9342:18;:::i;:::-;;;;-1:-1:-1;;9370:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9370:21:3;-1:-1:-1;;;;;9370:21:3;;;;;;;;9407:33;;9370:16;;;9407:33;;9370:16;;9407:33;9075:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:12;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:12;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:12;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:12;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:12:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:12;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:12;;3858:180;-1:-1:-1;3858:180:12:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:12;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:12:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:12:o;4495:1174::-;4671:3;4700:1;4733:6;4727:13;4763:3;4785:1;4813:9;4809:2;4805:18;4795:28;;4873:2;4862:9;4858:18;4895;4885:61;;4939:4;4931:6;4927:17;4917:27;;4885:61;4965:2;5013;5005:6;5002:14;4982:18;4979:38;4976:165;;;-1:-1:-1;;;5040:33:12;;5096:4;5093:1;5086:15;5126:4;5047:3;5114:17;4976:165;5157:18;5184:104;;;;5302:1;5297:320;;;;5150:467;;5184:104;-1:-1:-1;;5217:24:12;;5205:37;;5262:16;;;;-1:-1:-1;5184:104:12;;5297:320;15644:1;15637:14;;;15681:4;15668:18;;5392:1;5406:165;5420:6;5417:1;5414:13;5406:165;;;5498:14;;5485:11;;;5478:35;5541:16;;;;5435:10;;5406:165;;;5410:3;;5600:6;5595:3;5591:16;5584:23;;5150:467;;;;;;;5633:30;5659:3;5651:6;5633:30;:::i;:::-;5626:37;4495:1174;-1:-1:-1;;;;;4495:1174:12:o;6092:488::-;-1:-1:-1;;;;;6361:15:12;;;6343:34;;6413:15;;6408:2;6393:18;;6386:43;6460:2;6445:18;;6438:34;;;6508:3;6503:2;6488:18;;6481:31;;;6286:4;;6529:45;;6554:19;;6546:6;6529:45;:::i;:::-;6521:53;6092:488;-1:-1:-1;;;;;;6092:488:12:o;6777:219::-;6926:2;6915:9;6908:21;6889:4;6946:44;6986:2;6975:9;6971:18;6963:6;6946:44;:::i;7703:414::-;7905:2;7887:21;;;7944:2;7924:18;;;7917:30;7983:34;7978:2;7963:18;;7956:62;-1:-1:-1;;;8049:2:12;8034:18;;8027:48;8107:3;8092:19;;7703:414::o;13110:356::-;13312:2;13294:21;;;13331:18;;;13324:30;13390:34;13385:2;13370:18;;13363:62;13457:2;13442:18;;13110:356::o;14971:413::-;15173:2;15155:21;;;15212:2;15192:18;;;15185:30;15251:34;15246:2;15231:18;;15224:62;-1:-1:-1;;;15317:2:12;15302:18;;15295:47;15374:3;15359:19;;14971:413::o;15697:128::-;15737:3;15768:1;15764:6;15761:1;15758:13;15755:39;;;15774:18;;:::i;:::-;-1:-1:-1;15810:9:12;;15697:128::o;15830:120::-;15870:1;15896;15886:35;;15901:18;;:::i;:::-;-1:-1:-1;15935:9:12;;15830:120::o;15955:168::-;15995:7;16061:1;16057;16053:6;16049:14;16046:1;16043:21;16038:1;16031:9;16024:17;16020:45;16017:71;;;16068:18;;:::i;:::-;-1:-1:-1;16108:9:12;;15955:168::o;16128:125::-;16168:4;16196:1;16193;16190:8;16187:34;;;16201:18;;:::i;:::-;-1:-1:-1;16238:9:12;;16128:125::o;16258:258::-;16330:1;16340:113;16354:6;16351:1;16348:13;16340:113;;;16430:11;;;16424:18;16411:11;;;16404:39;16376:2;16369:10;16340:113;;;16471:6;16468:1;16465:13;16462:48;;;-1:-1:-1;;16506:1:12;16488:16;;16481:27;16258:258::o;16521:380::-;16600:1;16596:12;;;;16643;;;16664:61;;16718:4;16710:6;16706:17;16696:27;;16664:61;16771:2;16763:6;16760:14;16740:18;16737:38;16734:161;;;16817:10;16812:3;16808:20;16805:1;16798:31;16852:4;16849:1;16842:15;16880:4;16877:1;16870:15;16734:161;;16521:380;;;:::o;16906:135::-;16945:3;-1:-1:-1;;16966:17:12;;16963:43;;;16986:18;;:::i;:::-;-1:-1:-1;17033:1:12;17022:13;;16906:135::o;17046:112::-;17078:1;17104;17094:35;;17109:18;;:::i;:::-;-1:-1:-1;17143:9:12;;17046:112::o;17163:127::-;17224:10;17219:3;17215:20;17212:1;17205:31;17255:4;17252:1;17245:15;17279:4;17276:1;17269:15;17295:127;17356:10;17351:3;17347:20;17344:1;17337:31;17387:4;17384:1;17377:15;17411:4;17408:1;17401:15;17427:127;17488:10;17483:3;17479:20;17476:1;17469:31;17519:4;17516:1;17509:15;17543:4;17540:1;17533:15;17559:127;17620:10;17615:3;17611:20;17608:1;17601:31;17651:4;17648:1;17641:15;17675:4;17672:1;17665:15;17691:131;-1:-1:-1;;;;;;17765:32:12;;17755:43;;17745:71;;17812:1;17809;17802:12

Swarm Source

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