ETH Price: $3,250.85 (+4.36%)
Gas: 1 Gwei

Token

Elf Games (ELF)
 

Overview

Max Total Supply

1,000 ELF

Holders

163

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 ELF
0xbA7B8C00552E9338C1Ff14b6C64c981b96fa4a6F
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:
Elf

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 3 of 14: Elf.sol
pragma solidity ^0.8.0;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./ReentrancyGuard.sol";

contract Elf is ERC721Enumerable, Ownable, ReentrancyGuard {

    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 1000;

    uint256 public SALE_PRICE = 0.08 ether;

    uint256 public saleStartTime;

    string private _baseURIExtended = "";

    constructor() ERC721("Elf Games", "ELF") { }

    function mint(uint256 quantity) external payable nonReentrant {
        require(block.timestamp > saleStartTime, "Mint hasn't started");
        require(quantity > 0, "Number of tokens can not be less than or equal to 0");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Purchase would exceed max supply of tokens");
        uint256 amount = SALE_PRICE * quantity;
        require(msg.value >= amount,"Value insufficient");
        for (uint256 i = 0; i < quantity; i++) {
            uint256 tokenId = totalSupply() + 1;
            _safeMint(msg.sender, tokenId);
        }
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
        string memory base = _baseURI();
        string memory url  = string(abi.encodePacked(base, tokenId.toString()));
        return string(abi.encodePacked(url,".json"));
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIExtended;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIExtended = baseURI_;
    }

    function setSalePrice(uint256 price) external onlyOwner {
        SALE_PRICE = price;
    }

    function setSaleStartTime(uint256 startTime) external onlyOwner {
        saleStartTime = startTime;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

File 1 of 14: Address.sol
pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 14: Context.sol
pragma solidity ^0.8.0;

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

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

File 4 of 14: ERC165.sol
pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 14: ERC721.sol
pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden 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 {
        _setApprovalForAll(_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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 14: ERC721Enumerable.sol
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

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

File 7 of 14: IERC165.sol
pragma solidity ^0.8.0;

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

File 8 of 14: IERC721.sol
pragma solidity ^0.8.0;

import "./ERC165.sol";

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 9 of 14: IERC721Enumerable.sol
pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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);

    /**
     * @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 10 of 14: IERC721Metadata.sol
pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 12 of 14: Ownable.sol
pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 13 of 14: ReentrancyGuard.sol
pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 14 of 14: Strings.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"quantity","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":"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":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"setSaleStartTime","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

67011c37937e080000600c5560a06040819052600060808190526200002791600e9162000116565b503480156200003557600080fd5b506040805180820182526009815268456c662047616d657360b81b60208083019182528351808501909452600384526222a62360e91b908401528151919291620000829160009162000116565b5080516200009890600190602084019062000116565b505050620000b5620000af620000c060201b60201c565b620000c4565b6001600b55620001f9565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012490620001bc565b90600052602060002090601f01602090048101928262000148576000855562000193565b82601f106200016357805160ff191683800117855562000193565b8280016001018555821562000193579182015b828111156200019357825182559160200191906001019062000176565b50620001a1929150620001a5565b5090565b5b80821115620001a15760008155600101620001a6565b600181811c90821680620001d157607f821691505b60208210811415620001f357634e487b7160e01b600052602260045260246000fd5b50919050565b61206b80620002096000396000f3fe60806040526004361061019c5760003560e01c8063525f8a5c116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde14610463578063c87b56dd14610483578063e985e9c5146104a3578063f2fde38b146104ec57600080fd5b806395d89b411461041b578063a0712d6814610430578063a22cb4651461044357600080fd5b806370a08231116100c657806370a08231146103b2578063715018a6146103d25780637f205a74146103e75780638da5cb5b146103fd57600080fd5b8063525f8a5c1461035257806355f804b3146103725780636352211e1461039257600080fd5b80631cbaee2d1161015957806332cb6b0c1161013357806332cb6b0c146102e75780633ccfd60b146102fd57806342842e0e146103125780634f6ccce71461033257600080fd5b80631cbaee2d1461029157806323b872dd146102a75780632f745c59146102c757600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd146102525780631919fed714610271575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611ca3565b61050c565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610537565b6040516101cd9190611dfa565b34801561020457600080fd5b50610218610213366004611d21565b6105c9565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611c7a565b610663565b005b34801561025e57600080fd5b506008545b6040519081526020016101cd565b34801561027d57600080fd5b5061025061028c366004611d21565b610779565b34801561029d57600080fd5b50610263600d5481565b3480156102b357600080fd5b506102506102c2366004611b8c565b6107a8565b3480156102d357600080fd5b506102636102e2366004611c7a565b6107d9565b3480156102f357600080fd5b506102636103e881565b34801561030957600080fd5b5061025061086f565b34801561031e57600080fd5b5061025061032d366004611b8c565b6108cc565b34801561033e57600080fd5b5061026361034d366004611d21565b6108e7565b34801561035e57600080fd5b5061025061036d366004611d21565b610988565b34801561037e57600080fd5b5061025061038d366004611cdb565b6109b7565b34801561039e57600080fd5b506102186103ad366004611d21565b6109f4565b3480156103be57600080fd5b506102636103cd366004611b39565b610a6b565b3480156103de57600080fd5b50610250610af2565b3480156103f357600080fd5b50610263600c5481565b34801561040957600080fd5b50600a546001600160a01b0316610218565b34801561042757600080fd5b506101eb610b28565b61025061043e366004611d21565b610b37565b34801561044f57600080fd5b5061025061045e366004611c40565b610d5b565b34801561046f57600080fd5b5061025061047e366004611bc7565b610d66565b34801561048f57600080fd5b506101eb61049e366004611d21565b610d9e565b3480156104af57600080fd5b506101c16104be366004611b5a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104f857600080fd5b50610250610507366004611b39565b610e80565b60006001600160e01b0319821663780e9d6360e01b1480610531575061053182610f1b565b92915050565b60606000805461054690611f73565b80601f016020809104026020016040519081016040528092919081815260200182805461057290611f73565b80156105bf5780601f10610594576101008083540402835291602001916105bf565b820191906000526020600020905b8154815290600101906020018083116105a257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061066e826109f4565b9050806001600160a01b0316836001600160a01b031614156106dc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161063e565b336001600160a01b03821614806106f857506106f881336104be565b61076a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161063e565b6107748383610f6b565b505050565b600a546001600160a01b031633146107a35760405162461bcd60e51b815260040161063e90611e5f565b600c55565b6107b23382610fd9565b6107ce5760405162461bcd60e51b815260040161063e90611e94565b6107748383836110d0565b60006107e483610a6b565b82106108465760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161063e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108995760405162461bcd60e51b815260040161063e90611e5f565b6040514790339082156108fc029083906000818181858888f193505050501580156108c8573d6000803e3d6000fd5b5050565b61077483838360405180602001604052806000815250610d66565b60006108f260085490565b82106109555760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161063e565b6008828154811061097657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146109b25760405162461bcd60e51b815260040161063e90611e5f565b600d55565b600a546001600160a01b031633146109e15760405162461bcd60e51b815260040161063e90611e5f565b80516108c890600e906020840190611a0e565b6000818152600260205260408120546001600160a01b0316806105315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161063e565b60006001600160a01b038216610ad65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161063e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b1c5760405162461bcd60e51b815260040161063e90611e5f565b610b266000611277565b565b60606001805461054690611f73565b6002600b541415610b8a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161063e565b6002600b55600d544211610bd65760405162461bcd60e51b8152602060048201526013602482015272135a5b9d081a185cdb89dd081cdd185c9d1959606a1b604482015260640161063e565b60008111610c425760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736044820152720207468616e206f7220657175616c20746f203606c1b606482015260840161063e565b6103e881610c4f60085490565b610c599190611ee5565b1115610cba5760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b606482015260840161063e565b600081600c54610cca9190611f11565b905080341015610d115760405162461bcd60e51b815260206004820152601260248201527115985b1d59481a5b9cdd59999a58da595b9d60721b604482015260640161063e565b60005b82811015610d51576000610d2760085490565b610d32906001611ee5565b9050610d3e33826112c9565b5080610d4981611fae565b915050610d14565b50506001600b5550565b6108c83383836112e3565b610d703383610fd9565b610d8c5760405162461bcd60e51b815260040161063e90611e94565b610d98848484846113b2565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e1d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161063e565b6000610e276113e5565b9050600081610e35856113f4565b604051602001610e46929190611d65565b604051602081830303815290604052905080604051602001610e689190611d94565b60405160208183030381529060405292505050919050565b600a546001600160a01b03163314610eaa5760405162461bcd60e51b815260040161063e90611e5f565b6001600160a01b038116610f0f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161063e565b610f1881611277565b50565b60006001600160e01b031982166380ac58cd60e01b1480610f4c57506001600160e01b03198216635b5e139f60e01b145b8061053157506301ffc9a760e01b6001600160e01b0319831614610531565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fa0826109f4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161063e565b600061105d836109f4565b9050806001600160a01b0316846001600160a01b031614806110a457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806110c85750836001600160a01b03166110bd846105c9565b6001600160a01b0316145b949350505050565b826001600160a01b03166110e3826109f4565b6001600160a01b0316146111475760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161063e565b6001600160a01b0382166111a95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161063e565b6111b483838361150e565b6111bf600082610f6b565b6001600160a01b03831660009081526003602052604081208054600192906111e8908490611f30565b90915550506001600160a01b0382166000908152600360205260408120805460019290611216908490611ee5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108c88282604051806020016040528060008152506115c6565b816001600160a01b0316836001600160a01b031614156113455760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161063e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113bd8484846110d0565b6113c9848484846115f9565b610d985760405162461bcd60e51b815260040161063e90611e0d565b6060600e805461054690611f73565b6060816114185750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611442578061142c81611fae565b915061143b9050600a83611efd565b915061141c565b60008167ffffffffffffffff81111561146b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611495576020820181803683370190505b5090505b84156110c8576114aa600183611f30565b91506114b7600a86611fc9565b6114c2906030611ee5565b60f81b8183815181106114e557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611507600a86611efd565b9450611499565b6001600160a01b0383166115695761156481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61158c565b816001600160a01b0316836001600160a01b03161461158c5761158c8382611706565b6001600160a01b0382166115a357610774816117a3565b826001600160a01b0316826001600160a01b03161461077457610774828261187c565b6115d083836118c0565b6115dd60008484846115f9565b6107745760405162461bcd60e51b815260040161063e90611e0d565b60006001600160a01b0384163b156116fb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061163d903390899088908890600401611dbd565b602060405180830381600087803b15801561165757600080fd5b505af1925050508015611687575060408051601f3d908101601f1916820190925261168491810190611cbf565b60015b6116e1573d8080156116b5576040519150601f19603f3d011682016040523d82523d6000602084013e6116ba565b606091505b5080516116d95760405162461bcd60e51b815260040161063e90611e0d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110c8565b506001949350505050565b6000600161171384610a6b565b61171d9190611f30565b600083815260076020526040902054909150808214611770576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117b590600190611f30565b600083815260096020526040812054600880549394509092849081106117eb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061181a57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061186057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061188783610a6b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166119165760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161063e565b6000818152600260205260409020546001600160a01b03161561197b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161063e565b6119876000838361150e565b6001600160a01b03821660009081526003602052604081208054600192906119b0908490611ee5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a1a90611f73565b90600052602060002090601f016020900481019282611a3c5760008555611a82565b82601f10611a5557805160ff1916838001178555611a82565b82800160010185558215611a82579182015b82811115611a82578251825591602001919060010190611a67565b50611a8e929150611a92565b5090565b5b80821115611a8e5760008155600101611a93565b600067ffffffffffffffff80841115611ac257611ac2612009565b604051601f8501601f19908116603f01168101908282118183101715611aea57611aea612009565b81604052809350858152868686011115611b0357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b3457600080fd5b919050565b600060208284031215611b4a578081fd5b611b5382611b1d565b9392505050565b60008060408385031215611b6c578081fd5b611b7583611b1d565b9150611b8360208401611b1d565b90509250929050565b600080600060608486031215611ba0578081fd5b611ba984611b1d565b9250611bb760208501611b1d565b9150604084013590509250925092565b60008060008060808587031215611bdc578081fd5b611be585611b1d565b9350611bf360208601611b1d565b925060408501359150606085013567ffffffffffffffff811115611c15578182fd5b8501601f81018713611c25578182fd5b611c3487823560208401611aa7565b91505092959194509250565b60008060408385031215611c52578182fd5b611c5b83611b1d565b915060208301358015158114611c6f578182fd5b809150509250929050565b60008060408385031215611c8c578182fd5b611c9583611b1d565b946020939093013593505050565b600060208284031215611cb4578081fd5b8135611b538161201f565b600060208284031215611cd0578081fd5b8151611b538161201f565b600060208284031215611cec578081fd5b813567ffffffffffffffff811115611d02578182fd5b8201601f81018413611d12578182fd5b6110c884823560208401611aa7565b600060208284031215611d32578081fd5b5035919050565b60008151808452611d51816020860160208601611f47565b601f01601f19169290920160200192915050565b60008351611d77818460208801611f47565b835190830190611d8b818360208801611f47565b01949350505050565b60008251611da6818460208701611f47565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611df090830184611d39565b9695505050505050565b602081526000611b536020830184611d39565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611ef857611ef8611fdd565b500190565b600082611f0c57611f0c611ff3565b500490565b6000816000190483118215151615611f2b57611f2b611fdd565b500290565b600082821015611f4257611f42611fdd565b500390565b60005b83811015611f62578181015183820152602001611f4a565b83811115610d985750506000910152565b600181811c90821680611f8757607f821691505b60208210811415611fa857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fc257611fc2611fdd565b5060010190565b600082611fd857611fd8611ff3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f1857600080fdfea26469706673582212207184fc64a22f7438ccbc25ad4eb50aa2a8ec5ef7a419e35b67a78afaf4ae8cf264736f6c63430008040033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c8063525f8a5c116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde14610463578063c87b56dd14610483578063e985e9c5146104a3578063f2fde38b146104ec57600080fd5b806395d89b411461041b578063a0712d6814610430578063a22cb4651461044357600080fd5b806370a08231116100c657806370a08231146103b2578063715018a6146103d25780637f205a74146103e75780638da5cb5b146103fd57600080fd5b8063525f8a5c1461035257806355f804b3146103725780636352211e1461039257600080fd5b80631cbaee2d1161015957806332cb6b0c1161013357806332cb6b0c146102e75780633ccfd60b146102fd57806342842e0e146103125780634f6ccce71461033257600080fd5b80631cbaee2d1461029157806323b872dd146102a75780632f745c59146102c757600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd146102525780631919fed714610271575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611ca3565b61050c565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610537565b6040516101cd9190611dfa565b34801561020457600080fd5b50610218610213366004611d21565b6105c9565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611c7a565b610663565b005b34801561025e57600080fd5b506008545b6040519081526020016101cd565b34801561027d57600080fd5b5061025061028c366004611d21565b610779565b34801561029d57600080fd5b50610263600d5481565b3480156102b357600080fd5b506102506102c2366004611b8c565b6107a8565b3480156102d357600080fd5b506102636102e2366004611c7a565b6107d9565b3480156102f357600080fd5b506102636103e881565b34801561030957600080fd5b5061025061086f565b34801561031e57600080fd5b5061025061032d366004611b8c565b6108cc565b34801561033e57600080fd5b5061026361034d366004611d21565b6108e7565b34801561035e57600080fd5b5061025061036d366004611d21565b610988565b34801561037e57600080fd5b5061025061038d366004611cdb565b6109b7565b34801561039e57600080fd5b506102186103ad366004611d21565b6109f4565b3480156103be57600080fd5b506102636103cd366004611b39565b610a6b565b3480156103de57600080fd5b50610250610af2565b3480156103f357600080fd5b50610263600c5481565b34801561040957600080fd5b50600a546001600160a01b0316610218565b34801561042757600080fd5b506101eb610b28565b61025061043e366004611d21565b610b37565b34801561044f57600080fd5b5061025061045e366004611c40565b610d5b565b34801561046f57600080fd5b5061025061047e366004611bc7565b610d66565b34801561048f57600080fd5b506101eb61049e366004611d21565b610d9e565b3480156104af57600080fd5b506101c16104be366004611b5a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104f857600080fd5b50610250610507366004611b39565b610e80565b60006001600160e01b0319821663780e9d6360e01b1480610531575061053182610f1b565b92915050565b60606000805461054690611f73565b80601f016020809104026020016040519081016040528092919081815260200182805461057290611f73565b80156105bf5780601f10610594576101008083540402835291602001916105bf565b820191906000526020600020905b8154815290600101906020018083116105a257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061066e826109f4565b9050806001600160a01b0316836001600160a01b031614156106dc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161063e565b336001600160a01b03821614806106f857506106f881336104be565b61076a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161063e565b6107748383610f6b565b505050565b600a546001600160a01b031633146107a35760405162461bcd60e51b815260040161063e90611e5f565b600c55565b6107b23382610fd9565b6107ce5760405162461bcd60e51b815260040161063e90611e94565b6107748383836110d0565b60006107e483610a6b565b82106108465760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161063e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108995760405162461bcd60e51b815260040161063e90611e5f565b6040514790339082156108fc029083906000818181858888f193505050501580156108c8573d6000803e3d6000fd5b5050565b61077483838360405180602001604052806000815250610d66565b60006108f260085490565b82106109555760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161063e565b6008828154811061097657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146109b25760405162461bcd60e51b815260040161063e90611e5f565b600d55565b600a546001600160a01b031633146109e15760405162461bcd60e51b815260040161063e90611e5f565b80516108c890600e906020840190611a0e565b6000818152600260205260408120546001600160a01b0316806105315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161063e565b60006001600160a01b038216610ad65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161063e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b1c5760405162461bcd60e51b815260040161063e90611e5f565b610b266000611277565b565b60606001805461054690611f73565b6002600b541415610b8a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161063e565b6002600b55600d544211610bd65760405162461bcd60e51b8152602060048201526013602482015272135a5b9d081a185cdb89dd081cdd185c9d1959606a1b604482015260640161063e565b60008111610c425760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736044820152720207468616e206f7220657175616c20746f203606c1b606482015260840161063e565b6103e881610c4f60085490565b610c599190611ee5565b1115610cba5760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b606482015260840161063e565b600081600c54610cca9190611f11565b905080341015610d115760405162461bcd60e51b815260206004820152601260248201527115985b1d59481a5b9cdd59999a58da595b9d60721b604482015260640161063e565b60005b82811015610d51576000610d2760085490565b610d32906001611ee5565b9050610d3e33826112c9565b5080610d4981611fae565b915050610d14565b50506001600b5550565b6108c83383836112e3565b610d703383610fd9565b610d8c5760405162461bcd60e51b815260040161063e90611e94565b610d98848484846113b2565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e1d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161063e565b6000610e276113e5565b9050600081610e35856113f4565b604051602001610e46929190611d65565b604051602081830303815290604052905080604051602001610e689190611d94565b60405160208183030381529060405292505050919050565b600a546001600160a01b03163314610eaa5760405162461bcd60e51b815260040161063e90611e5f565b6001600160a01b038116610f0f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161063e565b610f1881611277565b50565b60006001600160e01b031982166380ac58cd60e01b1480610f4c57506001600160e01b03198216635b5e139f60e01b145b8061053157506301ffc9a760e01b6001600160e01b0319831614610531565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fa0826109f4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161063e565b600061105d836109f4565b9050806001600160a01b0316846001600160a01b031614806110a457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806110c85750836001600160a01b03166110bd846105c9565b6001600160a01b0316145b949350505050565b826001600160a01b03166110e3826109f4565b6001600160a01b0316146111475760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161063e565b6001600160a01b0382166111a95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161063e565b6111b483838361150e565b6111bf600082610f6b565b6001600160a01b03831660009081526003602052604081208054600192906111e8908490611f30565b90915550506001600160a01b0382166000908152600360205260408120805460019290611216908490611ee5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108c88282604051806020016040528060008152506115c6565b816001600160a01b0316836001600160a01b031614156113455760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161063e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113bd8484846110d0565b6113c9848484846115f9565b610d985760405162461bcd60e51b815260040161063e90611e0d565b6060600e805461054690611f73565b6060816114185750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611442578061142c81611fae565b915061143b9050600a83611efd565b915061141c565b60008167ffffffffffffffff81111561146b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611495576020820181803683370190505b5090505b84156110c8576114aa600183611f30565b91506114b7600a86611fc9565b6114c2906030611ee5565b60f81b8183815181106114e557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611507600a86611efd565b9450611499565b6001600160a01b0383166115695761156481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61158c565b816001600160a01b0316836001600160a01b03161461158c5761158c8382611706565b6001600160a01b0382166115a357610774816117a3565b826001600160a01b0316826001600160a01b03161461077457610774828261187c565b6115d083836118c0565b6115dd60008484846115f9565b6107745760405162461bcd60e51b815260040161063e90611e0d565b60006001600160a01b0384163b156116fb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061163d903390899088908890600401611dbd565b602060405180830381600087803b15801561165757600080fd5b505af1925050508015611687575060408051601f3d908101601f1916820190925261168491810190611cbf565b60015b6116e1573d8080156116b5576040519150601f19603f3d011682016040523d82523d6000602084013e6116ba565b606091505b5080516116d95760405162461bcd60e51b815260040161063e90611e0d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110c8565b506001949350505050565b6000600161171384610a6b565b61171d9190611f30565b600083815260076020526040902054909150808214611770576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117b590600190611f30565b600083815260096020526040812054600880549394509092849081106117eb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061181a57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061186057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061188783610a6b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166119165760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161063e565b6000818152600260205260409020546001600160a01b03161561197b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161063e565b6119876000838361150e565b6001600160a01b03821660009081526003602052604081208054600192906119b0908490611ee5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a1a90611f73565b90600052602060002090601f016020900481019282611a3c5760008555611a82565b82601f10611a5557805160ff1916838001178555611a82565b82800160010185558215611a82579182015b82811115611a82578251825591602001919060010190611a67565b50611a8e929150611a92565b5090565b5b80821115611a8e5760008155600101611a93565b600067ffffffffffffffff80841115611ac257611ac2612009565b604051601f8501601f19908116603f01168101908282118183101715611aea57611aea612009565b81604052809350858152868686011115611b0357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b3457600080fd5b919050565b600060208284031215611b4a578081fd5b611b5382611b1d565b9392505050565b60008060408385031215611b6c578081fd5b611b7583611b1d565b9150611b8360208401611b1d565b90509250929050565b600080600060608486031215611ba0578081fd5b611ba984611b1d565b9250611bb760208501611b1d565b9150604084013590509250925092565b60008060008060808587031215611bdc578081fd5b611be585611b1d565b9350611bf360208601611b1d565b925060408501359150606085013567ffffffffffffffff811115611c15578182fd5b8501601f81018713611c25578182fd5b611c3487823560208401611aa7565b91505092959194509250565b60008060408385031215611c52578182fd5b611c5b83611b1d565b915060208301358015158114611c6f578182fd5b809150509250929050565b60008060408385031215611c8c578182fd5b611c9583611b1d565b946020939093013593505050565b600060208284031215611cb4578081fd5b8135611b538161201f565b600060208284031215611cd0578081fd5b8151611b538161201f565b600060208284031215611cec578081fd5b813567ffffffffffffffff811115611d02578182fd5b8201601f81018413611d12578182fd5b6110c884823560208401611aa7565b600060208284031215611d32578081fd5b5035919050565b60008151808452611d51816020860160208601611f47565b601f01601f19169290920160200192915050565b60008351611d77818460208801611f47565b835190830190611d8b818360208801611f47565b01949350505050565b60008251611da6818460208701611f47565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611df090830184611d39565b9695505050505050565b602081526000611b536020830184611d39565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611ef857611ef8611fdd565b500190565b600082611f0c57611f0c611ff3565b500490565b6000816000190483118215151615611f2b57611f2b611fdd565b500290565b600082821015611f4257611f42611fdd565b500390565b60005b83811015611f62578181015183820152602001611f4a565b83811115610d985750506000910152565b600181811c90821680611f8757607f821691505b60208210811415611fa857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fc257611fc2611fdd565b5060010190565b600082611fd857611fd8611ff3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f1857600080fdfea26469706673582212207184fc64a22f7438ccbc25ad4eb50aa2a8ec5ef7a419e35b67a78afaf4ae8cf264736f6c63430008040033

Deployed Bytecode Sourcemap

115:1864:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;876:222:4;;;;;;;;;;-1:-1:-1;876:222:4;;;;;:::i;:::-;;:::i;:::-;;;6244:14:14;;6237:22;6219:41;;6207:2;6192:18;876:222:4;;;;;;;;2316:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3828:217::-;;;;;;;;;;-1:-1:-1;3828:217:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5542:32:14;;;5524:51;;5512:2;5497:18;3828:217:3;5479:102:14;3366:401:3;;;;;;;;;;-1:-1:-1;3366:401:3;;;;;:::i;:::-;;:::i;:::-;;1501:111:4;;;;;;;;;;-1:-1:-1;1588:10:4;:17;1501:111;;;15730:25:14;;;15718:2;15703:18;1501:111:4;15685:76:14;1626:91:5;;;;;;;;;;-1:-1:-1;1626:91:5;;;;;:::i;:::-;;:::i;306:28::-;;;;;;;;;;;;;;;;4555:330:3;;;;;;;;;;-1:-1:-1;4555:330:3;;;;;:::i;:::-;;:::i;1177:253:4:-;;;;;;;;;;-1:-1:-1;1177:253:4;;;;;:::i;:::-;;:::i;213:41:5:-;;;;;;;;;;;;250:4;213:41;;1835:142;;;;;;;;;;;;;:::i;4951:180:3:-;;;;;;;;;;-1:-1:-1;4951:180:3;;;;;:::i;:::-;;:::i;1684:230:4:-;;;;;;;;;;-1:-1:-1;1684:230:4;;;;;:::i;:::-;;:::i;1723:106:5:-;;;;;;;;;;-1:-1:-1;1723:106:5;;;;;:::i;:::-;;:::i;1513:107::-;;;;;;;;;;-1:-1:-1;1513:107:5;;;;;:::i;:::-;;:::i;2019:235:3:-;;;;;;;;;;-1:-1:-1;2019:235:3;;;;;:::i;:::-;;:::i;1757:205::-;;;;;;;;;;-1:-1:-1;1757:205:3;;;;;:::i;:::-;;:::i;1574:101:11:-;;;;;;;;;;;;;:::i;261:38:5:-;;;;;;;;;;;;;;;;942:85:11;;;;;;;;;;-1:-1:-1;1014:6:11;;-1:-1:-1;;;;;1014:6:11;942:85;;2478:102:3;;;;;;;;;;;;;:::i;434:590:5:-;;;;;;:::i;:::-;;:::i;4112:153:3:-;;;;;;;;;;-1:-1:-1;4112:153:3;;;;;:::i;:::-;;:::i;5197:320::-;;;;;;;;;;-1:-1:-1;5197:320:3;;;;;:::i;:::-;;:::i;1030:356:5:-;;;;;;;;;;-1:-1:-1;1030:356:5;;;;;:::i;:::-;;:::i;4331:162:3:-;;;;;;;;;;-1:-1:-1;4331:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;4451:25:3;;;4428:4;4451:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4331:162;1824:198:11;;;;;;;;;;-1:-1:-1;1824:198:11;;;;;:::i;:::-;;:::i;876:222:4:-;978:4;-1:-1:-1;;;;;;1001:50:4;;-1:-1:-1;;;1001:50:4;;:90;;;1055:36;1079:11;1055:23;:36::i;:::-;994:97;876:222;-1:-1:-1;;876:222:4:o;2316:98:3:-;2370:13;2402:5;2395:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2316:98;:::o;3828:217::-;3904:7;7077:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7077:16:3;3923:73;;;;-1:-1:-1;;;3923:73:3;;12655:2:14;3923:73:3;;;12637:21:14;12694:2;12674:18;;;12667:30;12733:34;12713:18;;;12706:62;-1:-1:-1;;;12784:18:14;;;12777:42;12836:19;;3923:73:3;;;;;;;;;-1:-1:-1;4014:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4014:24:3;;3828:217::o;3366:401::-;3446:13;3462:23;3477:7;3462:14;:23::i;:::-;3446:39;;3509:5;-1:-1:-1;;;;;3503:11:3;:2;-1:-1:-1;;;;;3503:11:3;;;3495:57;;;;-1:-1:-1;;;3495:57:3;;14193:2:14;3495:57:3;;;14175:21:14;14232:2;14212:18;;;14205:30;14271:34;14251:18;;;14244:62;-1:-1:-1;;;14322:18:14;;;14315:31;14363:19;;3495:57:3;14165:223:14;3495:57:3;633:10:1;-1:-1:-1;;;;;3584:21:3;;;;:62;;-1:-1:-1;3609:37:3;3626:5;633:10:1;4331:162:3;:::i;3609:37::-;3563:165;;;;-1:-1:-1;;;3563:165:3;;10637:2:14;3563:165:3;;;10619:21:14;10676:2;10656:18;;;10649:30;10715:34;10695:18;;;10688:62;10786:26;10766:18;;;10759:54;10830:19;;3563:165:3;10609:246:14;3563:165:3;3739:21;3748:2;3752:7;3739:8;:21::i;:::-;3366:401;;;:::o;1626:91:5:-;1014:6:11;;-1:-1:-1;;;;;1014:6:11;633:10:1;1154:23:11;1146:68;;;;-1:-1:-1;;;1146:68:11;;;;;;;:::i;:::-;1692:10:5::1;:18:::0;1626:91::o;4555:330:3:-;4744:41;633:10:1;4777:7:3;4744:18;:41::i;:::-;4736:103;;;;-1:-1:-1;;;4736:103:3;;;;;;;:::i;:::-;4850:28;4860:4;4866:2;4870:7;4850:9;:28::i;1177:253:4:-;1274:7;1309:23;1326:5;1309:16;:23::i;:::-;1301:5;:31;1293:87;;;;-1:-1:-1;;;1293:87:4;;7117:2:14;1293:87:4;;;7099:21:14;7156:2;7136:18;;;7129:30;7195:34;7175:18;;;7168:62;-1:-1:-1;;;7246:18:14;;;7239:41;7297:19;;1293:87:4;7089:233:14;1293:87:4;-1:-1:-1;;;;;;1397:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1177:253::o;1835:142:5:-;1014:6:11;;-1:-1:-1;;;;;1014:6:11;633:10:1;1154:23:11;1146:68;;;;-1:-1:-1;;;1146:68:11;;;;;;;:::i;:::-;1933:37:5::1;::::0;1902:21:::1;::::0;1941:10:::1;::::0;1933:37;::::1;;;::::0;1902:21;;1884:15:::1;1933:37:::0;1884:15;1933:37;1902:21;1941:10;1933:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1224:1:11;1835:142:5:o:0;4951:180:3:-;5085:39;5102:4;5108:2;5112:7;5085:39;;;;;;;;;;;;:16;:39::i;1684:230:4:-;1759:7;1794:30;1588:10;:17;;1501:111;1794:30;1786:5;:38;1778:95;;;;-1:-1:-1;;;1778:95:4;;15013:2:14;1778:95:4;;;14995:21:14;15052:2;15032:18;;;15025:30;15091:34;15071:18;;;15064:62;-1:-1:-1;;;15142:18:14;;;15135:42;15194:19;;1778:95:4;14985:234:14;1778:95:4;1890:10;1901:5;1890:17;;;;;;-1:-1:-1;;;1890:17:4;;;;;;;;;;;;;;;;;1883:24;;1684:230;;;:::o;1723:106:5:-;1014:6:11;;-1:-1:-1;;;;;1014:6:11;633:10:1;1154:23:11;1146:68;;;;-1:-1:-1;;;1146:68:11;;;;;;;:::i;:::-;1797:13:5::1;:25:::0;1723:106::o;1513:107::-;1014:6:11;;-1:-1:-1;;;;;1014:6:11;633:10:1;1154:23:11;1146:68;;;;-1:-1:-1;;;1146:68:11;;;;;;;:::i;:::-;1586:27:5;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;2019:235:3:-:0;2091:7;2126:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2126:16:3;2160:19;2152:73;;;;-1:-1:-1;;;2152:73:3;;11473:2:14;2152:73:3;;;11455:21:14;11512:2;11492:18;;;11485:30;11551:34;11531:18;;;11524:62;-1:-1:-1;;;11602:18:14;;;11595:39;11651:19;;2152:73:3;11445:231:14;1757:205:3;1829:7;-1:-1:-1;;;;;1856:19:3;;1848:74;;;;-1:-1:-1;;;1848:74:3;;11062:2:14;1848:74:3;;;11044:21:14;11101:2;11081:18;;;11074:30;11140:34;11120:18;;;11113:62;-1:-1:-1;;;11191:18:14;;;11184:40;11241:19;;1848:74:3;11034:232:14;1848:74:3;-1:-1:-1;;;;;;1939:16:3;;;;;:9;:16;;;;;;;1757:205::o;1574:101:11:-;1014:6;;-1:-1:-1;;;;;1014:6:11;633:10:1;1154:23:11;1146:68;;;;-1:-1:-1;;;1146:68:11;;;;;;;:::i;:::-;1638:30:::1;1665:1;1638:18;:30::i;:::-;1574:101::o:0;2478:102:3:-;2534:13;2566:7;2559:14;;;;;:::i;434:590:5:-;1647:1:12;2228:7;;:19;;2220:63;;;;-1:-1:-1;;;2220:63:12;;15426:2:14;2220:63:12;;;15408:21:14;15465:2;15445:18;;;15438:30;15504:33;15484:18;;;15477:61;15555:18;;2220:63:12;15398:181:14;2220:63:12;1647:1;2358:7;:18;532:13:5::1;::::0;514:15:::1;:31;506:63;;;::::0;-1:-1:-1;;;506:63:5;;13845:2:14;506:63:5::1;::::0;::::1;13827:21:14::0;13884:2;13864:18;;;13857:30;-1:-1:-1;;;13903:18:14;;;13896:49;13962:18;;506:63:5::1;13817:169:14::0;506:63:5::1;598:1;587:8;:12;579:76;;;::::0;-1:-1:-1;;;579:76:5;;6697:2:14;579:76:5::1;::::0;::::1;6679:21:14::0;6736:2;6716:18;;;6709:30;6775:34;6755:18;;;6748:62;-1:-1:-1;;;6826:18:14;;;6819:49;6885:19;;579:76:5::1;6669:241:14::0;579:76:5::1;250:4;689:8;673:13;1588:10:4::0;:17;;1501:111;673:13:5::1;:24;;;;:::i;:::-;:38;;665:93;;;::::0;-1:-1:-1;;;665:93:5;;11883:2:14;665:93:5::1;::::0;::::1;11865:21:14::0;11922:2;11902:18;;;11895:30;11961:34;11941:18;;;11934:62;-1:-1:-1;;;12012:18:14;;;12005:40;12062:19;;665:93:5::1;11855:232:14::0;665:93:5::1;768:14;798:8;785:10;;:21;;;;:::i;:::-;768:38;;837:6;824:9;:19;;816:49;;;::::0;-1:-1:-1;;;816:49:5;;10290:2:14;816:49:5::1;::::0;::::1;10272:21:14::0;10329:2;10309:18;;;10302:30;-1:-1:-1;;;10348:18:14;;;10341:48;10406:18;;816:49:5::1;10262:168:14::0;816:49:5::1;880:9;875:143;899:8;895:1;:12;875:143;;;928:15;946:13;1588:10:4::0;:17;;1501:111;946:13:5::1;:17;::::0;962:1:::1;946:17;:::i;:::-;928:35;;977:30;987:10;999:7;977:9;:30::i;:::-;-1:-1:-1::0;909:3:5;::::1;::::0;::::1;:::i;:::-;;;;875:143;;;-1:-1:-1::0;;1604:1:12;2531:7;:22;-1:-1:-1;434:590:5:o;4112:153:3:-;4206:52;633:10:1;4239:8:3;4249;4206:18;:52::i;5197:320::-;5366:41;633:10:1;5399:7:3;5366:18;:41::i;:::-;5358:103;;;;-1:-1:-1;;;5358:103:3;;;;;;;:::i;:::-;5471:39;5485:4;5491:2;5495:7;5504:5;5471:13;:39::i;:::-;5197:320;;;;:::o;1030:356:5:-;7054:4:3;7077:16;;;:7;:16;;;;;;1103:13:5;;-1:-1:-1;;;;;7077:16:3;1128:75:5;;;;-1:-1:-1;;;1128:75:5;;13429:2:14;1128:75:5;;;13411:21:14;13468:2;13448:18;;;13441:30;13507:34;13487:18;;;13480:62;-1:-1:-1;;;13558:18:14;;;13551:45;13613:19;;1128:75:5;13401:237:14;1128:75:5;1213:18;1234:10;:8;:10::i;:::-;1213:31;;1254:17;1299:4;1305:18;:7;:16;:18::i;:::-;1282:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1254:71;;1366:3;1349:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;1335:44;;;;1030:356;;;:::o;1824:198:11:-;1014:6;;-1:-1:-1;;;;;1014:6:11;633:10:1;1154:23:11;1146:68;;;;-1:-1:-1;;;1146:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1912:22:11;::::1;1904:73;;;::::0;-1:-1:-1;;;1904:73:11;;7948:2:14;1904:73:11::1;::::0;::::1;7930:21:14::0;7987:2;7967:18;;;7960:30;8026:34;8006:18;;;7999:62;-1:-1:-1;;;8077:18:14;;;8070:36;8123:19;;1904:73:11::1;7920:228:14::0;1904:73:11::1;1987:28;2006:8;1987:18;:28::i;:::-;1824:198:::0;:::o;1398:300:3:-;1500:4;-1:-1:-1;;;;;;1535:40:3;;-1:-1:-1;;;1535:40:3;;:104;;-1:-1:-1;;;;;;;1591:48:3;;-1:-1:-1;;;1591:48:3;1535:104;:156;;;-1:-1:-1;;;;;;;;;;838:40:2;;;1655:36:3;730:155:2;10998:171:3;11072:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11072:29:3;-1:-1:-1;;;;;11072:29:3;;;;;;;;:24;;11125:23;11072:24;11125:14;:23::i;:::-;-1:-1:-1;;;;;11116:46:3;;;;;;;;;;;10998:171;;:::o;7272:344::-;7365:4;7077:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7077:16:3;7381:73;;;;-1:-1:-1;;;7381:73:3;;9877:2:14;7381:73:3;;;9859:21:14;9916:2;9896:18;;;9889:30;9955:34;9935:18;;;9928:62;-1:-1:-1;;;10006:18:14;;;9999:42;10058:19;;7381:73:3;9849:234:14;7381:73:3;7464:13;7480:23;7495:7;7480:14;:23::i;:::-;7464:39;;7532:5;-1:-1:-1;;;;;7521:16:3;:7;-1:-1:-1;;;;;7521:16:3;;:52;;;-1:-1:-1;;;;;;4451:25:3;;;4428:4;4451:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7541:32;7521:87;;;;7601:7;-1:-1:-1;;;;;7577:31:3;:20;7589:7;7577:11;:20::i;:::-;-1:-1:-1;;;;;7577:31:3;;7521:87;7513:96;7272:344;-1:-1:-1;;;;7272:344:3:o;10282:605::-;10436:4;-1:-1:-1;;;;;10409:31:3;:23;10424:7;10409:14;:23::i;:::-;-1:-1:-1;;;;;10409:31:3;;10401:81;;;;-1:-1:-1;;;10401:81:3;;8355:2:14;10401:81:3;;;8337:21:14;8394:2;8374:18;;;8367:30;8433:34;8413:18;;;8406:62;-1:-1:-1;;;8484:18:14;;;8477:35;8529:19;;10401:81:3;8327:227:14;10401:81:3;-1:-1:-1;;;;;10500:16:3;;10492:65;;;;-1:-1:-1;;;10492:65:3;;9118:2:14;10492:65:3;;;9100:21:14;9157:2;9137:18;;;9130:30;9196:34;9176:18;;;9169:62;-1:-1:-1;;;9247:18:14;;;9240:34;9291:19;;10492:65:3;9090:226:14;10492:65:3;10568:39;10589:4;10595:2;10599:7;10568:20;:39::i;:::-;10669:29;10686:1;10690:7;10669:8;:29::i;:::-;-1:-1:-1;;;;;10709:15:3;;;;;;:9;:15;;;;;:20;;10728:1;;10709:15;:20;;10728:1;;10709:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10739:13:3;;;;;;:9;:13;;;;;:18;;10756:1;;10739:13;:18;;10756:1;;10739:18;:::i;:::-;;;;-1:-1:-1;;10767:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10767:21:3;-1:-1:-1;;;;;10767:21:3;;;;;;;;;10804:27;;10767:16;;10804:27;;;;;;;3366:401;;;:::o;2176:187:11:-;2268:6;;;-1:-1:-1;;;;;2284:17:11;;;-1:-1:-1;;;;;;2284:17:11;;;;;;;2316:40;;2268:6;;;2284:17;2268:6;;2316:40;;2249:16;;2316:40;2176:187;;:::o;7946:108:3:-;8021:26;8031:2;8035:7;8021:26;;;;;;;;;;;;:9;:26::i;11304:307::-;11454:8;-1:-1:-1;;;;;11445:17:3;:5;-1:-1:-1;;;;;11445:17:3;;;11437:55;;;;-1:-1:-1;;;11437:55:3;;9523:2:14;11437:55:3;;;9505:21:14;9562:2;9542:18;;;9535:30;9601:27;9581:18;;;9574:55;9646:18;;11437:55:3;9495:175:14;11437:55:3;-1:-1:-1;;;;;11502:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11502:46:3;;;;;;;;;;11563:41;;6219::14;;;11563::3;;6192:18:14;11563:41:3;;;;;;;11304:307;;;:::o;6379:::-;6530:28;6540:4;6546:2;6550:7;6530:9;:28::i;:::-;6576:48;6599:4;6605:2;6609:7;6618:5;6576:22;:48::i;:::-;6568:111;;;;-1:-1:-1;;;6568:111:3;;;;;;;:::i;1392:115:5:-;1452:13;1484:16;1477:23;;;;;:::i;242:703:13:-;298:13;515:10;511:51;;-1:-1:-1;;541:10:13;;;;;;;;;;;;-1:-1:-1;;;541:10:13;;;;;242:703::o;511:51::-;586:5;571:12;625:75;632:9;;625:75;;657:8;;;;:::i;:::-;;-1:-1:-1;679:10:13;;-1:-1:-1;687:2:13;679:10;;:::i;:::-;;;625:75;;;709:19;741:6;731:17;;;;;;-1:-1:-1;;;731:17:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;731:17:13;;709:39;;758:150;765:10;;758:150;;791:11;801:1;791:11;;:::i;:::-;;-1:-1:-1;859:10:13;867:2;859:5;:10;:::i;:::-;846:24;;:2;:24;:::i;:::-;833:39;;816:6;823;816:14;;;;;;-1:-1:-1;;;816:14:13;;;;;;;;;;;;:56;-1:-1:-1;;;;;816:56:13;;;;;;;;-1:-1:-1;886:11:13;895:2;886:11;;:::i;:::-;;;758:150;;2510:572:4;-1:-1:-1;;;;;2709:18:4;;2705:183;;2743:40;2775:7;3891:10;:17;;3864:24;;;;:15;:24;;;;;:44;;;3918:24;;;;;;;;;;;;3788:161;2743:40;2705:183;;;2812:2;-1:-1:-1;;;;;2804:10:4;:4;-1:-1:-1;;;;;2804:10:4;;2800:88;;2830:47;2863:4;2869:7;2830:32;:47::i;:::-;-1:-1:-1;;;;;2901:16:4;;2897:179;;2933:45;2970:7;2933:36;:45::i;2897:179::-;3005:4;-1:-1:-1;;;;;2999:10:4;:2;-1:-1:-1;;;;;2999:10:4;;2995:81;;3025:40;3053:2;3057:7;3025:27;:40::i;8275:311:3:-;8400:18;8406:2;8410:7;8400:5;:18::i;:::-;8449:54;8480:1;8484:2;8488:7;8497:5;8449:22;:54::i;:::-;8428:151;;;;-1:-1:-1;;;8428:151:3;;;;;;;:::i;12164:778::-;12314:4;-1:-1:-1;;;;;12334:13:3;;1364:19:0;:23;12330:606:3;;12369:72;;-1:-1:-1;;;12369:72:3;;-1:-1:-1;;;;;12369:36:3;;;;;:72;;633:10:1;;12420:4:3;;12426:7;;12435:5;;12369:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12369:72:3;;;;;;;;-1:-1:-1;;12369:72:3;;;;;;;;;;;;:::i;:::-;;;12365:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12608:13:3;;12604:266;;12650:60;;-1:-1:-1;;;12650:60:3;;;;;;;:::i;12604:266::-;12822:6;12816:13;12807:6;12803:2;12799:15;12792:38;12365:519;-1:-1:-1;;;;;;12491:51:3;-1:-1:-1;;;12491:51:3;;-1:-1:-1;12484:58:3;;12330:606;-1:-1:-1;12921:4:3;12164:778;;;;;;:::o;4566:970:4:-;4828:22;4878:1;4853:22;4870:4;4853:16;:22::i;:::-;:26;;;;:::i;:::-;4889:18;4910:26;;;:17;:26;;;;;;4828:51;;-1:-1:-1;5040:28:4;;;5036:323;;-1:-1:-1;;;;;5106:18:4;;5084:19;5106:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5155:30;;;;;;:44;;;5271:30;;:17;:30;;;;;:43;;;5036:323;-1:-1:-1;5452:26:4;;;;:17;:26;;;;;;;;5445:33;;;-1:-1:-1;;;;;5495:18:4;;;;;:12;:18;;;;;:34;;;;;;;5488:41;4566:970::o;5824:1061::-;6098:10;:17;6073:22;;6098:21;;6118:1;;6098:21;:::i;:::-;6129:18;6150:24;;;:15;:24;;;;;;6518:10;:26;;6073:46;;-1:-1:-1;6150:24:4;;6073:46;;6518:26;;;;-1:-1:-1;;;6518:26:4;;;;;;;;;;;;;;;;;6496:48;;6580:11;6555:10;6566;6555:22;;;;;;-1:-1:-1;;;6555:22:4;;;;;;;;;;;;;;;;;;;;:36;;;;6659:28;;;:15;:28;;;;;;;:41;;;6828:24;;;;;6821:31;6862:10;:16;;;;;-1:-1:-1;;;6862:16:4;;;;;;;;;;;;;;;;;;;;;;;;;;5824:1061;;;;:::o;3376:217::-;3460:14;3477:20;3494:2;3477:16;:20::i;:::-;-1:-1:-1;;;;;3507:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3551:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3376:217:4:o;8908:427:3:-;-1:-1:-1;;;;;8987:16:3;;8979:61;;;;-1:-1:-1;;;8979:61:3;;12294:2:14;8979:61:3;;;12276:21:14;;;12313:18;;;12306:30;12372:34;12352:18;;;12345:62;12424:18;;8979:61:3;12266:182:14;8979:61:3;7054:4;7077:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7077:16:3;:30;9050:58;;;;-1:-1:-1;;;9050:58:3;;8761:2:14;9050:58:3;;;8743:21:14;8800:2;8780:18;;;8773:30;8839;8819:18;;;8812:58;8887:18;;9050:58:3;8733:178:14;9050:58:3;9119:45;9148:1;9152:2;9156:7;9119:20;:45::i;:::-;-1:-1:-1;;;;;9175:13:3;;;;;;:9;:13;;;;;:18;;9192:1;;9175:13;:18;;9192:1;;9175:18;:::i;:::-;;;;-1:-1:-1;;9203:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9203:21:3;-1:-1:-1;;;;;9203:21:3;;;;;;;;9240:33;;9203:16;;;9240:33;;9203:16;;9240:33;1933:37:5::1;1224:1:11;1835:142:5:o:0;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:14;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:14;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:14;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;:::-;979:39;898:126;-1:-1:-1;;;898:126:14:o;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:14;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:14:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:14;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:14;;4068:120;-1:-1:-1;4068:120:14:o;4193:257::-;4234:3;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:14;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:14:o;4455:470::-;4634:3;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4804:13;;4763:16;;;;4826:57;4804:13;4763:16;4860:4;4848:17;;4826:57;:::i;:::-;4899:20;;4642:283;-1:-1:-1;;;;4642:283:14:o;4930:443::-;5162:3;5200:6;5194:13;5216:53;5262:6;5257:3;5250:4;5242:6;5238:17;5216:53;:::i;:::-;-1:-1:-1;;;5291:16:14;;5316:22;;;-1:-1:-1;5365:1:14;5354:13;;5170:203;-1:-1:-1;5170:203:14:o;5586:488::-;-1:-1:-1;;;;;5855:15:14;;;5837:34;;5907:15;;5902:2;5887:18;;5880:43;5954:2;5939:18;;5932:34;;;6002:3;5997:2;5982:18;;5975:31;;;5780:4;;6023:45;;6048:19;;6040:6;6023:45;:::i;:::-;6015:53;5789:285;-1:-1:-1;;;;;;5789:285:14:o;6271:219::-;6420:2;6409:9;6402:21;6383:4;6440:44;6480:2;6469:9;6465:18;6457:6;6440:44;:::i;7327:414::-;7529:2;7511:21;;;7568:2;7548:18;;;7541:30;7607:34;7602:2;7587:18;;7580:62;-1:-1:-1;;;7673:2:14;7658:18;;7651:48;7731:3;7716:19;;7501:240::o;12866:356::-;13068:2;13050:21;;;13087:18;;;13080:30;13146:34;13141:2;13126:18;;13119:62;13213:2;13198:18;;13040:182::o;14393:413::-;14595:2;14577:21;;;14634:2;14614:18;;;14607:30;14673:34;14668:2;14653:18;;14646:62;-1:-1:-1;;;14739:2:14;14724:18;;14717:47;14796:3;14781:19;;14567:239::o;15766:128::-;15806:3;15837:1;15833:6;15830:1;15827:13;15824:2;;;15843:18;;:::i;:::-;-1:-1:-1;15879:9:14;;15814:80::o;15899:120::-;15939:1;15965;15955:2;;15970:18;;:::i;:::-;-1:-1:-1;16004:9:14;;15945:74::o;16024:168::-;16064:7;16130:1;16126;16122:6;16118:14;16115:1;16112:21;16107:1;16100:9;16093:17;16089:45;16086:2;;;16137:18;;:::i;:::-;-1:-1:-1;16177:9:14;;16076:116::o;16197:125::-;16237:4;16265:1;16262;16259:8;16256:2;;;16270:18;;:::i;:::-;-1:-1:-1;16307:9:14;;16246:76::o;16327:258::-;16399:1;16409:113;16423:6;16420:1;16417:13;16409:113;;;16499:11;;;16493:18;16480:11;;;16473:39;16445:2;16438:10;16409:113;;;16540:6;16537:1;16534:13;16531:2;;;-1:-1:-1;;16575:1:14;16557:16;;16550:27;16380:205::o;16590:380::-;16669:1;16665:12;;;;16712;;;16733:2;;16787:4;16779:6;16775:17;16765:27;;16733:2;16840;16832:6;16829:14;16809:18;16806:38;16803:2;;;16886:10;16881:3;16877:20;16874:1;16867:31;16921:4;16918:1;16911:15;16949:4;16946:1;16939:15;16803:2;;16645:325;;;:::o;16975:135::-;17014:3;-1:-1:-1;;17035:17:14;;17032:2;;;17055:18;;:::i;:::-;-1:-1:-1;17102:1:14;17091:13;;17022:88::o;17115:112::-;17147:1;17173;17163:2;;17178:18;;:::i;:::-;-1:-1:-1;17212:9:14;;17153:74::o;17232:127::-;17293:10;17288:3;17284:20;17281:1;17274:31;17324:4;17321:1;17314:15;17348:4;17345:1;17338:15;17364:127;17425:10;17420:3;17416:20;17413:1;17406:31;17456:4;17453:1;17446:15;17480:4;17477:1;17470:15;17496:127;17557:10;17552:3;17548:20;17545:1;17538:31;17588:4;17585:1;17578:15;17612:4;17609:1;17602:15;17628:131;-1:-1:-1;;;;;;17702:32:14;;17692:43;;17682:2;;17749:1;17746;17739:12

Swarm Source

ipfs://7184fc64a22f7438ccbc25ad4eb50aa2a8ec5ef7a419e35b67a78afaf4ae8cf2
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.