ETH Price: $2,693.32 (+2.40%)
Gas: 1 Gwei

Token

Arteon Graphics Card: ARTX 1000 (ARTX 1000)
 

Overview

Max Total Supply

400 ARTX 1000

Holders

16

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vabbledao.eth
Balance
1 ARTX 1000
0x0cb005ab128702ed62a2f93844edf41f3864da45
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:
ArteonGPU

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-28
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

pragma solidity ^0.8.0;


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

pragma solidity ^0.8.0;

/**
 * @dev 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}. 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts\ArteonGPU.sol

pragma solidity ^0.8.0;

contract ArteonGPU is ERC721, Ownable {
  using Counters for Counters.Counter;
  Counters.Counter private _tokenIds;

  string private _tokenURI;
  uint256 private _cap;

  constructor() ERC721('Arteon Graphics Card: ARTX 1000', 'ARTX 1000') {
    _tokenURI = 'https://nft.arteon.org/json/artx1000.json';
    _cap = 400;
  }

  function supplyCap() public view virtual returns (uint256) {
    return _cap;
  }

  function totalSupply() public view virtual returns (uint256) {
    return _tokenIds.current();
  }

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

  function addCard(address to) public onlyOwner returns (uint256) {
    _tokenIds.increment();

    uint256 _tokenId = _tokenIds.current();
    require(_tokenId <= _cap, 'SUPPLY_CAP_EXCEEDED');
    _mint(to, _tokenId);

    return _tokenId;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"addCard","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"supplyCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601f81527f417274656f6e20477261706869637320436172643a204152545820313030300060208083019182528351808501909452600984526804152545820313030360bc1b908401528151919291620000789160009162000132565b5080516200008e90600190602084019062000132565b5050506000620000a36200012e60201b60201c565b600680546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506040518060600160405280602981526020016200182c602991398051620001219160089160209091019062000132565b5061019060095562000215565b3390565b8280546200014090620001d8565b90600052602060002090601f016020900481019282620001645760008555620001af565b82601f106200017f57805160ff1916838001178555620001af565b82800160010185558215620001af579182015b82811115620001af57825182559160200191906001019062000192565b50620001bd929150620001c1565b5090565b5b80821115620001bd5760008155600101620001c2565b600281046001821680620001ed57607f821691505b602082108114156200020f57634e487b7160e01b600052602260045260246000fd5b50919050565b61160780620002256000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a22cb46511610071578063a22cb4651461022d578063b88d4fde14610240578063c87b56dd14610253578063e985e9c514610266578063f2fde38b1461027957610121565b806370a08231146101fa578063715018a61461020d5780638da5cb5b146102155780638f770ad01461021d57806395d89b411461022557610121565b806318160ddd116100f457806318160ddd1461019957806323b872dd146101ae5780633dc50952146101c157806342842e0e146101d45780636352211e146101e757610121565b806301ffc9a71461012657806306fdde031461014f578063081812fc14610164578063095ea7b314610184575b600080fd5b610139610134366004610f7c565b61028c565b6040516101469190611068565b60405180910390f35b6101576102d4565b6040516101469190611073565b610177610172366004610fb4565b610366565b6040516101469190611017565b610197610192366004610f53565b6103b2565b005b6101a161044a565b6040516101469190611519565b6101976101bc366004610e12565b61045b565b6101a16101cf366004610dbf565b610493565b6101976101e2366004610e12565b610518565b6101776101f5366004610fb4565b610533565b6101a1610208366004610dbf565b610568565b6101976105ac565b610177610635565b6101a1610644565b61015761064a565b61019761023b366004610f19565b610659565b61019761024e366004610e4d565b610727565b610157610261366004610fb4565b610766565b610139610274366004610de0565b61081f565b610197610287366004610dbf565b61084d565b60006001600160e01b031982166380ac58cd60e01b14806102bd57506001600160e01b03198216635b5e139f60e01b145b806102cc57506102cc8261090e565b90505b919050565b6060600080546102e390611551565b80601f016020809104026020016040519081016040528092919081815260200182805461030f90611551565b801561035c5780601f106103315761010080835404028352916020019161035c565b820191906000526020600020905b81548152906001019060200180831161033f57829003601f168201915b5050505050905090565b600061037182610927565b6103965760405162461bcd60e51b815260040161038d90611341565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006103bd82610533565b9050806001600160a01b0316836001600160a01b031614156103f15760405162461bcd60e51b815260040161038d90611487565b806001600160a01b0316610403610944565b6001600160a01b0316148061041f575061041f81610274610944565b61043b5760405162461bcd60e51b815260040161038d9061121c565b6104458383610948565b505050565b600061045660076109b6565b905090565b61046c610466610944565b826109ba565b6104885760405162461bcd60e51b815260040161038d906114c8565b610445838383610a3f565b600061049d610944565b6001600160a01b03166104ae610635565b6001600160a01b0316146104d45760405162461bcd60e51b815260040161038d9061138d565b6104de6007610b6c565b60006104ea60076109b6565b905060095481111561050e5760405162461bcd60e51b815260040161038d9061140b565b6102cc8382610b75565b61044583838360405180602001604052806000815250610727565b6000818152600260205260408120546001600160a01b0316806102cc5760405162461bcd60e51b815260040161038d906112c3565b60006001600160a01b0382166105905760405162461bcd60e51b815260040161038d90611279565b506001600160a01b031660009081526003602052604090205490565b6105b4610944565b6001600160a01b03166105c5610635565b6001600160a01b0316146105eb5760405162461bcd60e51b815260040161038d9061138d565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b031690565b60095490565b6060600180546102e390611551565b610661610944565b6001600160a01b0316826001600160a01b031614156106925760405162461bcd60e51b815260040161038d90611199565b806005600061069f610944565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556106e3610944565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161071b9190611068565b60405180910390a35050565b610738610732610944565b836109ba565b6107545760405162461bcd60e51b815260040161038d906114c8565b61076084848484610c54565b50505050565b606061077182610927565b61078d5760405162461bcd60e51b815260040161038d90611438565b6008805461079a90611551565b80601f01602080910402602001604051908101604052809291908181526020018280546107c690611551565b80156108135780601f106107e857610100808354040283529160200191610813565b820191906000526020600020905b8154815290600101906020018083116107f657829003601f168201915b50505050509050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610855610944565b6001600160a01b0316610866610635565b6001600160a01b03161461088c5760405162461bcd60e51b815260040161038d9061138d565b6001600160a01b0381166108b25760405162461bcd60e51b815260040161038d906110d8565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061097d82610533565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b60006109c582610927565b6109e15760405162461bcd60e51b815260040161038d906111d0565b60006109ec83610533565b9050806001600160a01b0316846001600160a01b03161480610a275750836001600160a01b0316610a1c84610366565b6001600160a01b0316145b80610a375750610a37818561081f565b949350505050565b826001600160a01b0316610a5282610533565b6001600160a01b031614610a785760405162461bcd60e51b815260040161038d906113c2565b6001600160a01b038216610a9e5760405162461bcd60e51b815260040161038d90611155565b610aa9838383610445565b610ab4600082610948565b6001600160a01b0383166000908152600360205260408120805460019290610add90849061153a565b90915550506001600160a01b0382166000908152600360205260408120805460019290610b0b908490611522565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b80546001019055565b6001600160a01b038216610b9b5760405162461bcd60e51b815260040161038d9061130c565b610ba481610927565b15610bc15760405162461bcd60e51b815260040161038d9061111e565b610bcd60008383610445565b6001600160a01b0382166000908152600360205260408120805460019290610bf6908490611522565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b610c5f848484610a3f565b610c6b84848484610c87565b6107605760405162461bcd60e51b815260040161038d90611086565b6000610c9b846001600160a01b0316610da2565b15610d9757836001600160a01b031663150b7a02610cb7610944565b8786866040518563ffffffff1660e01b8152600401610cd9949392919061102b565b602060405180830381600087803b158015610cf357600080fd5b505af1925050508015610d23575060408051601f3d908101601f19168201909252610d2091810190610f98565b60015b610d7d573d808015610d51576040519150601f19603f3d011682016040523d82523d6000602084013e610d56565b606091505b508051610d755760405162461bcd60e51b815260040161038d90611086565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a37565b506001949350505050565b3b151590565b80356001600160a01b03811681146102cf57600080fd5b600060208284031215610dd0578081fd5b610dd982610da8565b9392505050565b60008060408385031215610df2578081fd5b610dfb83610da8565b9150610e0960208401610da8565b90509250929050565b600080600060608486031215610e26578081fd5b610e2f84610da8565b9250610e3d60208501610da8565b9150604084013590509250925092565b60008060008060808587031215610e62578081fd5b610e6b85610da8565b93506020610e7a818701610da8565b935060408601359250606086013567ffffffffffffffff80821115610e9d578384fd5b818801915088601f830112610eb0578384fd5b813581811115610ec257610ec26115a2565b604051601f8201601f1916810185018381118282101715610ee557610ee56115a2565b60405281815283820185018b1015610efb578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215610f2b578182fd5b610f3483610da8565b915060208301358015158114610f48578182fd5b809150509250929050565b60008060408385031215610f65578182fd5b610f6e83610da8565b946020939093013593505050565b600060208284031215610f8d578081fd5b8135610dd9816115b8565b600060208284031215610fa9578081fd5b8151610dd9816115b8565b600060208284031215610fc5578081fd5b5035919050565b60008151808452815b81811015610ff157602081850181015186830182015201610fd5565b818111156110025782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061105e90830184610fcc565b9695505050505050565b901515815260200190565b600060208252610dd96020830184610fcc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526013908201527214d55414131657d0d05417d15610d151511151606a1b604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b600082198211156115355761153561158c565b500190565b60008282101561154c5761154c61158c565b500390565b60028104600182168061156557607f821691505b6020821081141561158657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115ce57600080fd5b5056fea26469706673582212201c198475faf7f65a4446381e42da72d0105ec83ab7cfc28798123f4a50ab4dbb64736f6c6343000800003368747470733a2f2f6e66742e617274656f6e2e6f72672f6a736f6e2f61727478313030302e6a736f6e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a22cb46511610071578063a22cb4651461022d578063b88d4fde14610240578063c87b56dd14610253578063e985e9c514610266578063f2fde38b1461027957610121565b806370a08231146101fa578063715018a61461020d5780638da5cb5b146102155780638f770ad01461021d57806395d89b411461022557610121565b806318160ddd116100f457806318160ddd1461019957806323b872dd146101ae5780633dc50952146101c157806342842e0e146101d45780636352211e146101e757610121565b806301ffc9a71461012657806306fdde031461014f578063081812fc14610164578063095ea7b314610184575b600080fd5b610139610134366004610f7c565b61028c565b6040516101469190611068565b60405180910390f35b6101576102d4565b6040516101469190611073565b610177610172366004610fb4565b610366565b6040516101469190611017565b610197610192366004610f53565b6103b2565b005b6101a161044a565b6040516101469190611519565b6101976101bc366004610e12565b61045b565b6101a16101cf366004610dbf565b610493565b6101976101e2366004610e12565b610518565b6101776101f5366004610fb4565b610533565b6101a1610208366004610dbf565b610568565b6101976105ac565b610177610635565b6101a1610644565b61015761064a565b61019761023b366004610f19565b610659565b61019761024e366004610e4d565b610727565b610157610261366004610fb4565b610766565b610139610274366004610de0565b61081f565b610197610287366004610dbf565b61084d565b60006001600160e01b031982166380ac58cd60e01b14806102bd57506001600160e01b03198216635b5e139f60e01b145b806102cc57506102cc8261090e565b90505b919050565b6060600080546102e390611551565b80601f016020809104026020016040519081016040528092919081815260200182805461030f90611551565b801561035c5780601f106103315761010080835404028352916020019161035c565b820191906000526020600020905b81548152906001019060200180831161033f57829003601f168201915b5050505050905090565b600061037182610927565b6103965760405162461bcd60e51b815260040161038d90611341565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006103bd82610533565b9050806001600160a01b0316836001600160a01b031614156103f15760405162461bcd60e51b815260040161038d90611487565b806001600160a01b0316610403610944565b6001600160a01b0316148061041f575061041f81610274610944565b61043b5760405162461bcd60e51b815260040161038d9061121c565b6104458383610948565b505050565b600061045660076109b6565b905090565b61046c610466610944565b826109ba565b6104885760405162461bcd60e51b815260040161038d906114c8565b610445838383610a3f565b600061049d610944565b6001600160a01b03166104ae610635565b6001600160a01b0316146104d45760405162461bcd60e51b815260040161038d9061138d565b6104de6007610b6c565b60006104ea60076109b6565b905060095481111561050e5760405162461bcd60e51b815260040161038d9061140b565b6102cc8382610b75565b61044583838360405180602001604052806000815250610727565b6000818152600260205260408120546001600160a01b0316806102cc5760405162461bcd60e51b815260040161038d906112c3565b60006001600160a01b0382166105905760405162461bcd60e51b815260040161038d90611279565b506001600160a01b031660009081526003602052604090205490565b6105b4610944565b6001600160a01b03166105c5610635565b6001600160a01b0316146105eb5760405162461bcd60e51b815260040161038d9061138d565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b031690565b60095490565b6060600180546102e390611551565b610661610944565b6001600160a01b0316826001600160a01b031614156106925760405162461bcd60e51b815260040161038d90611199565b806005600061069f610944565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556106e3610944565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161071b9190611068565b60405180910390a35050565b610738610732610944565b836109ba565b6107545760405162461bcd60e51b815260040161038d906114c8565b61076084848484610c54565b50505050565b606061077182610927565b61078d5760405162461bcd60e51b815260040161038d90611438565b6008805461079a90611551565b80601f01602080910402602001604051908101604052809291908181526020018280546107c690611551565b80156108135780601f106107e857610100808354040283529160200191610813565b820191906000526020600020905b8154815290600101906020018083116107f657829003601f168201915b50505050509050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610855610944565b6001600160a01b0316610866610635565b6001600160a01b03161461088c5760405162461bcd60e51b815260040161038d9061138d565b6001600160a01b0381166108b25760405162461bcd60e51b815260040161038d906110d8565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061097d82610533565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b60006109c582610927565b6109e15760405162461bcd60e51b815260040161038d906111d0565b60006109ec83610533565b9050806001600160a01b0316846001600160a01b03161480610a275750836001600160a01b0316610a1c84610366565b6001600160a01b0316145b80610a375750610a37818561081f565b949350505050565b826001600160a01b0316610a5282610533565b6001600160a01b031614610a785760405162461bcd60e51b815260040161038d906113c2565b6001600160a01b038216610a9e5760405162461bcd60e51b815260040161038d90611155565b610aa9838383610445565b610ab4600082610948565b6001600160a01b0383166000908152600360205260408120805460019290610add90849061153a565b90915550506001600160a01b0382166000908152600360205260408120805460019290610b0b908490611522565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b80546001019055565b6001600160a01b038216610b9b5760405162461bcd60e51b815260040161038d9061130c565b610ba481610927565b15610bc15760405162461bcd60e51b815260040161038d9061111e565b610bcd60008383610445565b6001600160a01b0382166000908152600360205260408120805460019290610bf6908490611522565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b610c5f848484610a3f565b610c6b84848484610c87565b6107605760405162461bcd60e51b815260040161038d90611086565b6000610c9b846001600160a01b0316610da2565b15610d9757836001600160a01b031663150b7a02610cb7610944565b8786866040518563ffffffff1660e01b8152600401610cd9949392919061102b565b602060405180830381600087803b158015610cf357600080fd5b505af1925050508015610d23575060408051601f3d908101601f19168201909252610d2091810190610f98565b60015b610d7d573d808015610d51576040519150601f19603f3d011682016040523d82523d6000602084013e610d56565b606091505b508051610d755760405162461bcd60e51b815260040161038d90611086565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a37565b506001949350505050565b3b151590565b80356001600160a01b03811681146102cf57600080fd5b600060208284031215610dd0578081fd5b610dd982610da8565b9392505050565b60008060408385031215610df2578081fd5b610dfb83610da8565b9150610e0960208401610da8565b90509250929050565b600080600060608486031215610e26578081fd5b610e2f84610da8565b9250610e3d60208501610da8565b9150604084013590509250925092565b60008060008060808587031215610e62578081fd5b610e6b85610da8565b93506020610e7a818701610da8565b935060408601359250606086013567ffffffffffffffff80821115610e9d578384fd5b818801915088601f830112610eb0578384fd5b813581811115610ec257610ec26115a2565b604051601f8201601f1916810185018381118282101715610ee557610ee56115a2565b60405281815283820185018b1015610efb578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215610f2b578182fd5b610f3483610da8565b915060208301358015158114610f48578182fd5b809150509250929050565b60008060408385031215610f65578182fd5b610f6e83610da8565b946020939093013593505050565b600060208284031215610f8d578081fd5b8135610dd9816115b8565b600060208284031215610fa9578081fd5b8151610dd9816115b8565b600060208284031215610fc5578081fd5b5035919050565b60008151808452815b81811015610ff157602081850181015186830182015201610fd5565b818111156110025782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061105e90830184610fcc565b9695505050505050565b901515815260200190565b600060208252610dd96020830184610fcc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526013908201527214d55414131657d0d05417d15610d151511151606a1b604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b600082198211156115355761153561158c565b500190565b60008282101561154c5761154c61158c565b500390565b60028104600182168061156557607f821691505b6020821081141561158657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115ce57600080fd5b5056fea26469706673582212201c198475faf7f65a4446381e42da72d0105ec83ab7cfc28798123f4a50ab4dbb64736f6c63430008000033

Deployed Bytecode Sourcemap

35348:994:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19984:292;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20916:100;;;:::i;:::-;;;;;;;:::i;22376:221::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21913:397::-;;;;;;:::i;:::-;;:::i;:::-;;35777:100;;;:::i;:::-;;;;;;;:::i;23266:305::-;;;;;;:::i;:::-;;:::i;36089:250::-;;;;;;:::i;:::-;;:::i;23642:151::-;;;;;;:::i;:::-;;:::i;20610:239::-;;;;;;:::i;:::-;;:::i;20340:208::-;;;;;;:::i;:::-;;:::i;34731:148::-;;;:::i;34080:87::-;;;:::i;35688:83::-;;;:::i;21085:104::-;;;:::i;22669:295::-;;;;;;:::i;:::-;;:::i;23864:285::-;;;;;;:::i;:::-;;:::i;35883:200::-;;;;;;:::i;:::-;;:::i;23035:164::-;;;;;;:::i;:::-;;:::i;35034:244::-;;;;;;:::i;:::-;;:::i;19984:292::-;20086:4;-1:-1:-1;;;;;;20110:40:0;;-1:-1:-1;;;20110:40:0;;:105;;-1:-1:-1;;;;;;;20167:48:0;;-1:-1:-1;;;20167:48:0;20110:105;:158;;;;20232:36;20256:11;20232:23;:36::i;:::-;20103:165;;19984:292;;;;:::o;20916:100::-;20970:13;21003:5;20996:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20916:100;:::o;22376:221::-;22452:7;22480:16;22488:7;22480;:16::i;:::-;22472:73;;;;-1:-1:-1;;;22472:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;22565:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22565:24:0;;22376:221::o;21913:397::-;21994:13;22010:23;22025:7;22010:14;:23::i;:::-;21994:39;;22058:5;-1:-1:-1;;;;;22052:11:0;:2;-1:-1:-1;;;;;22052:11:0;;;22044:57;;;;-1:-1:-1;;;22044:57:0;;;;;;;:::i;:::-;22138:5;-1:-1:-1;;;;;22122:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22122:21:0;;:62;;;;22147:37;22164:5;22171:12;:10;:12::i;22147:37::-;22114:154;;;;-1:-1:-1;;;22114:154:0;;;;;;;:::i;:::-;22281:21;22290:2;22294:7;22281:8;:21::i;:::-;21913:397;;;:::o;35777:100::-;35829:7;35852:19;:9;:17;:19::i;:::-;35845:26;;35777:100;:::o;23266:305::-;23427:41;23446:12;:10;:12::i;:::-;23460:7;23427:18;:41::i;:::-;23419:103;;;;-1:-1:-1;;;23419:103:0;;;;;;;:::i;:::-;23535:28;23545:4;23551:2;23555:7;23535:9;:28::i;36089:250::-;36144:7;34311:12;:10;:12::i;:::-;-1:-1:-1;;;;;34300:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34300:23:0;;34292:68;;;;-1:-1:-1;;;34292:68:0;;;;;;;:::i;:::-;36160:21:::1;:9;:19;:21::i;:::-;36190:16;36209:19;:9;:17;:19::i;:::-;36190:38;;36255:4;;36243:8;:16;;36235:48;;;;-1:-1:-1::0;;;36235:48:0::1;;;;;;;:::i;:::-;36290:19;36296:2;36300:8;36290:5;:19::i;23642:151::-:0;23746:39;23763:4;23769:2;23773:7;23746:39;;;;;;;;;;;;:16;:39::i;20610:239::-;20682:7;20718:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20718:16:0;20753:19;20745:73;;;;-1:-1:-1;;;20745:73:0;;;;;;;:::i;20340:208::-;20412:7;-1:-1:-1;;;;;20440:19:0;;20432:74;;;;-1:-1:-1;;;20432:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;20524:16:0;;;;;:9;:16;;;;;;;20340:208::o;34731:148::-;34311:12;:10;:12::i;:::-;-1:-1:-1;;;;;34300:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34300:23:0;;34292:68;;;;-1:-1:-1;;;34292:68:0;;;;;;;:::i;:::-;34822:6:::1;::::0;34801:40:::1;::::0;34838:1:::1;::::0;-1:-1:-1;;;;;34822:6:0::1;::::0;34801:40:::1;::::0;34838:1;;34801:40:::1;34852:6;:19:::0;;-1:-1:-1;;;;;;34852:19:0::1;::::0;;34731:148::o;34080:87::-;34153:6;;-1:-1:-1;;;;;34153:6:0;34080:87;:::o;35688:83::-;35761:4;;35688:83;:::o;21085:104::-;21141:13;21174:7;21167:14;;;;;:::i;22669:295::-;22784:12;:10;:12::i;:::-;-1:-1:-1;;;;;22772:24:0;:8;-1:-1:-1;;;;;22772:24:0;;;22764:62;;;;-1:-1:-1;;;22764:62:0;;;;;;;:::i;:::-;22884:8;22839:18;:32;22858:12;:10;:12::i;:::-;-1:-1:-1;;;;;22839:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;22839:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;22839:53:0;;;;;;;;;;;22923:12;:10;:12::i;:::-;-1:-1:-1;;;;;22908:48:0;;22947:8;22908:48;;;;;;:::i;:::-;;;;;;;;22669:295;;:::o;23864:285::-;23996:41;24015:12;:10;:12::i;:::-;24029:7;23996:18;:41::i;:::-;23988:103;;;;-1:-1:-1;;;23988:103:0;;;;;;;:::i;:::-;24102:39;24116:4;24122:2;24126:7;24135:5;24102:13;:39::i;:::-;23864:285;;;;:::o;35883:200::-;35956:13;35986:16;35994:7;35986;:16::i;:::-;35978:76;;;;-1:-1:-1;;;35978:76:0;;;;;;;:::i;:::-;36068:9;36061:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35883:200;;;:::o;23035:164::-;-1:-1:-1;;;;;23156:25:0;;;23132:4;23156:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23035:164::o;35034:244::-;34311:12;:10;:12::i;:::-;-1:-1:-1;;;;;34300:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34300:23:0;;34292:68;;;;-1:-1:-1;;;34292:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35123:22:0;::::1;35115:73;;;;-1:-1:-1::0;;;35115:73:0::1;;;;;;;:::i;:::-;35225:6;::::0;35204:38:::1;::::0;-1:-1:-1;;;;;35204:38:0;;::::1;::::0;35225:6:::1;::::0;35204:38:::1;::::0;35225:6:::1;::::0;35204:38:::1;35253:6;:17:::0;;-1:-1:-1;;;;;;35253:17:0::1;-1:-1:-1::0;;;;;35253:17:0;;;::::1;::::0;;;::::1;::::0;;35034:244::o;18560:157::-;-1:-1:-1;;;;;;18669:40:0;;-1:-1:-1;;;18669:40:0;18560:157;;;:::o;25616:127::-;25681:4;25705:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25705:16:0;:30;;;25616:127::o;15479:98::-;15559:10;15479:98;:::o;29493:174::-;29568:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29568:29:0;-1:-1:-1;;;;;29568:29:0;;;;;;;;:24;;29622:23;29568:24;29622:14;:23::i;:::-;-1:-1:-1;;;;;29613:46:0;;;;;;;;;;;29493:174;;:::o;32546:114::-;32638:14;;32546:114::o;25910:348::-;26003:4;26028:16;26036:7;26028;:16::i;:::-;26020:73;;;;-1:-1:-1;;;26020:73:0;;;;;;;:::i;:::-;26104:13;26120:23;26135:7;26120:14;:23::i;:::-;26104:39;;26173:5;-1:-1:-1;;;;;26162:16:0;:7;-1:-1:-1;;;;;26162:16:0;;:51;;;;26206:7;-1:-1:-1;;;;;26182:31:0;:20;26194:7;26182:11;:20::i;:::-;-1:-1:-1;;;;;26182:31:0;;26162:51;:87;;;;26217:32;26234:5;26241:7;26217:16;:32::i;:::-;26154:96;25910:348;-1:-1:-1;;;;25910:348:0:o;28831:544::-;28956:4;-1:-1:-1;;;;;28929:31:0;:23;28944:7;28929:14;:23::i;:::-;-1:-1:-1;;;;;28929:31:0;;28921:85;;;;-1:-1:-1;;;28921:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29025:16:0;;29017:65;;;;-1:-1:-1;;;29017:65:0;;;;;;;:::i;:::-;29095:39;29116:4;29122:2;29126:7;29095:20;:39::i;:::-;29199:29;29216:1;29220:7;29199:8;:29::i;:::-;-1:-1:-1;;;;;29241:15:0;;;;;;:9;:15;;;;;:20;;29260:1;;29241:15;:20;;29260:1;;29241:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29272:13:0;;;;;;:9;:13;;;;;:18;;29289:1;;29272:13;:18;;29289:1;;29272:18;:::i;:::-;;;;-1:-1:-1;;29301:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29301:21:0;-1:-1:-1;;;;;29301:21:0;;;;;;;;;29340:27;;29301:16;;29340:27;;;;;;;28831:544;;;:::o;32668:127::-;32757:19;;32775:1;32757:19;;;32668:127::o;27523:382::-;-1:-1:-1;;;;;27603:16:0;;27595:61;;;;-1:-1:-1;;;27595:61:0;;;;;;;:::i;:::-;27676:16;27684:7;27676;:16::i;:::-;27675:17;27667:58;;;;-1:-1:-1;;;27667:58:0;;;;;;;:::i;:::-;27738:45;27767:1;27771:2;27775:7;27738:20;:45::i;:::-;-1:-1:-1;;;;;27796:13:0;;;;;;:9;:13;;;;;:18;;27813:1;;27796:13;:18;;27813:1;;27796:18;:::i;:::-;;;;-1:-1:-1;;27825:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;27825:21:0;-1:-1:-1;;;;;27825:21:0;;;;;;;;27864:33;;27825:16;;;27864:33;;27825:16;;27864:33;27523:382;;:::o;25031:272::-;25145:28;25155:4;25161:2;25165:7;25145:9;:28::i;:::-;25192:48;25215:4;25221:2;25225:7;25234:5;25192:22;:48::i;:::-;25184:111;;;;-1:-1:-1;;;25184:111:0;;;;;;;:::i;30232:843::-;30353:4;30379:15;:2;-1:-1:-1;;;;;30379:13:0;;:15::i;:::-;30375:693;;;30431:2;-1:-1:-1;;;;;30415:36:0;;30452:12;:10;:12::i;:::-;30466:4;30472:7;30481:5;30415:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30415:72:0;;;;;;;;-1:-1:-1;;30415:72:0;;;;;;;;;;;;:::i;:::-;;;30411:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30661:13:0;;30657:341;;30704:60;;-1:-1:-1;;;30704:60:0;;;;;;;:::i;30657:341::-;30948:6;30942:13;30933:6;30929:2;30925:15;30918:38;30411:602;-1:-1:-1;;;;;;30538:55:0;-1:-1:-1;;;30538:55:0;;-1:-1:-1;30531:62:0;;30375:693;-1:-1:-1;31052:4:0;30232:843;;;;;;:::o;7654:422::-;8021:20;8060:8;;;7654:422::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:1178::-;;;;;1195:3;1183:9;1174:7;1170:23;1166:33;1163:2;;;1217:6;1209;1202:22;1163:2;1245:31;1266:9;1245:31;:::i;:::-;1235:41;;1295:2;1316:40;1352:2;1341:9;1337:18;1316:40;:::i;:::-;1306:50;;1403:2;1392:9;1388:18;1375:32;1365:42;;1458:2;1447:9;1443:18;1430:32;1481:18;1522:2;1514:6;1511:14;1508:2;;;1543:6;1535;1528:22;1508:2;1586:6;1575:9;1571:22;1561:32;;1631:7;1624:4;1620:2;1616:13;1612:27;1602:2;;1658:6;1650;1643:22;1602:2;1699;1686:16;1721:2;1717;1714:10;1711:2;;;1727:18;;:::i;:::-;1776:2;1770:9;1845:2;1826:13;;-1:-1:-1;;1822:27:1;1810:40;;1806:49;;1870:18;;;1890:22;;;1867:46;1864:2;;;1916:18;;:::i;:::-;1952:2;1945:22;1976:18;;;2013:11;;;2009:20;;2006:33;-1:-1:-1;2003:2:1;;;2057:6;2049;2042:22;2003:2;2118;2113;2109;2105:11;2100:2;2092:6;2088:15;2075:46;2141:15;;;2137:24;;;2130:40;;;;-1:-1:-1;1153:1048:1;;;;-1:-1:-1;1153:1048:1;;-1:-1:-1;;1153:1048:1:o;2206:369::-;;;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2353:6;2345;2338:22;2300:2;2381:31;2402:9;2381:31;:::i;:::-;2371:41;;2462:2;2451:9;2447:18;2434:32;2509:5;2502:13;2495:21;2488:5;2485:32;2475:2;;2536:6;2528;2521:22;2475:2;2564:5;2554:15;;;2290:285;;;;;:::o;2580:266::-;;;2709:2;2697:9;2688:7;2684:23;2680:32;2677:2;;;2730:6;2722;2715:22;2677:2;2758:31;2779:9;2758:31;:::i;:::-;2748:41;2836:2;2821:18;;;;2808:32;;-1:-1:-1;;;2667:179:1:o;2851:257::-;;2962:2;2950:9;2941:7;2937:23;2933:32;2930:2;;;2983:6;2975;2968:22;2930:2;3027:9;3014:23;3046:32;3072:5;3046:32;:::i;3113:261::-;;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3256:6;3248;3241:22;3203:2;3293:9;3287:16;3312:32;3338:5;3312:32;:::i;3379:190::-;;3491:2;3479:9;3470:7;3466:23;3462:32;3459:2;;;3512:6;3504;3497:22;3459:2;-1:-1:-1;3540:23:1;;3449:120;-1:-1:-1;3449:120:1:o;3574:477::-;;3655:5;3649:12;3682:6;3677:3;3670:19;3707:3;3719:162;3733:6;3730:1;3727:13;3719:162;;;3795:4;3851:13;;;3847:22;;3841:29;3823:11;;;3819:20;;3812:59;3748:12;3719:162;;;3899:6;3896:1;3893:13;3890:2;;;3965:3;3958:4;3949:6;3944:3;3940:16;3936:27;3929:40;3890:2;-1:-1:-1;4033:2:1;4012:15;-1:-1:-1;;4008:29:1;3999:39;;;;4040:4;3995:50;;3625:426;-1:-1:-1;;3625:426:1:o;4056:203::-;-1:-1:-1;;;;;4220:32:1;;;;4202:51;;4190:2;4175:18;;4157:102::o;4264:490::-;-1:-1:-1;;;;;4533:15:1;;;4515:34;;4585:15;;4580:2;4565:18;;4558:43;4632:2;4617:18;;4610:34;;;4680:3;4675:2;4660:18;;4653:31;;;4264:490;;4701:47;;4728:19;;4720:6;4701:47;:::i;:::-;4693:55;4467:287;-1:-1:-1;;;;;;4467:287:1:o;4759:187::-;4924:14;;4917:22;4899:41;;4887:2;4872:18;;4854:92::o;4951:221::-;;5100:2;5089:9;5082:21;5120:46;5162:2;5151:9;5147:18;5139:6;5120:46;:::i;5177:414::-;5379:2;5361:21;;;5418:2;5398:18;;;5391:30;5457:34;5452:2;5437:18;;5430:62;-1:-1:-1;;;5523:2:1;5508:18;;5501:48;5581:3;5566:19;;5351:240::o;5596:402::-;5798:2;5780:21;;;5837:2;5817:18;;;5810:30;5876:34;5871:2;5856:18;;5849:62;-1:-1:-1;;;5942:2:1;5927:18;;5920:36;5988:3;5973:19;;5770:228::o;6003:352::-;6205:2;6187:21;;;6244:2;6224:18;;;6217:30;6283;6278:2;6263:18;;6256:58;6346:2;6331:18;;6177:178::o;6360:400::-;6562:2;6544:21;;;6601:2;6581:18;;;6574:30;6640:34;6635:2;6620:18;;6613:62;-1:-1:-1;;;6706:2:1;6691:18;;6684:34;6750:3;6735:19;;6534:226::o;6765:349::-;6967:2;6949:21;;;7006:2;6986:18;;;6979:30;7045:27;7040:2;7025:18;;7018:55;7105:2;7090:18;;6939:175::o;7119:408::-;7321:2;7303:21;;;7360:2;7340:18;;;7333:30;7399:34;7394:2;7379:18;;7372:62;-1:-1:-1;;;7465:2:1;7450:18;;7443:42;7517:3;7502:19;;7293:234::o;7532:420::-;7734:2;7716:21;;;7773:2;7753:18;;;7746:30;7812:34;7807:2;7792:18;;7785:62;7883:26;7878:2;7863:18;;7856:54;7942:3;7927:19;;7706:246::o;7957:406::-;8159:2;8141:21;;;8198:2;8178:18;;;8171:30;8237:34;8232:2;8217:18;;8210:62;-1:-1:-1;;;8303:2:1;8288:18;;8281:40;8353:3;8338:19;;8131:232::o;8368:405::-;8570:2;8552:21;;;8609:2;8589:18;;;8582:30;8648:34;8643:2;8628:18;;8621:62;-1:-1:-1;;;8714:2:1;8699:18;;8692:39;8763:3;8748:19;;8542:231::o;8778:356::-;8980:2;8962:21;;;8999:18;;;8992:30;9058:34;9053:2;9038:18;;9031:62;9125:2;9110:18;;8952:182::o;9139:408::-;9341:2;9323:21;;;9380:2;9360:18;;;9353:30;9419:34;9414:2;9399:18;;9392:62;-1:-1:-1;;;9485:2:1;9470:18;;9463:42;9537:3;9522:19;;9313:234::o;9552:356::-;9754:2;9736:21;;;9773:18;;;9766:30;9832:34;9827:2;9812:18;;9805:62;9899:2;9884:18;;9726:182::o;9913:405::-;10115:2;10097:21;;;10154:2;10134:18;;;10127:30;10193:34;10188:2;10173:18;;10166:62;-1:-1:-1;;;10259:2:1;10244:18;;10237:39;10308:3;10293:19;;10087:231::o;10323:343::-;10525:2;10507:21;;;10564:2;10544:18;;;10537:30;-1:-1:-1;;;10598:2:1;10583:18;;10576:49;10657:2;10642:18;;10497:169::o;10671:411::-;10873:2;10855:21;;;10912:2;10892:18;;;10885:30;10951:34;10946:2;10931:18;;10924:62;-1:-1:-1;;;11017:2:1;11002:18;;10995:45;11072:3;11057:19;;10845:237::o;11087:397::-;11289:2;11271:21;;;11328:2;11308:18;;;11301:30;11367:34;11362:2;11347:18;;11340:62;-1:-1:-1;;;11433:2:1;11418:18;;11411:31;11474:3;11459:19;;11261:223::o;11489:413::-;11691:2;11673:21;;;11730:2;11710:18;;;11703:30;11769:34;11764:2;11749:18;;11742:62;-1:-1:-1;;;11835:2:1;11820:18;;11813:47;11892:3;11877:19;;11663:239::o;11907:177::-;12053:25;;;12041:2;12026:18;;12008:76::o;12089:128::-;;12160:1;12156:6;12153:1;12150:13;12147:2;;;12166:18;;:::i;:::-;-1:-1:-1;12202:9:1;;12137:80::o;12222:125::-;;12290:1;12287;12284:8;12281:2;;;12295:18;;:::i;:::-;-1:-1:-1;12332:9:1;;12271:76::o;12352:380::-;12437:1;12427:12;;12484:1;12474:12;;;12495:2;;12549:4;12541:6;12537:17;12527:27;;12495:2;12602;12594:6;12591:14;12571:18;12568:38;12565:2;;;12648:10;12643:3;12639:20;12636:1;12629:31;12683:4;12680:1;12673:15;12711:4;12708:1;12701:15;12565:2;;12407:325;;;:::o;12737:127::-;12798:10;12793:3;12789:20;12786:1;12779:31;12829:4;12826:1;12819:15;12853:4;12850:1;12843:15;12869:127;12930:10;12925:3;12921:20;12918:1;12911:31;12961:4;12958:1;12951:15;12985:4;12982:1;12975:15;13001:133;-1:-1:-1;;;;;;13077:32:1;;13067:43;;13057:2;;13124:1;13121;13114:12;13057:2;13047:87;:::o

Swarm Source

ipfs://1c198475faf7f65a4446381e42da72d0105ec83ab7cfc28798123f4a50ab4dbb
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.