ETH Price: $3,298.63 (-3.32%)
Gas: 20 Gwei

Token

PixelMekas (PixelMekas)
 

Overview

Max Total Supply

8,888 PixelMekas

Holders

2,393

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
f00f.eth
Balance
2 PixelMekas
0xd6df883a4927c4068f017573d781a4a62dfc992d
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:
PixelVerse

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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 @openzeppelin/contracts/access/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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





pragma solidity ^0.8.0;

contract PixelVerse is ERC721Enumerable, Ownable {
    using Strings for uint256;
    event Mint(address indexed sender, uint256 startWith, uint256 times);

    //supply counters
    uint256 public totalMints;
    uint256 public totalCount = 8888;
   
    //token Index tracker


    uint256 public maxBatch = 10;
    uint256 public price = 0.03 * 10 ** 18;

    //string
    string public baseURI;

    //bool
    bool private started;
    bool private mekas;
    //constructor args
    constructor(string memory name_, string memory symbol_, string memory baseURI_) ERC721(name_, symbol_) {
        baseURI = baseURI_;
    }

    //basic functions.
    function _baseURI() internal view virtual override returns (string memory){
        return baseURI;
    }
    function setBaseURI(string memory _newURI) public onlyOwner {
        baseURI = _newURI;
    }

    //erc721
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token.");

        string memory baseURI2 = _baseURI();
        return bytes(baseURI2).length > 0
            ? string(abi.encodePacked(baseURI2, tokenId.toString(), ".json")) : '.json';
    }
    function setStart(bool _start) public onlyOwner {
        started = _start;
    }

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

    function mint(uint256 _times) payable public {
        require(started, "not started");
        require(_times >0 && _times <= maxBatch, "must mint fewer in each batch");
        require(totalMints + _times <= totalCount, "max supply reached!");
        require(msg.value == _times * price, "value error, please check price.");
        payable(owner()).transfer(msg.value);
        emit Mint(_msgSender(), totalMints+1, _times);
        for(uint256 i=0; i< _times; i++){
            _mint(_msgSender(), 1 + totalMints++);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"}],"name":"Mint","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":[{"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":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526122b8600c55600a600d55666a94d74f430000600e553480156200002757600080fd5b506040516200247b3803806200247b8339810160408190526200004a916200027e565b825183908390620000639060009060208501906200010b565b508051620000799060019060208401906200010b565b5050506200009662000090620000b560201b60201c565b620000b9565b8051620000ab90600f9060208401906200010b565b505050506200034c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000119906200030f565b90600052602060002090601f0160209004810192826200013d576000855562000188565b82601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b5b808211156200019657600081556001016200019b565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001d957600080fd5b81516001600160401b0380821115620001f657620001f6620001b1565b604051601f8301601f19908116603f01168101908282118183101715620002215762000221620001b1565b816040528381526020925086838588010111156200023e57600080fd5b600091505b8382101562000262578582018301518183018401529082019062000243565b83821115620002745760008385830101525b9695505050505050565b6000806000606084860312156200029457600080fd5b83516001600160401b0380821115620002ac57600080fd5b620002ba87838801620001c7565b94506020860151915080821115620002d157600080fd5b620002df87838801620001c7565b93506040860151915080821115620002f657600080fd5b506200030586828701620001c7565b9150509250925092565b600181811c908216806200032457607f821691505b602082108114156200034657634e487b7160e01b600052602260045260246000fd5b50919050565b61211f806200035c6000396000f3fe6080604052600436106101b75760003560e01c806368e24327116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde146104a1578063c87b56dd146104c1578063e985e9c5146104e1578063f2fde38b1461052a57600080fd5b8063a035b1fe14610458578063a0712d681461046e578063a22cb4651461048157600080fd5b8063715018a6116100c6578063715018a6146103e35780638462151c146103f85780638da5cb5b1461042557806395d89b411461044357600080fd5b806368e243271461038e5780636c0360eb146103ae57806370a08231146103c357600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461031857806355f804b3146103385780636352211e1461035857806367765b871461037857600080fd5b80632f745c59146102c257806334eafb11146102e257806342842e0e146102f857600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d5780631f21bfbf1461028c57806323b872dd146102a257600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611af9565b61054a565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610575565b6040516101e89190611b6e565b34801561021f57600080fd5b5061023361022e366004611b81565b610607565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611bb6565b6106a1565b005b34801561027957600080fd5b506008545b6040519081526020016101e8565b34801561029857600080fd5b5061027e600b5481565b3480156102ae57600080fd5b5061026b6102bd366004611be0565b6107b7565b3480156102ce57600080fd5b5061027e6102dd366004611bb6565b6107e8565b3480156102ee57600080fd5b5061027e600c5481565b34801561030457600080fd5b5061026b610313366004611be0565b61087e565b34801561032457600080fd5b5061027e610333366004611b81565b610899565b34801561034457600080fd5b5061026b610353366004611ca8565b61092c565b34801561036457600080fd5b50610233610373366004611b81565b61096d565b34801561038457600080fd5b5061027e600d5481565b34801561039a57600080fd5b5061026b6103a9366004611d01565b6109e4565b3480156103ba57600080fd5b50610206610a21565b3480156103cf57600080fd5b5061027e6103de366004611d1c565b610aaf565b3480156103ef57600080fd5b5061026b610b36565b34801561040457600080fd5b50610418610413366004611d1c565b610b6c565b6040516101e89190611d37565b34801561043157600080fd5b50600a546001600160a01b0316610233565b34801561044f57600080fd5b50610206610c0e565b34801561046457600080fd5b5061027e600e5481565b61026b61047c366004611b81565b610c1d565b34801561048d57600080fd5b5061026b61049c366004611d7b565b610e33565b3480156104ad57600080fd5b5061026b6104bc366004611dae565b610ef8565b3480156104cd57600080fd5b506102066104dc366004611b81565b610f30565b3480156104ed57600080fd5b506101dc6104fc366004611e2a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053657600080fd5b5061026b610545366004611d1c565b61101a565b60006001600160e01b0319821663780e9d6360e01b148061056f575061056f826110b5565b92915050565b60606000805461058490611e54565b80601f01602080910402602001604051908101604052809291908181526020018280546105b090611e54565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ac8261096d565b9050806001600160a01b0316836001600160a01b0316141561071a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067c565b336001600160a01b0382161480610736575061073681336104fc565b6107a85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161067c565b6107b28383611105565b505050565b6107c13382611173565b6107dd5760405162461bcd60e51b815260040161067c90611e8f565b6107b283838361126a565b60006107f383610aaf565b82106108555760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161067c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107b283838360405180602001604052806000815250610ef8565b60006108a460085490565b82106109075760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161067c565b6008828154811061091a5761091a611ee0565b90600052602060002001549050919050565b600a546001600160a01b031633146109565760405162461bcd60e51b815260040161067c90611ef6565b805161096990600f906020840190611a4a565b5050565b6000818152600260205260408120546001600160a01b03168061056f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161067c565b600a546001600160a01b03163314610a0e5760405162461bcd60e51b815260040161067c90611ef6565b6010805460ff1916911515919091179055565b600f8054610a2e90611e54565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5a90611e54565b8015610aa75780601f10610a7c57610100808354040283529160200191610aa7565b820191906000526020600020905b815481529060010190602001808311610a8a57829003601f168201915b505050505081565b60006001600160a01b038216610b1a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161067c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b605760405162461bcd60e51b815260040161067c90611ef6565b610b6a6000611415565b565b60606000610b7983610aaf565b905060008167ffffffffffffffff811115610b9657610b96611c1c565b604051908082528060200260200182016040528015610bbf578160200160208202803683370190505b50905060005b82811015610c0657610bd785826107e8565b828281518110610be957610be9611ee0565b602090810291909101015280610bfe81611f41565b915050610bc5565b509392505050565b60606001805461058490611e54565b60105460ff16610c5d5760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b604482015260640161067c565b600081118015610c6f5750600d548111155b610cbb5760405162461bcd60e51b815260206004820152601d60248201527f6d757374206d696e7420666577657220696e2065616368206261746368000000604482015260640161067c565b600c5481600b54610ccc9190611f5c565b1115610d105760405162461bcd60e51b81526020600482015260136024820152726d617820737570706c7920726561636865642160681b604482015260640161067c565b600e54610d1d9082611f74565b3414610d6b5760405162461bcd60e51b815260206004820181905260248201527f76616c7565206572726f722c20706c6561736520636865636b2070726963652e604482015260640161067c565b600a546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610da4573d6000803e3d6000fd5b50600b5433907f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f90610dd7906001611f5c565b60408051918252602082018590520160405180910390a260005b8181101561096957610e2133600b8054906000610e0d83611f41565b90915550610e1c906001611f5c565b611467565b80610e2b81611f41565b915050610df1565b6001600160a01b038216331415610e8c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f023383611173565b610f1e5760405162461bcd60e51b815260040161067c90611e8f565b610f2a848484846115b5565b50505050565b6000818152600260205260409020546060906001600160a01b0316610fb05760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3732bc34b9ba32b73a103a37b5b2b71760811b606482015260840161067c565b6000610fba6115e8565b90506000815111610fe85760405180604001604052806005815260200164173539b7b760d91b815250611013565b80610ff2846115f7565b604051602001611003929190611f93565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110445760405162461bcd60e51b815260040161067c90611ef6565b6001600160a01b0381166110a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067c565b6110b281611415565b50565b60006001600160e01b031982166380ac58cd60e01b14806110e657506001600160e01b03198216635b5e139f60e01b145b8061056f57506301ffc9a760e01b6001600160e01b031983161461056f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061113a8261096d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111ec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067c565b60006111f78361096d565b9050806001600160a01b0316846001600160a01b031614806112325750836001600160a01b031661122784610607565b6001600160a01b0316145b8061126257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661127d8261096d565b6001600160a01b0316146112e55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161067c565b6001600160a01b0382166113475760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067c565b6113528383836116f5565b61135d600082611105565b6001600160a01b0383166000908152600360205260408120805460019290611386908490611fd2565b90915550506001600160a01b03821660009081526003602052604081208054600192906113b4908490611f5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166114bd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067c565b6000818152600260205260409020546001600160a01b0316156115225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067c565b61152e600083836116f5565b6001600160a01b0382166000908152600360205260408120805460019290611557908490611f5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6115c084848461126a565b6115cc848484846117ad565b610f2a5760405162461bcd60e51b815260040161067c90611fe9565b6060600f805461058490611e54565b60608161161b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611645578061162f81611f41565b915061163e9050600a83612051565b915061161f565b60008167ffffffffffffffff81111561166057611660611c1c565b6040519080825280601f01601f19166020018201604052801561168a576020820181803683370190505b5090505b84156112625761169f600183611fd2565b91506116ac600a86612065565b6116b7906030611f5c565b60f81b8183815181106116cc576116cc611ee0565b60200101906001600160f81b031916908160001a9053506116ee600a86612051565b945061168e565b6001600160a01b0383166117505761174b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611773565b816001600160a01b0316836001600160a01b0316146117735761177383826118ba565b6001600160a01b03821661178a576107b281611957565b826001600160a01b0316826001600160a01b0316146107b2576107b28282611a06565b60006001600160a01b0384163b156118af57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117f1903390899088908890600401612079565b602060405180830381600087803b15801561180b57600080fd5b505af192505050801561183b575060408051601f3d908101601f19168201909252611838918101906120b6565b60015b611895573d808015611869576040519150601f19603f3d011682016040523d82523d6000602084013e61186e565b606091505b50805161188d5760405162461bcd60e51b815260040161067c90611fe9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611262565b506001949350505050565b600060016118c784610aaf565b6118d19190611fd2565b600083815260076020526040902054909150808214611924576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061196990600190611fd2565b6000838152600960205260408120546008805493945090928490811061199157611991611ee0565b9060005260206000200154905080600883815481106119b2576119b2611ee0565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119ea576119ea6120d3565b6001900381819060005260206000200160009055905550505050565b6000611a1183610aaf565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611a5690611e54565b90600052602060002090601f016020900481019282611a785760008555611abe565b82601f10611a9157805160ff1916838001178555611abe565b82800160010185558215611abe579182015b82811115611abe578251825591602001919060010190611aa3565b50611aca929150611ace565b5090565b5b80821115611aca5760008155600101611acf565b6001600160e01b0319811681146110b257600080fd5b600060208284031215611b0b57600080fd5b813561101381611ae3565b60005b83811015611b31578181015183820152602001611b19565b83811115610f2a5750506000910152565b60008151808452611b5a816020860160208601611b16565b601f01601f19169290920160200192915050565b6020815260006110136020830184611b42565b600060208284031215611b9357600080fd5b5035919050565b80356001600160a01b0381168114611bb157600080fd5b919050565b60008060408385031215611bc957600080fd5b611bd283611b9a565b946020939093013593505050565b600080600060608486031215611bf557600080fd5b611bfe84611b9a565b9250611c0c60208501611b9a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c4d57611c4d611c1c565b604051601f8501601f19908116603f01168101908282118183101715611c7557611c75611c1c565b81604052809350858152868686011115611c8e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cba57600080fd5b813567ffffffffffffffff811115611cd157600080fd5b8201601f81018413611ce257600080fd5b61126284823560208401611c32565b80358015158114611bb157600080fd5b600060208284031215611d1357600080fd5b61101382611cf1565b600060208284031215611d2e57600080fd5b61101382611b9a565b6020808252825182820181905260009190848201906040850190845b81811015611d6f57835183529284019291840191600101611d53565b50909695505050505050565b60008060408385031215611d8e57600080fd5b611d9783611b9a565b9150611da560208401611cf1565b90509250929050565b60008060008060808587031215611dc457600080fd5b611dcd85611b9a565b9350611ddb60208601611b9a565b925060408501359150606085013567ffffffffffffffff811115611dfe57600080fd5b8501601f81018713611e0f57600080fd5b611e1e87823560208401611c32565b91505092959194509250565b60008060408385031215611e3d57600080fd5b611e4683611b9a565b9150611da560208401611b9a565b600181811c90821680611e6857607f821691505b60208210811415611e8957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415611f5557611f55611f2b565b5060010190565b60008219821115611f6f57611f6f611f2b565b500190565b6000816000190483118215151615611f8e57611f8e611f2b565b500290565b60008351611fa5818460208801611b16565b835190830190611fb9818360208801611b16565b64173539b7b760d91b9101908152600501949350505050565b600082821015611fe457611fe4611f2b565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826120605761206061203b565b500490565b6000826120745761207461203b565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ac90830184611b42565b9695505050505050565b6000602082840312156120c857600080fd5b815161101381611ae3565b634e487b7160e01b600052603160045260246000fdfea26469706673582212208b18c8501362d777e3a73c06384a339d3775639a4bd68b463e4e5a1025f6ebbd64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a506978656c4d656b617300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a506978656c4d656b6173000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000019687474703a2f2f3130342e3234382e36312e33362f6e66742f00000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806368e24327116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde146104a1578063c87b56dd146104c1578063e985e9c5146104e1578063f2fde38b1461052a57600080fd5b8063a035b1fe14610458578063a0712d681461046e578063a22cb4651461048157600080fd5b8063715018a6116100c6578063715018a6146103e35780638462151c146103f85780638da5cb5b1461042557806395d89b411461044357600080fd5b806368e243271461038e5780636c0360eb146103ae57806370a08231146103c357600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461031857806355f804b3146103385780636352211e1461035857806367765b871461037857600080fd5b80632f745c59146102c257806334eafb11146102e257806342842e0e146102f857600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d5780631f21bfbf1461028c57806323b872dd146102a257600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611af9565b61054a565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610575565b6040516101e89190611b6e565b34801561021f57600080fd5b5061023361022e366004611b81565b610607565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611bb6565b6106a1565b005b34801561027957600080fd5b506008545b6040519081526020016101e8565b34801561029857600080fd5b5061027e600b5481565b3480156102ae57600080fd5b5061026b6102bd366004611be0565b6107b7565b3480156102ce57600080fd5b5061027e6102dd366004611bb6565b6107e8565b3480156102ee57600080fd5b5061027e600c5481565b34801561030457600080fd5b5061026b610313366004611be0565b61087e565b34801561032457600080fd5b5061027e610333366004611b81565b610899565b34801561034457600080fd5b5061026b610353366004611ca8565b61092c565b34801561036457600080fd5b50610233610373366004611b81565b61096d565b34801561038457600080fd5b5061027e600d5481565b34801561039a57600080fd5b5061026b6103a9366004611d01565b6109e4565b3480156103ba57600080fd5b50610206610a21565b3480156103cf57600080fd5b5061027e6103de366004611d1c565b610aaf565b3480156103ef57600080fd5b5061026b610b36565b34801561040457600080fd5b50610418610413366004611d1c565b610b6c565b6040516101e89190611d37565b34801561043157600080fd5b50600a546001600160a01b0316610233565b34801561044f57600080fd5b50610206610c0e565b34801561046457600080fd5b5061027e600e5481565b61026b61047c366004611b81565b610c1d565b34801561048d57600080fd5b5061026b61049c366004611d7b565b610e33565b3480156104ad57600080fd5b5061026b6104bc366004611dae565b610ef8565b3480156104cd57600080fd5b506102066104dc366004611b81565b610f30565b3480156104ed57600080fd5b506101dc6104fc366004611e2a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053657600080fd5b5061026b610545366004611d1c565b61101a565b60006001600160e01b0319821663780e9d6360e01b148061056f575061056f826110b5565b92915050565b60606000805461058490611e54565b80601f01602080910402602001604051908101604052809291908181526020018280546105b090611e54565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ac8261096d565b9050806001600160a01b0316836001600160a01b0316141561071a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067c565b336001600160a01b0382161480610736575061073681336104fc565b6107a85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161067c565b6107b28383611105565b505050565b6107c13382611173565b6107dd5760405162461bcd60e51b815260040161067c90611e8f565b6107b283838361126a565b60006107f383610aaf565b82106108555760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161067c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107b283838360405180602001604052806000815250610ef8565b60006108a460085490565b82106109075760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161067c565b6008828154811061091a5761091a611ee0565b90600052602060002001549050919050565b600a546001600160a01b031633146109565760405162461bcd60e51b815260040161067c90611ef6565b805161096990600f906020840190611a4a565b5050565b6000818152600260205260408120546001600160a01b03168061056f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161067c565b600a546001600160a01b03163314610a0e5760405162461bcd60e51b815260040161067c90611ef6565b6010805460ff1916911515919091179055565b600f8054610a2e90611e54565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5a90611e54565b8015610aa75780601f10610a7c57610100808354040283529160200191610aa7565b820191906000526020600020905b815481529060010190602001808311610a8a57829003601f168201915b505050505081565b60006001600160a01b038216610b1a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161067c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b605760405162461bcd60e51b815260040161067c90611ef6565b610b6a6000611415565b565b60606000610b7983610aaf565b905060008167ffffffffffffffff811115610b9657610b96611c1c565b604051908082528060200260200182016040528015610bbf578160200160208202803683370190505b50905060005b82811015610c0657610bd785826107e8565b828281518110610be957610be9611ee0565b602090810291909101015280610bfe81611f41565b915050610bc5565b509392505050565b60606001805461058490611e54565b60105460ff16610c5d5760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b604482015260640161067c565b600081118015610c6f5750600d548111155b610cbb5760405162461bcd60e51b815260206004820152601d60248201527f6d757374206d696e7420666577657220696e2065616368206261746368000000604482015260640161067c565b600c5481600b54610ccc9190611f5c565b1115610d105760405162461bcd60e51b81526020600482015260136024820152726d617820737570706c7920726561636865642160681b604482015260640161067c565b600e54610d1d9082611f74565b3414610d6b5760405162461bcd60e51b815260206004820181905260248201527f76616c7565206572726f722c20706c6561736520636865636b2070726963652e604482015260640161067c565b600a546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610da4573d6000803e3d6000fd5b50600b5433907f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f90610dd7906001611f5c565b60408051918252602082018590520160405180910390a260005b8181101561096957610e2133600b8054906000610e0d83611f41565b90915550610e1c906001611f5c565b611467565b80610e2b81611f41565b915050610df1565b6001600160a01b038216331415610e8c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f023383611173565b610f1e5760405162461bcd60e51b815260040161067c90611e8f565b610f2a848484846115b5565b50505050565b6000818152600260205260409020546060906001600160a01b0316610fb05760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3732bc34b9ba32b73a103a37b5b2b71760811b606482015260840161067c565b6000610fba6115e8565b90506000815111610fe85760405180604001604052806005815260200164173539b7b760d91b815250611013565b80610ff2846115f7565b604051602001611003929190611f93565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110445760405162461bcd60e51b815260040161067c90611ef6565b6001600160a01b0381166110a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067c565b6110b281611415565b50565b60006001600160e01b031982166380ac58cd60e01b14806110e657506001600160e01b03198216635b5e139f60e01b145b8061056f57506301ffc9a760e01b6001600160e01b031983161461056f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061113a8261096d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111ec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067c565b60006111f78361096d565b9050806001600160a01b0316846001600160a01b031614806112325750836001600160a01b031661122784610607565b6001600160a01b0316145b8061126257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661127d8261096d565b6001600160a01b0316146112e55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161067c565b6001600160a01b0382166113475760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067c565b6113528383836116f5565b61135d600082611105565b6001600160a01b0383166000908152600360205260408120805460019290611386908490611fd2565b90915550506001600160a01b03821660009081526003602052604081208054600192906113b4908490611f5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166114bd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067c565b6000818152600260205260409020546001600160a01b0316156115225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067c565b61152e600083836116f5565b6001600160a01b0382166000908152600360205260408120805460019290611557908490611f5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6115c084848461126a565b6115cc848484846117ad565b610f2a5760405162461bcd60e51b815260040161067c90611fe9565b6060600f805461058490611e54565b60608161161b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611645578061162f81611f41565b915061163e9050600a83612051565b915061161f565b60008167ffffffffffffffff81111561166057611660611c1c565b6040519080825280601f01601f19166020018201604052801561168a576020820181803683370190505b5090505b84156112625761169f600183611fd2565b91506116ac600a86612065565b6116b7906030611f5c565b60f81b8183815181106116cc576116cc611ee0565b60200101906001600160f81b031916908160001a9053506116ee600a86612051565b945061168e565b6001600160a01b0383166117505761174b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611773565b816001600160a01b0316836001600160a01b0316146117735761177383826118ba565b6001600160a01b03821661178a576107b281611957565b826001600160a01b0316826001600160a01b0316146107b2576107b28282611a06565b60006001600160a01b0384163b156118af57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117f1903390899088908890600401612079565b602060405180830381600087803b15801561180b57600080fd5b505af192505050801561183b575060408051601f3d908101601f19168201909252611838918101906120b6565b60015b611895573d808015611869576040519150601f19603f3d011682016040523d82523d6000602084013e61186e565b606091505b50805161188d5760405162461bcd60e51b815260040161067c90611fe9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611262565b506001949350505050565b600060016118c784610aaf565b6118d19190611fd2565b600083815260076020526040902054909150808214611924576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061196990600190611fd2565b6000838152600960205260408120546008805493945090928490811061199157611991611ee0565b9060005260206000200154905080600883815481106119b2576119b2611ee0565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119ea576119ea6120d3565b6001900381819060005260206000200160009055905550505050565b6000611a1183610aaf565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611a5690611e54565b90600052602060002090601f016020900481019282611a785760008555611abe565b82601f10611a9157805160ff1916838001178555611abe565b82800160010185558215611abe579182015b82811115611abe578251825591602001919060010190611aa3565b50611aca929150611ace565b5090565b5b80821115611aca5760008155600101611acf565b6001600160e01b0319811681146110b257600080fd5b600060208284031215611b0b57600080fd5b813561101381611ae3565b60005b83811015611b31578181015183820152602001611b19565b83811115610f2a5750506000910152565b60008151808452611b5a816020860160208601611b16565b601f01601f19169290920160200192915050565b6020815260006110136020830184611b42565b600060208284031215611b9357600080fd5b5035919050565b80356001600160a01b0381168114611bb157600080fd5b919050565b60008060408385031215611bc957600080fd5b611bd283611b9a565b946020939093013593505050565b600080600060608486031215611bf557600080fd5b611bfe84611b9a565b9250611c0c60208501611b9a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c4d57611c4d611c1c565b604051601f8501601f19908116603f01168101908282118183101715611c7557611c75611c1c565b81604052809350858152868686011115611c8e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cba57600080fd5b813567ffffffffffffffff811115611cd157600080fd5b8201601f81018413611ce257600080fd5b61126284823560208401611c32565b80358015158114611bb157600080fd5b600060208284031215611d1357600080fd5b61101382611cf1565b600060208284031215611d2e57600080fd5b61101382611b9a565b6020808252825182820181905260009190848201906040850190845b81811015611d6f57835183529284019291840191600101611d53565b50909695505050505050565b60008060408385031215611d8e57600080fd5b611d9783611b9a565b9150611da560208401611cf1565b90509250929050565b60008060008060808587031215611dc457600080fd5b611dcd85611b9a565b9350611ddb60208601611b9a565b925060408501359150606085013567ffffffffffffffff811115611dfe57600080fd5b8501601f81018713611e0f57600080fd5b611e1e87823560208401611c32565b91505092959194509250565b60008060408385031215611e3d57600080fd5b611e4683611b9a565b9150611da560208401611b9a565b600181811c90821680611e6857607f821691505b60208210811415611e8957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415611f5557611f55611f2b565b5060010190565b60008219821115611f6f57611f6f611f2b565b500190565b6000816000190483118215151615611f8e57611f8e611f2b565b500290565b60008351611fa5818460208801611b16565b835190830190611fb9818360208801611b16565b64173539b7b760d91b9101908152600501949350505050565b600082821015611fe457611fe4611f2b565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826120605761206061203b565b500490565b6000826120745761207461203b565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ac90830184611b42565b9695505050505050565b6000602082840312156120c857600080fd5b815161101381611ae3565b634e487b7160e01b600052603160045260246000fdfea26469706673582212208b18c8501362d777e3a73c06384a339d3775639a4bd68b463e4e5a1025f6ebbd64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a506978656c4d656b617300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a506978656c4d656b6173000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000019687474703a2f2f3130342e3234382e36312e33362f6e66742f00000000000000

-----Decoded View---------------
Arg [0] : name_ (string): PixelMekas
Arg [1] : symbol_ (string): PixelMekas
Arg [2] : baseURI_ (string): http://104.248.61.36/nft/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 506978656c4d656b617300000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 506978656c4d656b617300000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [8] : 687474703a2f2f3130342e3234382e36312e33362f6e66742f00000000000000


Deployed Bytecode Sourcemap

43191:2278:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37008:224;;;;;;;;;;-1:-1:-1;37008:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37008:224:0;;;;;;;;23897:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25456:221::-;;;;;;;;;;-1:-1:-1;25456:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;25456:221:0;1528:203:1;24979:411:0;;;;;;;;;;-1:-1:-1;24979:411:0;;;;;:::i;:::-;;:::i;:::-;;37648:113;;;;;;;;;;-1:-1:-1;37736:10:0;:17;37648:113;;;2319:25:1;;;2307:2;2292:18;37648:113:0;2173:177:1;43379:25:0;;;;;;;;;;;;;;;;26346:339;;;;;;;;;;-1:-1:-1;26346:339:0;;;;;:::i;:::-;;:::i;37316:256::-;;;;;;;;;;-1:-1:-1;37316:256:0;;;;;:::i;:::-;;:::i;43411:32::-;;;;;;;;;;;;;;;;26756:185;;;;;;;;;;-1:-1:-1;26756:185:0;;;;;:::i;:::-;;:::i;37838:233::-;;;;;;;;;;-1:-1:-1;37838:233:0;;;;;:::i;:::-;;:::i;43985:96::-;;;;;;;;;;-1:-1:-1;43985:96:0;;;;;:::i;:::-;;:::i;23591:239::-;;;;;;;;;;-1:-1:-1;23591:239:0;;;;;:::i;:::-;;:::i;43486:28::-;;;;;;;;;;;;;;;;44474:83;;;;;;;;;;-1:-1:-1;44474:83:0;;;;;:::i;:::-;;:::i;43582:21::-;;;;;;;;;;;;;:::i;23321:208::-;;;;;;;;;;-1:-1:-1;23321:208:0;;;;;:::i;:::-;;:::i;2465:94::-;;;;;;;;;;;;;:::i;44565:346::-;;;;;;;;;;-1:-1:-1;44565:346:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1814:87::-;;;;;;;;;;-1:-1:-1;1887:6:0;;-1:-1:-1;;;;;1887:6:0;1814:87;;24066:104;;;;;;;;;;;;;:::i;43521:38::-;;;;;;;;;;;;;;;;44919:547;;;;;;:::i;:::-;;:::i;25749:295::-;;;;;;;;;;-1:-1:-1;25749:295:0;;;;;:::i;:::-;;:::i;27012:328::-;;;;;;;;;;-1:-1:-1;27012:328:0;;;;;:::i;:::-;;:::i;44103:365::-;;;;;;;;;;-1:-1:-1;44103:365:0;;;;;:::i;:::-;;:::i;26115:164::-;;;;;;;;;;-1:-1:-1;26115:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26236:25:0;;;26212:4;26236:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26115:164;2714:192;;;;;;;;;;-1:-1:-1;2714:192:0;;;;;:::i;:::-;;:::i;37008:224::-;37110:4;-1:-1:-1;;;;;;37134:50:0;;-1:-1:-1;;;37134:50:0;;:90;;;37188:36;37212:11;37188:23;:36::i;:::-;37127:97;37008:224;-1:-1:-1;;37008:224:0:o;23897:100::-;23951:13;23984:5;23977:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23897:100;:::o;25456:221::-;25532:7;28939:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28939:16:0;25552:73;;;;-1:-1:-1;;;25552:73:0;;6874:2:1;25552:73:0;;;6856:21:1;6913:2;6893:18;;;6886:30;6952:34;6932:18;;;6925:62;-1:-1:-1;;;7003:18:1;;;6996:42;7055:19;;25552:73:0;;;;;;;;;-1:-1:-1;25645:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25645:24:0;;25456:221::o;24979:411::-;25060:13;25076:23;25091:7;25076:14;:23::i;:::-;25060:39;;25124:5;-1:-1:-1;;;;;25118:11:0;:2;-1:-1:-1;;;;;25118:11:0;;;25110:57;;;;-1:-1:-1;;;25110:57:0;;7287:2:1;25110:57:0;;;7269:21:1;7326:2;7306:18;;;7299:30;7365:34;7345:18;;;7338:62;-1:-1:-1;;;7416:18:1;;;7409:31;7457:19;;25110:57:0;7085:397:1;25110:57:0;680:10;-1:-1:-1;;;;;25202:21:0;;;;:62;;-1:-1:-1;25227:37:0;25244:5;680:10;26115:164;:::i;25227:37::-;25180:168;;;;-1:-1:-1;;;25180:168:0;;7689:2:1;25180:168:0;;;7671:21:1;7728:2;7708:18;;;7701:30;7767:34;7747:18;;;7740:62;7838:26;7818:18;;;7811:54;7882:19;;25180:168:0;7487:420:1;25180:168:0;25361:21;25370:2;25374:7;25361:8;:21::i;:::-;25049:341;24979:411;;:::o;26346:339::-;26541:41;680:10;26574:7;26541:18;:41::i;:::-;26533:103;;;;-1:-1:-1;;;26533:103:0;;;;;;;:::i;:::-;26649:28;26659:4;26665:2;26669:7;26649:9;:28::i;37316:256::-;37413:7;37449:23;37466:5;37449:16;:23::i;:::-;37441:5;:31;37433:87;;;;-1:-1:-1;;;37433:87:0;;8532:2:1;37433:87:0;;;8514:21:1;8571:2;8551:18;;;8544:30;8610:34;8590:18;;;8583:62;-1:-1:-1;;;8661:18:1;;;8654:41;8712:19;;37433:87:0;8330:407:1;37433:87:0;-1:-1:-1;;;;;;37538:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37316:256::o;26756:185::-;26894:39;26911:4;26917:2;26921:7;26894:39;;;;;;;;;;;;:16;:39::i;37838:233::-;37913:7;37949:30;37736:10;:17;;37648:113;37949:30;37941:5;:38;37933:95;;;;-1:-1:-1;;;37933:95:0;;8944:2:1;37933:95:0;;;8926:21:1;8983:2;8963:18;;;8956:30;9022:34;9002:18;;;8995:62;-1:-1:-1;;;9073:18:1;;;9066:42;9125:19;;37933:95:0;8742:408:1;37933:95:0;38046:10;38057:5;38046:17;;;;;;;;:::i;:::-;;;;;;;;;38039:24;;37838:233;;;:::o;43985:96::-;1887:6;;-1:-1:-1;;;;;1887:6:0;680:10;2034:23;2026:68;;;;-1:-1:-1;;;2026:68:0;;;;;;;:::i;:::-;44056:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43985:96:::0;:::o;23591:239::-;23663:7;23699:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23699:16:0;23734:19;23726:73;;;;-1:-1:-1;;;23726:73:0;;9850:2:1;23726:73:0;;;9832:21:1;9889:2;9869:18;;;9862:30;9928:34;9908:18;;;9901:62;-1:-1:-1;;;9979:18:1;;;9972:39;10028:19;;23726:73:0;9648:405:1;44474:83:0;1887:6;;-1:-1:-1;;;;;1887:6:0;680:10;2034:23;2026:68;;;;-1:-1:-1;;;2026:68:0;;;;;;;:::i;:::-;44533:7:::1;:16:::0;;-1:-1:-1;;44533:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44474:83::o;43582:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23321:208::-;23393:7;-1:-1:-1;;;;;23421:19:0;;23413:74;;;;-1:-1:-1;;;23413:74:0;;10260:2:1;23413:74:0;;;10242:21:1;10299:2;10279:18;;;10272:30;10338:34;10318:18;;;10311:62;-1:-1:-1;;;10389:18:1;;;10382:40;10439:19;;23413:74:0;10058:406:1;23413:74:0;-1:-1:-1;;;;;;23505:16:0;;;;;:9;:16;;;;;;;23321:208::o;2465:94::-;1887:6;;-1:-1:-1;;;;;1887:6:0;680:10;2034:23;2026:68;;;;-1:-1:-1;;;2026:68:0;;;;;;;:::i;:::-;2530:21:::1;2548:1;2530:9;:21::i;:::-;2465:94::o:0;44565:346::-;44651:16;44685:13;44701:16;44711:5;44701:9;:16::i;:::-;44685:32;;44728:20;44765:5;44751:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44751:20:0;;44728:43;;44787:9;44782:101;44806:5;44802:1;:9;44782:101;;;44842:29;44862:5;44869:1;44842:19;:29::i;:::-;44833:3;44837:1;44833:6;;;;;;;;:::i;:::-;;;;;;;;;;:38;44813:3;;;;:::i;:::-;;;;44782:101;;;-1:-1:-1;44900:3:0;44565:346;-1:-1:-1;;;44565:346:0:o;24066:104::-;24122:13;24155:7;24148:14;;;;;:::i;44919:547::-;44983:7;;;;44975:31;;;;-1:-1:-1;;;44975:31:0;;10943:2:1;44975:31:0;;;10925:21:1;10982:2;10962:18;;;10955:30;-1:-1:-1;;;11001:18:1;;;10994:41;11052:18;;44975:31:0;10741:335:1;44975:31:0;45033:1;45025:6;:9;:31;;;;;45048:8;;45038:6;:18;;45025:31;45017:73;;;;-1:-1:-1;;;45017:73:0;;11283:2:1;45017:73:0;;;11265:21:1;11322:2;11302:18;;;11295:30;11361:31;11341:18;;;11334:59;11410:18;;45017:73:0;11081:353:1;45017:73:0;45132:10;;45122:6;45109:10;;:19;;;;:::i;:::-;:33;;45101:65;;;;-1:-1:-1;;;45101:65:0;;11774:2:1;45101:65:0;;;11756:21:1;11813:2;11793:18;;;11786:30;-1:-1:-1;;;11832:18:1;;;11825:49;11891:18;;45101:65:0;11572:343:1;45101:65:0;45207:5;;45198:14;;:6;:14;:::i;:::-;45185:9;:27;45177:72;;;;-1:-1:-1;;;45177:72:0;;12295:2:1;45177:72:0;;;12277:21:1;;;12314:18;;;12307:30;12373:34;12353:18;;;12346:62;12425:18;;45177:72:0;12093:356:1;45177:72:0;1887:6;;45260:36;;-1:-1:-1;;;;;1887:6:0;;;;45286:9;45260:36;;;;;;;;;45286:9;1887:6;45260:36;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45331:10:0;;680;;45312:40;;45331:12;;45342:1;45331:12;:::i;:::-;45312:40;;;12628:25:1;;;12684:2;12669:18;;12662:34;;;12601:18;45312:40:0;;;;;;;45367:9;45363:96;45383:6;45380:1;:9;45363:96;;;45410:37;680:10;45434;:12;;;:10;:12;;;:::i;:::-;;;;-1:-1:-1;45430:16:0;;:1;:16;:::i;:::-;45410:5;:37::i;:::-;45391:3;;;;:::i;:::-;;;;45363:96;;25749:295;-1:-1:-1;;;;;25852:24:0;;680:10;25852:24;;25844:62;;;;-1:-1:-1;;;25844:62:0;;12909:2:1;25844:62:0;;;12891:21:1;12948:2;12928:18;;;12921:30;12987:27;12967:18;;;12960:55;13032:18;;25844:62:0;12707:349:1;25844:62:0;680:10;25919:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25919:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25919:53:0;;;;;;;;;;25988:48;;540:41:1;;;25919:42:0;;680:10;25988:48;;513:18:1;25988:48:0;;;;;;;25749:295;;:::o;27012:328::-;27187:41;680:10;27220:7;27187:18;:41::i;:::-;27179:103;;;;-1:-1:-1;;;27179:103:0;;;;;;;:::i;:::-;27293:39;27307:4;27313:2;27317:7;27326:5;27293:13;:39::i;:::-;27012:328;;;;:::o;44103:365::-;28915:4;28939:16;;;:7;:16;;;;;;44176:13;;-1:-1:-1;;;;;28939:16:0;44202:77;;;;-1:-1:-1;;;44202:77:0;;13263:2:1;44202:77:0;;;13245:21:1;13302:2;13282:18;;;13275:30;13341:34;13321:18;;;13314:62;-1:-1:-1;;;13392:18:1;;;13385:46;13448:19;;44202:77:0;13061:412:1;44202:77:0;44292:22;44317:10;:8;:10::i;:::-;44292:35;;44370:1;44351:8;44345:22;:26;:115;;;;;;;;;;;;;;;-1:-1:-1;;;44345:115:0;;;;;;44411:8;44421:18;:7;:16;:18::i;:::-;44394:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44345:115;44338:122;44103:365;-1:-1:-1;;;44103:365:0:o;2714:192::-;1887:6;;-1:-1:-1;;;;;1887:6:0;680:10;2034:23;2026:68;;;;-1:-1:-1;;;2026:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2803:22:0;::::1;2795:73;;;::::0;-1:-1:-1;;;2795:73:0;;14322:2:1;2795:73:0::1;::::0;::::1;14304:21:1::0;14361:2;14341:18;;;14334:30;14400:34;14380:18;;;14373:62;-1:-1:-1;;;14451:18:1;;;14444:36;14497:19;;2795:73:0::1;14120:402:1::0;2795:73:0::1;2879:19;2889:8;2879:9;:19::i;:::-;2714:192:::0;:::o;22952:305::-;23054:4;-1:-1:-1;;;;;;23091:40:0;;-1:-1:-1;;;23091:40:0;;:105;;-1:-1:-1;;;;;;;23148:48:0;;-1:-1:-1;;;23148:48:0;23091:105;:158;;;-1:-1:-1;;;;;;;;;;21559:40:0;;;23213:36;21450:157;32832:174;32907:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32907:29:0;-1:-1:-1;;;;;32907:29:0;;;;;;;;:24;;32961:23;32907:24;32961:14;:23::i;:::-;-1:-1:-1;;;;;32952:46:0;;;;;;;;;;;32832:174;;:::o;29144:348::-;29237:4;28939:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28939:16:0;29254:73;;;;-1:-1:-1;;;29254:73:0;;14729:2:1;29254:73:0;;;14711:21:1;14768:2;14748:18;;;14741:30;14807:34;14787:18;;;14780:62;-1:-1:-1;;;14858:18:1;;;14851:42;14910:19;;29254:73:0;14527:408:1;29254:73:0;29338:13;29354:23;29369:7;29354:14;:23::i;:::-;29338:39;;29407:5;-1:-1:-1;;;;;29396:16:0;:7;-1:-1:-1;;;;;29396:16:0;;:51;;;;29440:7;-1:-1:-1;;;;;29416:31:0;:20;29428:7;29416:11;:20::i;:::-;-1:-1:-1;;;;;29416:31:0;;29396:51;:87;;;-1:-1:-1;;;;;;26236:25:0;;;26212:4;26236:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29451:32;29388:96;29144:348;-1:-1:-1;;;;29144:348:0:o;32136:578::-;32295:4;-1:-1:-1;;;;;32268:31:0;:23;32283:7;32268:14;:23::i;:::-;-1:-1:-1;;;;;32268:31:0;;32260:85;;;;-1:-1:-1;;;32260:85:0;;15142:2:1;32260:85:0;;;15124:21:1;15181:2;15161:18;;;15154:30;15220:34;15200:18;;;15193:62;-1:-1:-1;;;15271:18:1;;;15264:39;15320:19;;32260:85:0;14940:405:1;32260:85:0;-1:-1:-1;;;;;32364:16:0;;32356:65;;;;-1:-1:-1;;;32356:65:0;;15552:2:1;32356:65:0;;;15534:21:1;15591:2;15571:18;;;15564:30;15630:34;15610:18;;;15603:62;-1:-1:-1;;;15681:18:1;;;15674:34;15725:19;;32356:65:0;15350:400:1;32356:65:0;32434:39;32455:4;32461:2;32465:7;32434:20;:39::i;:::-;32538:29;32555:1;32559:7;32538:8;:29::i;:::-;-1:-1:-1;;;;;32580:15:0;;;;;;:9;:15;;;;;:20;;32599:1;;32580:15;:20;;32599:1;;32580:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32611:13:0;;;;;;:9;:13;;;;;:18;;32628:1;;32611:13;:18;;32628:1;;32611:18;:::i;:::-;;;;-1:-1:-1;;32640:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32640:21:0;-1:-1:-1;;;;;32640:21:0;;;;;;;;;32679:27;;32640:16;;32679:27;;;;;;;32136:578;;;:::o;2914:173::-;2989:6;;;-1:-1:-1;;;;;3006:17:0;;;-1:-1:-1;;;;;;3006:17:0;;;;;;;3039:40;;2989:6;;;3006:17;2989:6;;3039:40;;2970:16;;3039:40;2959:128;2914:173;:::o;30828:382::-;-1:-1:-1;;;;;30908:16:0;;30900:61;;;;-1:-1:-1;;;30900:61:0;;16087:2:1;30900:61:0;;;16069:21:1;;;16106:18;;;16099:30;16165:34;16145:18;;;16138:62;16217:18;;30900:61:0;15885:356:1;30900:61:0;28915:4;28939:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28939:16:0;:30;30972:58;;;;-1:-1:-1;;;30972:58:0;;16448:2:1;30972:58:0;;;16430:21:1;16487:2;16467:18;;;16460:30;16526;16506:18;;;16499:58;16574:18;;30972:58:0;16246:352:1;30972:58:0;31043:45;31072:1;31076:2;31080:7;31043:20;:45::i;:::-;-1:-1:-1;;;;;31101:13:0;;;;;;:9;:13;;;;;:18;;31118:1;;31101:13;:18;;31118:1;;31101:18;:::i;:::-;;;;-1:-1:-1;;31130:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31130:21:0;-1:-1:-1;;;;;31130:21:0;;;;;;;;31169:33;;31130:16;;;31169:33;;31130:16;;31169:33;30828:382;;:::o;28222:315::-;28379:28;28389:4;28395:2;28399:7;28379:9;:28::i;:::-;28426:48;28449:4;28455:2;28459:7;28468:5;28426:22;:48::i;:::-;28418:111;;;;-1:-1:-1;;;28418:111:0;;;;;;;:::i;43872:107::-;43932:13;43964:7;43957:14;;;;;:::i;18887:723::-;18943:13;19164:10;19160:53;;-1:-1:-1;;19191:10:0;;;;;;;;;;;;-1:-1:-1;;;19191:10:0;;;;;18887:723::o;19160:53::-;19238:5;19223:12;19279:78;19286:9;;19279:78;;19312:8;;;;:::i;:::-;;-1:-1:-1;19335:10:0;;-1:-1:-1;19343:2:0;19335:10;;:::i;:::-;;;19279:78;;;19367:19;19399:6;19389:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19389:17:0;;19367:39;;19417:154;19424:10;;19417:154;;19451:11;19461:1;19451:11;;:::i;:::-;;-1:-1:-1;19520:10:0;19528:2;19520:5;:10;:::i;:::-;19507:24;;:2;:24;:::i;:::-;19494:39;;19477:6;19484;19477:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19477:56:0;;;;;;;;-1:-1:-1;19548:11:0;19557:2;19548:11;;:::i;:::-;;;19417:154;;38684:589;-1:-1:-1;;;;;38890:18:0;;38886:187;;38925:40;38957:7;40100:10;:17;;40073:24;;;;:15;:24;;;;;:44;;;40128:24;;;;;;;;;;;;39996:164;38925:40;38886:187;;;38995:2;-1:-1:-1;;;;;38987:10:0;:4;-1:-1:-1;;;;;38987:10:0;;38983:90;;39014:47;39047:4;39053:7;39014:32;:47::i;:::-;-1:-1:-1;;;;;39087:16:0;;39083:183;;39120:45;39157:7;39120:36;:45::i;39083:183::-;39193:4;-1:-1:-1;;;;;39187:10:0;:2;-1:-1:-1;;;;;39187:10:0;;39183:83;;39214:40;39242:2;39246:7;39214:27;:40::i;33571:799::-;33726:4;-1:-1:-1;;;;;33747:13:0;;11560:20;11608:8;33743:620;;33783:72;;-1:-1:-1;;;33783:72:0;;-1:-1:-1;;;;;33783:36:0;;;;;:72;;680:10;;33834:4;;33840:7;;33849:5;;33783:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33783:72:0;;;;;;;;-1:-1:-1;;33783:72:0;;;;;;;;;;;;:::i;:::-;;;33779:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34025:13:0;;34021:272;;34068:60;;-1:-1:-1;;;34068:60:0;;;;;;;:::i;34021:272::-;34243:6;34237:13;34228:6;34224:2;34220:15;34213:38;33779:529;-1:-1:-1;;;;;;33906:51:0;-1:-1:-1;;;33906:51:0;;-1:-1:-1;33899:58:0;;33743:620;-1:-1:-1;34347:4:0;33571:799;;;;;;:::o;40787:988::-;41053:22;41103:1;41078:22;41095:4;41078:16;:22::i;:::-;:26;;;;:::i;:::-;41115:18;41136:26;;;:17;:26;;;;;;41053:51;;-1:-1:-1;41269:28:0;;;41265:328;;-1:-1:-1;;;;;41336:18:0;;41314:19;41336:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41387:30;;;;;;:44;;;41504:30;;:17;:30;;;;;:43;;;41265:328;-1:-1:-1;41689:26:0;;;;:17;:26;;;;;;;;41682:33;;;-1:-1:-1;;;;;41733:18:0;;;;;:12;:18;;;;;:34;;;;;;;41726:41;40787:988::o;42070:1079::-;42348:10;:17;42323:22;;42348:21;;42368:1;;42348:21;:::i;:::-;42380:18;42401:24;;;:15;:24;;;;;;42774:10;:26;;42323:46;;-1:-1:-1;42401:24:0;;42323:46;;42774:26;;;;;;:::i;:::-;;;;;;;;;42752:48;;42838:11;42813:10;42824;42813:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42918:28;;;:15;:28;;;;;;;:41;;;43090:24;;;;;43083:31;43125:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42141:1008;;;42070:1079;:::o;39574:221::-;39659:14;39676:20;39693:2;39676:16;:20::i;:::-;-1:-1:-1;;;;;39707:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39752:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39574:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:160::-;3978:20;;4034:13;;4027:21;4017:32;;4007:60;;4063:1;4060;4053:12;4078:180;4134:6;4187:2;4175:9;4166:7;4162:23;4158:32;4155:52;;;4203:1;4200;4193:12;4155:52;4226:26;4242:9;4226:26;:::i;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:632::-;4625:2;4677:21;;;4747:13;;4650:18;;;4769:22;;;4596:4;;4625:2;4848:15;;;;4822:2;4807:18;;;4596:4;4891:169;4905:6;4902:1;4899:13;4891:169;;;4966:13;;4954:26;;5035:15;;;;5000:12;;;;4927:1;4920:9;4891:169;;;-1:-1:-1;5077:3:1;;4454:632;-1:-1:-1;;;;;;4454:632:1:o;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:380::-;6366:1;6362:12;;;;6409;;;6430:61;;6484:4;6476:6;6472:17;6462:27;;6430:61;6537:2;6529:6;6526:14;6506:18;6503:38;6500:161;;;6583:10;6578:3;6574:20;6571:1;6564:31;6618:4;6615:1;6608:15;6646:4;6643:1;6636:15;6500:161;;6287:380;;;:::o;7912:413::-;8114:2;8096:21;;;8153:2;8133:18;;;8126:30;8192:34;8187:2;8172:18;;8165:62;-1:-1:-1;;;8258:2:1;8243:18;;8236:47;8315:3;8300:19;;7912:413::o;9155:127::-;9216:10;9211:3;9207:20;9204:1;9197:31;9247:4;9244:1;9237:15;9271:4;9268:1;9261:15;9287:356;9489:2;9471:21;;;9508:18;;;9501:30;9567:34;9562:2;9547:18;;9540:62;9634:2;9619:18;;9287:356::o;10469:127::-;10530:10;10525:3;10521:20;10518:1;10511:31;10561:4;10558:1;10551:15;10585:4;10582:1;10575:15;10601:135;10640:3;-1:-1:-1;;10661:17:1;;10658:43;;;10681:18;;:::i;:::-;-1:-1:-1;10728:1:1;10717:13;;10601:135::o;11439:128::-;11479:3;11510:1;11506:6;11503:1;11500:13;11497:39;;;11516:18;;:::i;:::-;-1:-1:-1;11552:9:1;;11439:128::o;11920:168::-;11960:7;12026:1;12022;12018:6;12014:14;12011:1;12008:21;12003:1;11996:9;11989:17;11985:45;11982:71;;;12033:18;;:::i;:::-;-1:-1:-1;12073:9:1;;11920:168::o;13478:637::-;13758:3;13796:6;13790:13;13812:53;13858:6;13853:3;13846:4;13838:6;13834:17;13812:53;:::i;:::-;13928:13;;13887:16;;;;13950:57;13928:13;13887:16;13984:4;13972:17;;13950:57;:::i;:::-;-1:-1:-1;;;14029:20:1;;14058:22;;;14107:1;14096:13;;13478:637;-1:-1:-1;;;;13478:637:1:o;15755:125::-;15795:4;15823:1;15820;15817:8;15814:34;;;15828:18;;:::i;:::-;-1:-1:-1;15865:9:1;;15755:125::o;16603:414::-;16805:2;16787:21;;;16844:2;16824:18;;;16817:30;16883:34;16878:2;16863:18;;16856:62;-1:-1:-1;;;16949:2:1;16934:18;;16927:48;17007:3;16992:19;;16603:414::o;17022:127::-;17083:10;17078:3;17074:20;17071:1;17064:31;17114:4;17111:1;17104:15;17138:4;17135:1;17128:15;17154:120;17194:1;17220;17210:35;;17225:18;;:::i;:::-;-1:-1:-1;17259:9:1;;17154:120::o;17279:112::-;17311:1;17337;17327:35;;17342:18;;:::i;:::-;-1:-1:-1;17376:9:1;;17279:112::o;17396:489::-;-1:-1:-1;;;;;17665:15:1;;;17647:34;;17717:15;;17712:2;17697:18;;17690:43;17764:2;17749:18;;17742:34;;;17812:3;17807:2;17792:18;;17785:31;;;17590:4;;17833:46;;17859:19;;17851:6;17833:46;:::i;:::-;17825:54;17396:489;-1:-1:-1;;;;;;17396:489:1:o;17890:249::-;17959:6;18012:2;18000:9;17991:7;17987:23;17983:32;17980:52;;;18028:1;18025;18018:12;17980:52;18060:9;18054:16;18079:30;18103:5;18079:30;:::i;18144:127::-;18205:10;18200:3;18196:20;18193:1;18186:31;18236:4;18233:1;18226:15;18260:4;18257:1;18250:15

Swarm Source

ipfs://8b18c8501362d777e3a73c06384a339d3775639a4bd68b463e4e5a1025f6ebbd
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.