ETH Price: $2,603.35 (-0.51%)

ShibaInuSpace (SIS)
 

Overview

TokenID

12

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
ShibaInuSpace

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-17
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

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

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


pragma solidity ^0.8.0;


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

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

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

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

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


pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {size := extcodesize(account)}
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success,) = recipient.call{value : amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this;
        // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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


pragma solidity ^0.8.0;

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

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

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

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

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

}

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


pragma solidity ^0.8.0;


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

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


pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


pragma solidity ^0.8.0;

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

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

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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;



/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}


interface IWETH {
    function deposit() external payable;

    function transfer(address to, uint value) external returns (bool);

    function withdraw(uint) external;
}


interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

    function balanceOf(address owner) external view returns (uint);

    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);

    function transfer(address to, uint value) external returns (bool);

    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);

    function burn(address to) external returns (uint amount0, uint amount1);

    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

library UniswapV2Library {
    using SafeMath for uint;

    // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) {
        require(amountIn > 0, 'UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        uint amountInWithFee = amountIn.mul(997);
        uint numerator = amountInWithFee.mul(reserveOut);
        uint denominator = reserveIn.mul(1000).add(amountInWithFee);
        amountOut = numerator / denominator;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: contracts/ShibaInuSpace.sol

pragma solidity ^0.8.0;


contract ShibaInuSpace is ERC721Enumerable, ERC721URIStorage {

    address public immutable owner;
    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public price = 1 ether / 50;
    bool public saleEnabled;
    uint256 private counter = 1;
    uint256 public shibasMinted;
    string private _baseTokenURI;

    event ShibaInuBought(address buyer, uint256 shibasBought, uint256[10] shibaIndexes);

    // solhint-disable-next-line var-name-mixedcase
    IWETH public immutable WETH;

    // solhint-disable-next-line var-name-mixedcase
    IUniswapV2Pair public immutable PAIR;

    constructor(string memory name, string memory symbol) ERC721(name, symbol) {
        owner = msg.sender;
        _baseTokenURI = "ipfs://QmV7gxLcZ537FtXWhbbwGReJsHi2AqPBzpQUVFkmDSpWxb/";
        saleEnabled = true;

        WETH = IWETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
        PAIR = IUniswapV2Pair(0xCF6dAAB95c476106ECa715D48DE4b13287ffDEAa); // ShibaSwap WETH-SHIB Pair
    }

    function baseURI() public view returns (string memory) {
        return _baseTokenURI;
    }

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
        return super.tokenURI(tokenId);
    }

    function buy(uint256 amountToBuy) public payable {
        require(saleEnabled, "Sale has ended");
        require(amountToBuy > 0 && amountToBuy <= 10, "Invalid amount");

        uint256 amount = msg.value;
        require(amount == price * amountToBuy, "Invalid amount of ether for amount to buy");

        uint256[10] memory tokenIdsToMint;
        uint256 tokensToMint;
        uint256 i = counter;

        while (tokensToMint < amountToBuy) {
            if (counter > MAX_SUPPLY) {
                saleEnabled = false;
                payable(msg.sender).transfer((amountToBuy - tokensToMint) * price);
                break;
            }
            if (!_exists(i)) {
                tokenIdsToMint[tokensToMint] = i;
                tokensToMint++;
            }
            counter = i++;
        }

        emit ShibaInuBought(msg.sender, tokensToMint, tokenIdsToMint);

        shibasMinted += tokensToMint;
        for (uint256 j = 0; j < tokensToMint; j++) {
            _mint(msg.sender, tokenIdsToMint[j]);
        }

        buySHIB(amount / 2, msg.sender);
    }

    function withdraw() public {
        require(msg.sender == owner, "Only owner can withdraw");
        payable(msg.sender).transfer(address(this).balance);
    }

    function setPrice(uint256 to) public {
        require(msg.sender == owner, "Only owner can set prices");
        price = to;
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev See {ERC721URIStorage}.
     */
    function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function buySHIB(uint256 amountIn, address to) internal returns (uint256 amountOut) {

        (uint256 reservesETH, uint256 reservesOther, bool isWETHPairToken0) = _getReserves();

        amountOut = UniswapV2Library.getAmountOut(
            amountIn,
            reservesETH,
            reservesOther
        );

        // Convert sent ETH to wrapped ETH and assert successful transfer to pair
        IWETH(WETH).deposit{value : amountIn}();
        assert(IWETH(WETH).transfer(address(PAIR), amountIn));

        (uint256 amount0Out, uint256 amount1Out) =
        isWETHPairToken0 ? (uint256(0), amountOut) : (amountOut, uint256(0));
        PAIR.swap(amount0Out, amount1Out, to, new bytes(0));

        return amountOut;
    }


    function _getReserves()
    internal
    view
    returns (
        uint256 reservesETH,
        uint256 reservesOther,
        bool isWETHPairToken0
    )
    {
        (uint256 reserves0, uint256 reserves1,) = PAIR.getReserves();
        isWETHPairToken0 = PAIR.token0() == address(WETH);
        return
        isWETHPairToken0
        ? (reserves0, reserves1, isWETHPairToken0)
        : (reserves1, reserves0, isWETHPairToken0);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"shibasBought","type":"uint256"},{"indexed":false,"internalType":"uint256[10]","name":"shibaIndexes","type":"uint256[10]"}],"name":"ShibaInuBought","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":"PAIR","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"contract IWETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToBuy","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"saleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"to","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shibasMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405266470de4df820000600b556001600d553480156200002157600080fd5b5060405162002b1938038062002b1983398101604081905262000044916200025b565b8151829082906200005d9060009060208501906200010a565b508051620000739060019060208401906200010a565b50505033606090811b608052604080519182019052603680825262002ae360208301398051620000ac91600f916020909101906200010a565b5050600c805460ff19166001179055507fc02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000060a0527fcf6daab95c476106eca715d48de4b13287ffdeaa00000000000000000000000060c05262000315565b8280546200011890620002c2565b90600052602060002090601f0160209004810192826200013c576000855562000187565b82601f106200015757805160ff191683800117855562000187565b8280016001018555821562000187579182015b82811115620001875782518255916020019190600101906200016a565b506200019592915062000199565b5090565b5b808211156200019557600081556001016200019a565b600082601f830112620001c1578081fd5b81516001600160401b0380821115620001de57620001de620002ff565b6040516020601f8401601f1916820181018381118382101715620002065762000206620002ff565b60405283825285840181018710156200021d578485fd5b8492505b8383101562000240578583018101518284018201529182019162000221565b838311156200025157848185840101525b5095945050505050565b600080604083850312156200026e578182fd5b82516001600160401b038082111562000285578384fd5b6200029386838701620001b0565b93506020850151915080821115620002a9578283fd5b50620002b885828601620001b0565b9150509250929050565b600281046001821680620002d757607f821691505b60208210811415620002f957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160601c60c05160601c6127566200038d600039600081816109a2015281816111d8015281816112ac0152818161151601526115e80152600081816109c601528181611122015281816111a801526115be0152600081816106d90152818161084e015261087b01526127566000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063ace3a8a71161008a578063bd43abc711610064578063bd43abc714610447578063c87b56dd1461045c578063d96a094a1461047c578063e985e9c51461048f5761019c565b8063ace3a8a7146103fd578063ad5c464814610412578063b88d4fde146104275761019c565b806391b7f5ed116100c657806391b7f5ed1461039357806395d89b41146103b3578063a035b1fe146103c8578063a22cb465146103dd5761019c565b806370a082311461034957806371b9b646146103695780638da5cb5b1461037e5761019c565b80632f745c591161015957806342842e0e1161013357806342842e0e146102d45780634f6ccce7146102f45780636352211e146103145780636c0360eb146103345761019c565b80632f745c591461028a57806332cb6b0c146102aa5780633ccfd60b146102bf5761019c565b806301ffc9a7146101a157806306fdde03146101d7578063081812fc146101f9578063095ea7b31461022657806318160ddd1461024857806323b872dd1461026a575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611d3e565b6104af565b6040516101ce9190611eec565b60405180910390f35b3480156101e357600080fd5b506101ec6104c2565b6040516101ce9190611ef7565b34801561020557600080fd5b50610219610214366004611dc4565b610554565b6040516101ce9190611e37565b34801561023257600080fd5b50610246610241366004611cf7565b6105a0565b005b34801561025457600080fd5b5061025d610638565b6040516101ce9190612577565b34801561027657600080fd5b50610246610285366004611bba565b61063e565b34801561029657600080fd5b5061025d6102a5366004611cf7565b610676565b3480156102b657600080fd5b5061025d6106c8565b3480156102cb57600080fd5b506102466106ce565b3480156102e057600080fd5b506102466102ef366004611bba565b610745565b34801561030057600080fd5b5061025d61030f366004611dc4565b610760565b34801561032057600080fd5b5061021961032f366004611dc4565b6107bb565b34801561034057600080fd5b506101ec6107f0565b34801561035557600080fd5b5061025d610364366004611b4a565b6107ff565b34801561037557600080fd5b506101c1610843565b34801561038a57600080fd5b5061021961084c565b34801561039f57600080fd5b506102466103ae366004611dc4565b610870565b3480156103bf57600080fd5b506101ec6108bd565b3480156103d457600080fd5b5061025d6108cc565b3480156103e957600080fd5b506102466103f8366004611cca565b6108d2565b34801561040957600080fd5b506102196109a0565b34801561041e57600080fd5b506102196109c4565b34801561043357600080fd5b50610246610442366004611bfa565b6109e8565b34801561045357600080fd5b5061025d610a27565b34801561046857600080fd5b506101ec610477366004611dc4565b610a2d565b61024661048a366004611dc4565b610a38565b34801561049b57600080fd5b506101c16104aa366004611b82565b610c40565b60006104ba82610c6e565b90505b919050565b6060600080546104d19061263b565b80601f01602080910402602001604051908101604052809291908181526020018280546104fd9061263b565b801561054a5780601f1061051f5761010080835404028352916020019161054a565b820191906000526020600020905b81548152906001019060200180831161052d57829003601f168201915b5050505050905090565b600061055f82610c93565b6105845760405162461bcd60e51b815260040161057b9061236a565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105ab826107bb565b9050806001600160a01b0316836001600160a01b031614156105df5760405162461bcd60e51b815260040161057b9061244e565b806001600160a01b03166105f1610cb0565b6001600160a01b0316148061060d575061060d816104aa610cb0565b6106295760405162461bcd60e51b815260040161057b906121ac565b6106338383610cb4565b505050565b60085490565b61064f610649610cb0565b82610d22565b61066b5760405162461bcd60e51b815260040161057b9061248f565b610633838383610da7565b6000610681836107ff565b821061069f5760405162461bcd60e51b815260040161057b90611f0a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61271081565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146107165760405162461bcd60e51b815260040161057b90612175565b60405133904780156108fc02916000818181858888f19350505050158015610742573d6000803e3d6000fd5b50565b610633838383604051806020016040528060008152506109e8565b600061076a610638565b82106107885760405162461bcd60e51b815260040161057b906124e0565b600882815481106107a957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104ba5760405162461bcd60e51b815260040161057b90612253565b6060600f80546104d19061263b565b60006001600160a01b0382166108275760405162461bcd60e51b815260040161057b90612209565b506001600160a01b031660009081526003602052604090205490565b600c5460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146108b85760405162461bcd60e51b815260040161057b90611f55565b600b55565b6060600180546104d19061263b565b600b5481565b6108da610cb0565b6001600160a01b0316826001600160a01b0316141561090b5760405162461bcd60e51b815260040161057b906120f2565b8060056000610918610cb0565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561095c610cb0565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109949190611eec565b60405180910390a35050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6109f96109f3610cb0565b83610d22565b610a155760405162461bcd60e51b815260040161057b9061248f565b610a2184848484610ed4565b50505050565b600e5481565b60606104ba82610f07565b600c5460ff16610a5a5760405162461bcd60e51b815260040161057b90612086565b600081118015610a6b5750600a8111155b610a875760405162461bcd60e51b815260040161057b90612015565b600b543490610a979083906125d9565b8114610ab55760405162461bcd60e51b815260040161057b9061203d565b610abd611b14565b600d546000905b84821015610b8557612710600d541115610b2d57600c805460ff19169055600b5433906108fc90610af585896125f8565b610aff91906125d9565b6040518115909202916000818181858888f19350505050158015610b27573d6000803e3d6000fd5b50610b85565b610b3681610c93565b610b6e57808383600a8110610b5b57634e487b7160e01b600052603260045260246000fd5b602002015281610b6a81612676565b9250505b80610b7881612676565b9150600d81905550610ac4565b7fc8a25bb98707ba8fb50621a7d5f0ab0d8e41988ce636225addf0e279525504e6338385604051610bb893929190611ea1565b60405180910390a181600e6000828254610bd291906125ad565b90915550600090505b82811015610c2357610c11338583600a8110610c0757634e487b7160e01b600052603260045260246000fd5b6020020151611020565b80610c1b81612676565b915050610bdb565b50610c38610c326002866125c5565b336110ff565b505050505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b0319821663780e9d6360e01b14806104ba57506104ba82611323565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ce9826107bb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610d2d82610c93565b610d495760405162461bcd60e51b815260040161057b90612129565b6000610d54836107bb565b9050806001600160a01b0316846001600160a01b03161480610d8f5750836001600160a01b0316610d8484610554565b6001600160a01b0316145b80610d9f5750610d9f8185610c40565b949350505050565b826001600160a01b0316610dba826107bb565b6001600160a01b031614610de05760405162461bcd60e51b815260040161057b906123b6565b6001600160a01b038216610e065760405162461bcd60e51b815260040161057b906120ae565b610e11838383611363565b610e1c600082610cb4565b6001600160a01b0383166000908152600360205260408120805460019290610e459084906125f8565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e739084906125ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610edf848484610da7565b610eeb8484848461136e565b610a215760405162461bcd60e51b815260040161057b90611f8c565b6060610f1282610c93565b610f2e5760405162461bcd60e51b815260040161057b90612319565b6000828152600a602052604081208054610f479061263b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f739061263b565b8015610fc05780601f10610f9557610100808354040283529160200191610fc0565b820191906000526020600020905b815481529060010190602001808311610fa357829003601f168201915b505050505090506000610fd16107f0565b9050805160001415610fe5575090506104bd565b815115611017578082604051602001610fff929190611e08565b604051602081830303815290604052925050506104bd565b610d9f84611489565b6001600160a01b0382166110465760405162461bcd60e51b815260040161057b906122e4565b61104f81610c93565b1561106c5760405162461bcd60e51b815260040161057b90611fde565b61107860008383611363565b6001600160a01b03821660009081526003602052604081208054600192906110a19084906125ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008060008061110d61150c565b92509250925061111e8684846116a1565b93507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0876040518263ffffffff1660e01b81526004016000604051808303818588803b15801561117b57600080fd5b505af115801561118f573d6000803e3d6000fd5b505060405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016935063a9059cbb925061120291507f0000000000000000000000000000000000000000000000000000000000000000908a90600401611e88565b602060405180830381600087803b15801561121c57600080fd5b505af1158015611230573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112549190611d22565b61126e57634e487b7160e01b600052600160045260246000fd5b6000808261127e57856000611282565b6000865b6040805160008152602081019182905263022c0d9f60e01b90915291935091506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063022c0d9f906112e690859085908c9060248101612580565b600060405180830381600087803b15801561130057600080fd5b505af1158015611314573d6000803e3d6000fd5b50505050505050505092915050565b60006001600160e01b031982166380ac58cd60e01b148061135457506001600160e01b03198216635b5e139f60e01b145b806104ba57506104ba8261173b565b610633838383611754565b6000611382846001600160a01b03166117dd565b1561147e57836001600160a01b031663150b7a0261139e610cb0565b8786866040518563ffffffff1660e01b81526004016113c09493929190611e4b565b602060405180830381600087803b1580156113da57600080fd5b505af192505050801561140a575060408051601f3d908101601f1916820190925261140791810190611d5a565b60015b611464573d808015611438576040519150601f19603f3d011682016040523d82523d6000602084013e61143d565b606091505b50805161145c5760405162461bcd60e51b815260040161057b90611f8c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d9f565b506001949350505050565b606061149482610c93565b6114b05760405162461bcd60e51b815260040161057b906123ff565b60006114ba6107f0565b905060008151116114da5760405180602001604052806000815250611505565b806114e4846117e3565b6040516020016114f5929190611e08565b6040516020818303038152906040525b9392505050565b60008060008060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561156d57600080fd5b505afa158015611581573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a59190611d76565b506001600160701b031691506001600160701b031691507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b15801561163f57600080fd5b505afa158015611653573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116779190611b66565b6001600160a01b03161492508261169057808284611694565b8181845b9450945094505050909192565b60008084116116c25760405162461bcd60e51b815260040161057b9061252c565b6000831180156116d25750600082115b6116ee5760405162461bcd60e51b815260040161057b9061229c565b60006116fc856103e56118fe565b9050600061170a82856118fe565b905060006117248361171e886103e86118fe565b9061190a565b905061173081836125c5565b979650505050505050565b6001600160e01b031981166301ffc9a760e01b14919050565b61175f838383610633565b6001600160a01b03831661177b5761177681611916565b61179e565b816001600160a01b0316836001600160a01b03161461179e5761179e838261195a565b6001600160a01b0382166117ba576117b5816119f7565b610633565b826001600160a01b0316826001600160a01b031614610633576106338282611ad0565b3b151590565b60608161180857506040805180820190915260018152600360fc1b60208201526104bd565b8160005b8115611832578061181c81612676565b915061182b9050600a836125c5565b915061180c565b60008167ffffffffffffffff81111561185b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611885576020820181803683370190505b5090505b8415610d9f5761189a6001836125f8565b91506118a7600a86612691565b6118b29060306125ad565b60f81b8183815181106118d557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506118f7600a866125c5565b9450611889565b600061150582846125d9565b600061150582846125ad565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611967846107ff565b61197191906125f8565b6000838152600760205260409020549091508082146119c4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a09906001906125f8565b60008381526009602052604081205460088054939450909284908110611a3f57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611a6e57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ab457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611adb836107ff565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b604051806101400160405280600a906020820280368337509192915050565b80516001600160701b03811681146104bd57600080fd5b600060208284031215611b5b578081fd5b8135611505816126e7565b600060208284031215611b77578081fd5b8151611505816126e7565b60008060408385031215611b94578081fd5b8235611b9f816126e7565b91506020830135611baf816126e7565b809150509250929050565b600080600060608486031215611bce578081fd5b8335611bd9816126e7565b92506020840135611be9816126e7565b929592945050506040919091013590565b60008060008060808587031215611c0f578081fd5b8435611c1a816126e7565b9350602085810135611c2b816126e7565b935060408601359250606086013567ffffffffffffffff80821115611c4e578384fd5b818801915088601f830112611c61578384fd5b813581811115611c7357611c736126d1565b604051601f8201601f1916810185018381118282101715611c9657611c966126d1565b60405281815283820185018b1015611cac578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611cdc578182fd5b8235611ce7816126e7565b91506020830135611baf816126fc565b60008060408385031215611d09578182fd5b8235611d14816126e7565b946020939093013593505050565b600060208284031215611d33578081fd5b8151611505816126fc565b600060208284031215611d4f578081fd5b81356115058161270a565b600060208284031215611d6b578081fd5b81516115058161270a565b600080600060608486031215611d8a578283fd5b611d9384611b33565b9250611da160208501611b33565b9150604084015163ffffffff81168114611db9578182fd5b809150509250925092565b600060208284031215611dd5578081fd5b5035919050565b60008151808452611df481602086016020860161260f565b601f01601f19169290920160200192915050565b60008351611e1a81846020880161260f565b835190830190611e2e81836020880161260f565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e7e90830184611ddc565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6001600160a01b03841681526020808201849052610180820190604083018460005b600a811015611ee057815183529183019190830190600101611ec3565b50505050949350505050565b901515815260200190565b6000602082526115056020830184611ddc565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526019908201527f4f6e6c79206f776e65722063616e207365742070726963657300000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252600e908201526d125b9d985b1a5908185b5bdd5b9d60921b604082015260600190565b60208082526029908201527f496e76616c696420616d6f756e74206f6620657468657220666f7220616d6f756040820152686e7420746f2062757960b81b606082015260800190565b6020808252600e908201526d14d85b19481a185cc8195b99195960921b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526017908201527f4f6e6c79206f776e65722063616e207769746864726177000000000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526028908201527f556e697377617056324c6962726172793a20494e53554646494349454e545f4c604082015267495155494449545960c01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602b908201527f556e697377617056324c6962726172793a20494e53554646494349454e545f4960408201526a1394155517d05353d5539560aa1b606082015260800190565b90815260200190565b600085825284602083015260018060a01b038416604083015260806060830152611e7e6080830184611ddc565b600082198211156125c0576125c06126a5565b500190565b6000826125d4576125d46126bb565b500490565b60008160001904831182151516156125f3576125f36126a5565b500290565b60008282101561260a5761260a6126a5565b500390565b60005b8381101561262a578181015183820152602001612612565b83811115610a215750506000910152565b60028104600182168061264f57607f821691505b6020821081141561267057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561268a5761268a6126a5565b5060010190565b6000826126a0576126a06126bb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461074257600080fd5b801515811461074257600080fd5b6001600160e01b03198116811461074257600080fdfea2646970667358221220aabc7fd406a632b423932e04213b9ffd4381ea3873478beb6651bdca6ae7607264736f6c63430008000033697066733a2f2f516d563767784c635a35333746745857686262774752654a73486932417150427a70515556466b6d4453705778622f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d5368696261496e7553706163650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035349530000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063ace3a8a71161008a578063bd43abc711610064578063bd43abc714610447578063c87b56dd1461045c578063d96a094a1461047c578063e985e9c51461048f5761019c565b8063ace3a8a7146103fd578063ad5c464814610412578063b88d4fde146104275761019c565b806391b7f5ed116100c657806391b7f5ed1461039357806395d89b41146103b3578063a035b1fe146103c8578063a22cb465146103dd5761019c565b806370a082311461034957806371b9b646146103695780638da5cb5b1461037e5761019c565b80632f745c591161015957806342842e0e1161013357806342842e0e146102d45780634f6ccce7146102f45780636352211e146103145780636c0360eb146103345761019c565b80632f745c591461028a57806332cb6b0c146102aa5780633ccfd60b146102bf5761019c565b806301ffc9a7146101a157806306fdde03146101d7578063081812fc146101f9578063095ea7b31461022657806318160ddd1461024857806323b872dd1461026a575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611d3e565b6104af565b6040516101ce9190611eec565b60405180910390f35b3480156101e357600080fd5b506101ec6104c2565b6040516101ce9190611ef7565b34801561020557600080fd5b50610219610214366004611dc4565b610554565b6040516101ce9190611e37565b34801561023257600080fd5b50610246610241366004611cf7565b6105a0565b005b34801561025457600080fd5b5061025d610638565b6040516101ce9190612577565b34801561027657600080fd5b50610246610285366004611bba565b61063e565b34801561029657600080fd5b5061025d6102a5366004611cf7565b610676565b3480156102b657600080fd5b5061025d6106c8565b3480156102cb57600080fd5b506102466106ce565b3480156102e057600080fd5b506102466102ef366004611bba565b610745565b34801561030057600080fd5b5061025d61030f366004611dc4565b610760565b34801561032057600080fd5b5061021961032f366004611dc4565b6107bb565b34801561034057600080fd5b506101ec6107f0565b34801561035557600080fd5b5061025d610364366004611b4a565b6107ff565b34801561037557600080fd5b506101c1610843565b34801561038a57600080fd5b5061021961084c565b34801561039f57600080fd5b506102466103ae366004611dc4565b610870565b3480156103bf57600080fd5b506101ec6108bd565b3480156103d457600080fd5b5061025d6108cc565b3480156103e957600080fd5b506102466103f8366004611cca565b6108d2565b34801561040957600080fd5b506102196109a0565b34801561041e57600080fd5b506102196109c4565b34801561043357600080fd5b50610246610442366004611bfa565b6109e8565b34801561045357600080fd5b5061025d610a27565b34801561046857600080fd5b506101ec610477366004611dc4565b610a2d565b61024661048a366004611dc4565b610a38565b34801561049b57600080fd5b506101c16104aa366004611b82565b610c40565b60006104ba82610c6e565b90505b919050565b6060600080546104d19061263b565b80601f01602080910402602001604051908101604052809291908181526020018280546104fd9061263b565b801561054a5780601f1061051f5761010080835404028352916020019161054a565b820191906000526020600020905b81548152906001019060200180831161052d57829003601f168201915b5050505050905090565b600061055f82610c93565b6105845760405162461bcd60e51b815260040161057b9061236a565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105ab826107bb565b9050806001600160a01b0316836001600160a01b031614156105df5760405162461bcd60e51b815260040161057b9061244e565b806001600160a01b03166105f1610cb0565b6001600160a01b0316148061060d575061060d816104aa610cb0565b6106295760405162461bcd60e51b815260040161057b906121ac565b6106338383610cb4565b505050565b60085490565b61064f610649610cb0565b82610d22565b61066b5760405162461bcd60e51b815260040161057b9061248f565b610633838383610da7565b6000610681836107ff565b821061069f5760405162461bcd60e51b815260040161057b90611f0a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61271081565b336001600160a01b037f0000000000000000000000006bcff8ad80381540f766faab1e68e5b1e827d15816146107165760405162461bcd60e51b815260040161057b90612175565b60405133904780156108fc02916000818181858888f19350505050158015610742573d6000803e3d6000fd5b50565b610633838383604051806020016040528060008152506109e8565b600061076a610638565b82106107885760405162461bcd60e51b815260040161057b906124e0565b600882815481106107a957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104ba5760405162461bcd60e51b815260040161057b90612253565b6060600f80546104d19061263b565b60006001600160a01b0382166108275760405162461bcd60e51b815260040161057b90612209565b506001600160a01b031660009081526003602052604090205490565b600c5460ff1681565b7f0000000000000000000000006bcff8ad80381540f766faab1e68e5b1e827d15881565b336001600160a01b037f0000000000000000000000006bcff8ad80381540f766faab1e68e5b1e827d15816146108b85760405162461bcd60e51b815260040161057b90611f55565b600b55565b6060600180546104d19061263b565b600b5481565b6108da610cb0565b6001600160a01b0316826001600160a01b0316141561090b5760405162461bcd60e51b815260040161057b906120f2565b8060056000610918610cb0565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561095c610cb0565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109949190611eec565b60405180910390a35050565b7f000000000000000000000000cf6daab95c476106eca715d48de4b13287ffdeaa81565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6109f96109f3610cb0565b83610d22565b610a155760405162461bcd60e51b815260040161057b9061248f565b610a2184848484610ed4565b50505050565b600e5481565b60606104ba82610f07565b600c5460ff16610a5a5760405162461bcd60e51b815260040161057b90612086565b600081118015610a6b5750600a8111155b610a875760405162461bcd60e51b815260040161057b90612015565b600b543490610a979083906125d9565b8114610ab55760405162461bcd60e51b815260040161057b9061203d565b610abd611b14565b600d546000905b84821015610b8557612710600d541115610b2d57600c805460ff19169055600b5433906108fc90610af585896125f8565b610aff91906125d9565b6040518115909202916000818181858888f19350505050158015610b27573d6000803e3d6000fd5b50610b85565b610b3681610c93565b610b6e57808383600a8110610b5b57634e487b7160e01b600052603260045260246000fd5b602002015281610b6a81612676565b9250505b80610b7881612676565b9150600d81905550610ac4565b7fc8a25bb98707ba8fb50621a7d5f0ab0d8e41988ce636225addf0e279525504e6338385604051610bb893929190611ea1565b60405180910390a181600e6000828254610bd291906125ad565b90915550600090505b82811015610c2357610c11338583600a8110610c0757634e487b7160e01b600052603260045260246000fd5b6020020151611020565b80610c1b81612676565b915050610bdb565b50610c38610c326002866125c5565b336110ff565b505050505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b0319821663780e9d6360e01b14806104ba57506104ba82611323565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ce9826107bb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610d2d82610c93565b610d495760405162461bcd60e51b815260040161057b90612129565b6000610d54836107bb565b9050806001600160a01b0316846001600160a01b03161480610d8f5750836001600160a01b0316610d8484610554565b6001600160a01b0316145b80610d9f5750610d9f8185610c40565b949350505050565b826001600160a01b0316610dba826107bb565b6001600160a01b031614610de05760405162461bcd60e51b815260040161057b906123b6565b6001600160a01b038216610e065760405162461bcd60e51b815260040161057b906120ae565b610e11838383611363565b610e1c600082610cb4565b6001600160a01b0383166000908152600360205260408120805460019290610e459084906125f8565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e739084906125ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610edf848484610da7565b610eeb8484848461136e565b610a215760405162461bcd60e51b815260040161057b90611f8c565b6060610f1282610c93565b610f2e5760405162461bcd60e51b815260040161057b90612319565b6000828152600a602052604081208054610f479061263b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f739061263b565b8015610fc05780601f10610f9557610100808354040283529160200191610fc0565b820191906000526020600020905b815481529060010190602001808311610fa357829003601f168201915b505050505090506000610fd16107f0565b9050805160001415610fe5575090506104bd565b815115611017578082604051602001610fff929190611e08565b604051602081830303815290604052925050506104bd565b610d9f84611489565b6001600160a01b0382166110465760405162461bcd60e51b815260040161057b906122e4565b61104f81610c93565b1561106c5760405162461bcd60e51b815260040161057b90611fde565b61107860008383611363565b6001600160a01b03821660009081526003602052604081208054600192906110a19084906125ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008060008061110d61150c565b92509250925061111e8684846116a1565b93507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0876040518263ffffffff1660e01b81526004016000604051808303818588803b15801561117b57600080fd5b505af115801561118f573d6000803e3d6000fd5b505060405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216935063a9059cbb925061120291507f000000000000000000000000cf6daab95c476106eca715d48de4b13287ffdeaa908a90600401611e88565b602060405180830381600087803b15801561121c57600080fd5b505af1158015611230573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112549190611d22565b61126e57634e487b7160e01b600052600160045260246000fd5b6000808261127e57856000611282565b6000865b6040805160008152602081019182905263022c0d9f60e01b90915291935091506001600160a01b037f000000000000000000000000cf6daab95c476106eca715d48de4b13287ffdeaa169063022c0d9f906112e690859085908c9060248101612580565b600060405180830381600087803b15801561130057600080fd5b505af1158015611314573d6000803e3d6000fd5b50505050505050505092915050565b60006001600160e01b031982166380ac58cd60e01b148061135457506001600160e01b03198216635b5e139f60e01b145b806104ba57506104ba8261173b565b610633838383611754565b6000611382846001600160a01b03166117dd565b1561147e57836001600160a01b031663150b7a0261139e610cb0565b8786866040518563ffffffff1660e01b81526004016113c09493929190611e4b565b602060405180830381600087803b1580156113da57600080fd5b505af192505050801561140a575060408051601f3d908101601f1916820190925261140791810190611d5a565b60015b611464573d808015611438576040519150601f19603f3d011682016040523d82523d6000602084013e61143d565b606091505b50805161145c5760405162461bcd60e51b815260040161057b90611f8c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d9f565b506001949350505050565b606061149482610c93565b6114b05760405162461bcd60e51b815260040161057b906123ff565b60006114ba6107f0565b905060008151116114da5760405180602001604052806000815250611505565b806114e4846117e3565b6040516020016114f5929190611e08565b6040516020818303038152906040525b9392505050565b60008060008060007f000000000000000000000000cf6daab95c476106eca715d48de4b13287ffdeaa6001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561156d57600080fd5b505afa158015611581573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a59190611d76565b506001600160701b031691506001600160701b031691507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03167f000000000000000000000000cf6daab95c476106eca715d48de4b13287ffdeaa6001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b15801561163f57600080fd5b505afa158015611653573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116779190611b66565b6001600160a01b03161492508261169057808284611694565b8181845b9450945094505050909192565b60008084116116c25760405162461bcd60e51b815260040161057b9061252c565b6000831180156116d25750600082115b6116ee5760405162461bcd60e51b815260040161057b9061229c565b60006116fc856103e56118fe565b9050600061170a82856118fe565b905060006117248361171e886103e86118fe565b9061190a565b905061173081836125c5565b979650505050505050565b6001600160e01b031981166301ffc9a760e01b14919050565b61175f838383610633565b6001600160a01b03831661177b5761177681611916565b61179e565b816001600160a01b0316836001600160a01b03161461179e5761179e838261195a565b6001600160a01b0382166117ba576117b5816119f7565b610633565b826001600160a01b0316826001600160a01b031614610633576106338282611ad0565b3b151590565b60608161180857506040805180820190915260018152600360fc1b60208201526104bd565b8160005b8115611832578061181c81612676565b915061182b9050600a836125c5565b915061180c565b60008167ffffffffffffffff81111561185b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611885576020820181803683370190505b5090505b8415610d9f5761189a6001836125f8565b91506118a7600a86612691565b6118b29060306125ad565b60f81b8183815181106118d557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506118f7600a866125c5565b9450611889565b600061150582846125d9565b600061150582846125ad565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611967846107ff565b61197191906125f8565b6000838152600760205260409020549091508082146119c4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a09906001906125f8565b60008381526009602052604081205460088054939450909284908110611a3f57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611a6e57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ab457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611adb836107ff565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b604051806101400160405280600a906020820280368337509192915050565b80516001600160701b03811681146104bd57600080fd5b600060208284031215611b5b578081fd5b8135611505816126e7565b600060208284031215611b77578081fd5b8151611505816126e7565b60008060408385031215611b94578081fd5b8235611b9f816126e7565b91506020830135611baf816126e7565b809150509250929050565b600080600060608486031215611bce578081fd5b8335611bd9816126e7565b92506020840135611be9816126e7565b929592945050506040919091013590565b60008060008060808587031215611c0f578081fd5b8435611c1a816126e7565b9350602085810135611c2b816126e7565b935060408601359250606086013567ffffffffffffffff80821115611c4e578384fd5b818801915088601f830112611c61578384fd5b813581811115611c7357611c736126d1565b604051601f8201601f1916810185018381118282101715611c9657611c966126d1565b60405281815283820185018b1015611cac578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611cdc578182fd5b8235611ce7816126e7565b91506020830135611baf816126fc565b60008060408385031215611d09578182fd5b8235611d14816126e7565b946020939093013593505050565b600060208284031215611d33578081fd5b8151611505816126fc565b600060208284031215611d4f578081fd5b81356115058161270a565b600060208284031215611d6b578081fd5b81516115058161270a565b600080600060608486031215611d8a578283fd5b611d9384611b33565b9250611da160208501611b33565b9150604084015163ffffffff81168114611db9578182fd5b809150509250925092565b600060208284031215611dd5578081fd5b5035919050565b60008151808452611df481602086016020860161260f565b601f01601f19169290920160200192915050565b60008351611e1a81846020880161260f565b835190830190611e2e81836020880161260f565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e7e90830184611ddc565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6001600160a01b03841681526020808201849052610180820190604083018460005b600a811015611ee057815183529183019190830190600101611ec3565b50505050949350505050565b901515815260200190565b6000602082526115056020830184611ddc565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526019908201527f4f6e6c79206f776e65722063616e207365742070726963657300000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252600e908201526d125b9d985b1a5908185b5bdd5b9d60921b604082015260600190565b60208082526029908201527f496e76616c696420616d6f756e74206f6620657468657220666f7220616d6f756040820152686e7420746f2062757960b81b606082015260800190565b6020808252600e908201526d14d85b19481a185cc8195b99195960921b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526017908201527f4f6e6c79206f776e65722063616e207769746864726177000000000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526028908201527f556e697377617056324c6962726172793a20494e53554646494349454e545f4c604082015267495155494449545960c01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602b908201527f556e697377617056324c6962726172793a20494e53554646494349454e545f4960408201526a1394155517d05353d5539560aa1b606082015260800190565b90815260200190565b600085825284602083015260018060a01b038416604083015260806060830152611e7e6080830184611ddc565b600082198211156125c0576125c06126a5565b500190565b6000826125d4576125d46126bb565b500490565b60008160001904831182151516156125f3576125f36126a5565b500290565b60008282101561260a5761260a6126a5565b500390565b60005b8381101561262a578181015183820152602001612612565b83811115610a215750506000910152565b60028104600182168061264f57607f821691505b6020821081141561267057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561268a5761268a6126a5565b5060010190565b6000826126a0576126a06126bb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461074257600080fd5b801515811461074257600080fd5b6001600160e01b03198116811461074257600080fdfea2646970667358221220aabc7fd406a632b423932e04213b9ffd4381ea3873478beb6651bdca6ae7607264736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d5368696261496e7553706163650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035349530000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): ShibaInuSpace
Arg [1] : symbol (string): SIS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 5368696261496e75537061636500000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 5349530000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55112:4753:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58269:179;;;;;;;;;;-1:-1:-1;58269:179:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21507:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22959:221::-;;;;;;;;;;-1:-1:-1;22959:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22496:397::-;;;;;;;;;;-1:-1:-1;22496:397:0;;;;;:::i;:::-;;:::i;:::-;;34763:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23849:305::-;;;;;;;;;;-1:-1:-1;23849:305:0;;;;;:::i;:::-;;:::i;34431:256::-;;;;;;;;;;-1:-1:-1;34431:256:0;;;;;:::i;:::-;;:::i;55219:42::-;;;;;;;;;;;;;:::i;57695:163::-;;;;;;;;;;;;;:::i;24225:151::-;;;;;;;;;;-1:-1:-1;24225:151:0;;;;;:::i;:::-;;:::i;34953:233::-;;;;;;;;;;-1:-1:-1;34953:233:0;;;;;:::i;:::-;;:::i;21201:239::-;;;;;;;;;;-1:-1:-1;21201:239:0;;;;;:::i;:::-;;:::i;56129:94::-;;;;;;;;;;;;;:::i;20931:208::-;;;;;;;;;;-1:-1:-1;20931:208:0;;;;;:::i;:::-;;:::i;55310:23::-;;;;;;;;;;;;;:::i;55182:30::-;;;;;;;;;;;;;:::i;57866:134::-;;;;;;;;;;-1:-1:-1;57866:134:0;;;;;:::i;:::-;;:::i;21676:104::-;;;;;;;;;;;;;:::i;55268:35::-;;;;;;;;;;;;;:::i;23252:295::-;;;;;;;;;;-1:-1:-1;23252:295:0;;;;;:::i;:::-;;:::i;55679:36::-;;;;;;;;;;;;;:::i;55590:27::-;;;;;;;;;;;;;:::i;24447:285::-;;;;;;;;;;-1:-1:-1;24447:285:0;;;;;:::i;:::-;;:::i;55374:27::-;;;;;;;;;;;;;:::i;56408:155::-;;;;;;;;;;-1:-1:-1;56408:155:0;;;;;:::i;:::-;;:::i;56571:1116::-;;;;;;:::i;:::-;;:::i;23618:164::-;;;;;;;;;;-1:-1:-1;23618:164:0;;;;;:::i;:::-;;:::i;58269:179::-;58380:4;58404:36;58428:11;58404:23;:36::i;:::-;58397:43;;58269:179;;;;:::o;21507:100::-;21561:13;21594:5;21587:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21507:100;:::o;22959:221::-;23035:7;23063:16;23071:7;23063;:16::i;:::-;23055:73;;;;-1:-1:-1;;;23055:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23148:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23148:24:0;;22959:221::o;22496:397::-;22577:13;22593:23;22608:7;22593:14;:23::i;:::-;22577:39;;22641:5;-1:-1:-1;;;;;22635:11:0;:2;-1:-1:-1;;;;;22635:11:0;;;22627:57;;;;-1:-1:-1;;;22627:57:0;;;;;;;:::i;:::-;22721:5;-1:-1:-1;;;;;22705:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22705:21:0;;:62;;;;22730:37;22747:5;22754:12;:10;:12::i;22730:37::-;22697:154;;;;-1:-1:-1;;;22697:154:0;;;;;;;:::i;:::-;22864:21;22873:2;22877:7;22864:8;:21::i;:::-;22496:397;;;:::o;34763:113::-;34851:10;:17;34763:113;:::o;23849:305::-;24010:41;24029:12;:10;:12::i;:::-;24043:7;24010:18;:41::i;:::-;24002:103;;;;-1:-1:-1;;;24002:103:0;;;;;;;:::i;:::-;24118:28;24128:4;24134:2;24138:7;24118:9;:28::i;34431:256::-;34528:7;34564:23;34581:5;34564:16;:23::i;:::-;34556:5;:31;34548:87;;;;-1:-1:-1;;;34548:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;34653:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34431:256::o;55219:42::-;55256:5;55219:42;:::o;57695:163::-;57741:10;-1:-1:-1;;;;;57755:5:0;57741:19;;57733:55;;;;-1:-1:-1;;;57733:55:0;;;;;;;:::i;:::-;57799:51;;57807:10;;57828:21;57799:51;;;;;;;;;57828:21;57807:10;57799:51;;;;;;;;;;;;;;;;;;;;;57695:163::o;24225:151::-;24329:39;24346:4;24352:2;24356:7;24329:39;;;;;;;;;;;;:16;:39::i;34953:233::-;35028:7;35064:30;:28;:30::i;:::-;35056:5;:38;35048:95;;;;-1:-1:-1;;;35048:95:0;;;;;;;:::i;:::-;35161:10;35172:5;35161:17;;;;;;-1:-1:-1;;;35161:17:0;;;;;;;;;;;;;;;;;35154:24;;34953:233;;;:::o;21201:239::-;21273:7;21309:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21309:16:0;21344:19;21336:73;;;;-1:-1:-1;;;21336:73:0;;;;;;;:::i;56129:94::-;56169:13;56202;56195:20;;;;;:::i;20931:208::-;21003:7;-1:-1:-1;;;;;21031:19:0;;21023:74;;;;-1:-1:-1;;;21023:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21115:16:0;;;;;:9;:16;;;;;;;20931:208::o;55310:23::-;;;;;;:::o;55182:30::-;;;:::o;57866:134::-;57922:10;-1:-1:-1;;;;;57936:5:0;57922:19;;57914:57;;;;-1:-1:-1;;;57914:57:0;;;;;;;:::i;:::-;57982:5;:10;57866:134::o;21676:104::-;21732:13;21765:7;21758:14;;;;;:::i;55268:35::-;;;;:::o;23252:295::-;23367:12;:10;:12::i;:::-;-1:-1:-1;;;;;23355:24:0;:8;-1:-1:-1;;;;;23355:24:0;;;23347:62;;;;-1:-1:-1;;;23347:62:0;;;;;;;:::i;:::-;23467:8;23422:18;:32;23441:12;:10;:12::i;:::-;-1:-1:-1;;;;;23422:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23422:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23422:53:0;;;;;;;;;;;23506:12;:10;:12::i;:::-;-1:-1:-1;;;;;23491:48:0;;23530:8;23491:48;;;;;;:::i;:::-;;;;;;;;23252:295;;:::o;55679:36::-;;;:::o;55590:27::-;;;:::o;24447:285::-;24579:41;24598:12;:10;:12::i;:::-;24612:7;24579:18;:41::i;:::-;24571:103;;;;-1:-1:-1;;;24571:103:0;;;;;;;:::i;:::-;24685:39;24699:4;24705:2;24709:7;24718:5;24685:13;:39::i;:::-;24447:285;;;;:::o;55374:27::-;;;;:::o;56408:155::-;56499:13;56532:23;56547:7;56532:14;:23::i;56571:1116::-;56639:11;;;;56631:38;;;;-1:-1:-1;;;56631:38:0;;;;;;;:::i;:::-;56702:1;56688:11;:15;:36;;;;;56722:2;56707:11;:17;;56688:36;56680:63;;;;-1:-1:-1;;;56680:63:0;;;;;;;:::i;:::-;56811:5;;56773:9;;56811:19;;56819:11;;56811:19;:::i;:::-;56801:6;:29;56793:83;;;;-1:-1:-1;;;56793:83:0;;;;;;;:::i;:::-;56889:33;;:::i;:::-;56976:7;;56933:20;;56996:409;57018:11;57003:12;:26;56996:409;;;55256:5;57050:7;;:20;57046:189;;;57091:11;:19;;-1:-1:-1;;57091:19:0;;;57189:5;;57137:10;;57129:66;;57159:26;57173:12;57159:11;:26;:::i;:::-;57158:36;;;;:::i;:::-;57129:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57214:5;;57046:189;57254:10;57262:1;57254:7;:10::i;:::-;57249:117;;57316:1;57285:14;57300:12;57285:28;;;;;-1:-1:-1;;;57285:28:0;;;;;;;;;;;;:32;57336:14;;;;:::i;:::-;;;;57249:117;57390:3;;;;:::i;:::-;;;57380:7;:13;;;;56996:409;;;57422:56;57437:10;57449:12;57463:14;57422:56;;;;;;;;:::i;:::-;;;;;;;;57507:12;57491;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;57535:9:0;;-1:-1:-1;57530:106:0;57554:12;57550:1;:16;57530:106;;;57588:36;57594:10;57606:14;57621:1;57606:17;;;;;-1:-1:-1;;;57606:17:0;;;;;;;;;;;;;57588:5;:36::i;:::-;57568:3;;;;:::i;:::-;;;;57530:106;;;-1:-1:-1;57648:31:0;57656:10;57665:1;57656:6;:10;:::i;:::-;57668;57648:7;:31::i;:::-;;56571:1116;;;;;:::o;23618:164::-;-1:-1:-1;;;;;23739:25:0;;;23715:4;23739:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23618:164::o;34114:233::-;34216:4;-1:-1:-1;;;;;;34240:50:0;;-1:-1:-1;;;34240:50:0;;:99;;;34303:36;34327:11;34303:23;:36::i;26199:127::-;26264:4;26288:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26288:16:0;:30;;;26199:127::o;15873:98::-;15953:10;15873:98;:::o;30076:174::-;30151:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30151:29:0;-1:-1:-1;;;;;30151:29:0;;;;;;;;:24;;30205:23;30151:24;30205:14;:23::i;:::-;-1:-1:-1;;;;;30196:46:0;;;;;;;;;;;30076:174;;:::o;26493:348::-;26586:4;26611:16;26619:7;26611;:16::i;:::-;26603:73;;;;-1:-1:-1;;;26603:73:0;;;;;;;:::i;:::-;26687:13;26703:23;26718:7;26703:14;:23::i;:::-;26687:39;;26756:5;-1:-1:-1;;;;;26745:16:0;:7;-1:-1:-1;;;;;26745:16:0;;:51;;;;26789:7;-1:-1:-1;;;;;26765:31:0;:20;26777:7;26765:11;:20::i;:::-;-1:-1:-1;;;;;26765:31:0;;26745:51;:87;;;;26800:32;26817:5;26824:7;26800:16;:32::i;:::-;26737:96;26493:348;-1:-1:-1;;;;26493:348:0:o;29414:544::-;29539:4;-1:-1:-1;;;;;29512:31:0;:23;29527:7;29512:14;:23::i;:::-;-1:-1:-1;;;;;29512:31:0;;29504:85;;;;-1:-1:-1;;;29504:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29608:16:0;;29600:65;;;;-1:-1:-1;;;29600:65:0;;;;;;;:::i;:::-;29678:39;29699:4;29705:2;29709:7;29678:20;:39::i;:::-;29782:29;29799:1;29803:7;29782:8;:29::i;:::-;-1:-1:-1;;;;;29824:15:0;;;;;;:9;:15;;;;;:20;;29843:1;;29824:15;:20;;29843:1;;29824:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29855:13:0;;;;;;:9;:13;;;;;:18;;29872:1;;29855:13;:18;;29872:1;;29855:18;:::i;:::-;;;;-1:-1:-1;;29884:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29884:21:0;-1:-1:-1;;;;;29884:21:0;;;;;;;;;29923:27;;29884:16;;29923:27;;;;;;;29414:544;;;:::o;25614:272::-;25728:28;25738:4;25744:2;25748:7;25728:9;:28::i;:::-;25775:48;25798:4;25804:2;25808:7;25817:5;25775:22;:48::i;:::-;25767:111;;;;-1:-1:-1;;;25767:111:0;;;;;;;:::i;40711:679::-;40784:13;40818:16;40826:7;40818;:16::i;:::-;40810:78;;;;-1:-1:-1;;;40810:78:0;;;;;;;:::i;:::-;40901:23;40927:19;;;:10;:19;;;;;40901:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40957:18;40978:10;:8;:10::i;:::-;40957:31;;41070:4;41064:18;41086:1;41064:23;41060:72;;;-1:-1:-1;41111:9:0;-1:-1:-1;41104:16:0;;41060:72;41236:23;;:27;41232:108;;41311:4;41317:9;41294:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41280:48;;;;;;41232:108;41359:23;41374:7;41359:14;:23::i;28106:382::-;-1:-1:-1;;;;;28186:16:0;;28178:61;;;;-1:-1:-1;;;28178:61:0;;;;;;;:::i;:::-;28259:16;28267:7;28259;:16::i;:::-;28258:17;28250:58;;;;-1:-1:-1;;;28250:58:0;;;;;;;:::i;:::-;28321:45;28350:1;28354:2;28358:7;28321:20;:45::i;:::-;-1:-1:-1;;;;;28379:13:0;;;;;;:9;:13;;;;;:18;;28396:1;;28379:13;:18;;28396:1;;28379:18;:::i;:::-;;;;-1:-1:-1;;28408:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28408:21:0;-1:-1:-1;;;;;28408:21:0;;;;;;;;28447:33;;28408:16;;;28447:33;;28408:16;;28447:33;28106:382;;:::o;58642:754::-;58707:17;58740:19;58761:21;58784;58809:14;:12;:14::i;:::-;58739:84;;;;;;58848:117;58892:8;58915:11;58941:13;58848:29;:117::i;:::-;58836:129;;59067:4;-1:-1:-1;;;;;59061:19:0;;59089:8;59061:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;59118:45:0;;-1:-1:-1;;;59118:45:0;;-1:-1:-1;;;;;59124:4:0;59118:20;;-1:-1:-1;59118:20:0;;-1:-1:-1;59118:45:0;;-1:-1:-1;59147:4:0;;59154:8;;59118:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59111:53;;-1:-1:-1;;;59111:53:0;;;;;;;;;59178:18;59198;59229:16;:68;;59275:9;59294:1;59229:68;;;59257:1;59261:9;59229:68;59346:12;;;59356:1;59346:12;;;;;;;;;-1:-1:-1;;;59308:51:0;;;59177:120;;-1:-1:-1;59177:120:0;-1:-1:-1;;;;;;59308:4:0;:9;;;;:51;;59177:120;;;;59342:2;;59308:51;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59372:16;;;;;58642:754;;;;:::o;20583:284::-;20685:4;-1:-1:-1;;;;;;20709:40:0;;-1:-1:-1;;;20709:40:0;;:101;;-1:-1:-1;;;;;;;20762:48:0;;-1:-1:-1;;;20762:48:0;20709:101;:150;;;;20823:36;20847:11;20823:23;:36::i;58008:189::-;58144:45;58171:4;58177:2;58181:7;58144:26;:45::i;30815:839::-;30932:4;30958:15;:2;-1:-1:-1;;;;;30958:13:0;;:15::i;:::-;30954:693;;;31010:2;-1:-1:-1;;;;;30994:36:0;;31031:12;:10;:12::i;:::-;31045:4;31051:7;31060:5;30994:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30994:72:0;;;;;;;;-1:-1:-1;;30994:72:0;;;;;;;;;;;;:::i;:::-;;;30990:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31240:13:0;;31236:341;;31283:60;;-1:-1:-1;;;31283:60:0;;;;;;;:::i;31236:341::-;31527:6;31521:13;31512:6;31508:2;31504:15;31497:38;30990:602;-1:-1:-1;;;;;;31117:55:0;-1:-1:-1;;;31117:55:0;;-1:-1:-1;31110:62:0;;30954:693;-1:-1:-1;31631:4:0;30815:839;;;;;;:::o;21851:352::-;21924:13;21958:16;21966:7;21958;:16::i;:::-;21950:76;;;;-1:-1:-1;;;21950:76:0;;;;;;;:::i;:::-;22039:21;22063:10;:8;:10::i;:::-;22039:34;;22115:1;22097:7;22091:21;:25;:104;;;;;;;;;;;;;;;;;22152:7;22161:18;:7;:16;:18::i;:::-;22135:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22091:104;22084:111;21851:352;-1:-1:-1;;;21851:352:0:o;59406:454::-;59478:19;59508:21;59540;59586:17;59605;59627:4;-1:-1:-1;;;;;59627:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59585:60;-1:-1:-1;;;;;59585:60:0;;;-1:-1:-1;;;;;59585:60:0;;;59700:4;-1:-1:-1;;;;;59675:30:0;:4;-1:-1:-1;;;;;59675:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;59675:30:0;;59656:49;;59732:16;:120;;59813:9;59824;59835:16;59732:120;;;59761:9;59772;59783:16;59732:120;59716:136;;;;;;;;59406:454;;;:::o;51772:517::-;51865:14;51911:1;51900:8;:12;51892:68;;;;-1:-1:-1;;;51892:68:0;;;;;;;:::i;:::-;51991:1;51979:9;:13;:31;;;;;52009:1;51996:10;:14;51979:31;51971:84;;;;-1:-1:-1;;;51971:84:0;;;;;;;:::i;:::-;52066:20;52089:17;:8;52102:3;52089:12;:17::i;:::-;52066:40;-1:-1:-1;52117:14:0;52134:31;52066:40;52154:10;52134:19;:31::i;:::-;52117:48;-1:-1:-1;52176:16:0;52195:40;52219:15;52195:19;:9;52209:4;52195:13;:19::i;:::-;:23;;:40::i;:::-;52176:59;-1:-1:-1;52258:23:0;52176:59;52258:9;:23;:::i;:::-;52246:35;51772:517;-1:-1:-1;;;;;;;51772:517:0:o;19088:157::-;-1:-1:-1;;;;;;19197:40:0;;-1:-1:-1;;;19197:40:0;19088:157;;;:::o;35799:555::-;35909:45;35936:4;35942:2;35946:7;35909:26;:45::i;:::-;-1:-1:-1;;;;;35971:18:0;;35967:187;;36006:40;36038:7;36006:31;:40::i;:::-;35967:187;;;36076:2;-1:-1:-1;;;;;36068:10:0;:4;-1:-1:-1;;;;;36068:10:0;;36064:90;;36095:47;36128:4;36134:7;36095:32;:47::i;:::-;-1:-1:-1;;;;;36168:16:0;;36164:183;;36201:45;36238:7;36201:36;:45::i;:::-;36164:183;;;36274:4;-1:-1:-1;;;;;36268:10:0;:2;-1:-1:-1;;;;;36268:10:0;;36264:83;;36295:40;36323:2;36327:7;36295:27;:40::i;7994:420::-;8360:20;8398:8;;;7994:420::o;16535:723::-;16591:13;16812:10;16808:53;;-1:-1:-1;16839:10:0;;;;;;;;;;;;-1:-1:-1;;;16839:10:0;;;;;;16808:53;16886:5;16871:12;16927:78;16934:9;;16927:78;;16960:8;;;;:::i;:::-;;-1:-1:-1;16983:10:0;;-1:-1:-1;16991:2:0;16983:10;;:::i;:::-;;;16927:78;;;17015:19;17047:6;17037:17;;;;;;-1:-1:-1;;;17037:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17037:17:0;;17015:39;;17065:154;17072:10;;17065:154;;17099:11;17109:1;17099:11;;:::i;:::-;;-1:-1:-1;17168:10:0;17176:2;17168:5;:10;:::i;:::-;17155:24;;:2;:24;:::i;:::-;17142:39;;17125:6;17132;17125:14;;;;;;-1:-1:-1;;;17125:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17125:56:0;;;;;;;;-1:-1:-1;17196:11:0;17205:2;17196:11;;:::i;:::-;;;17065:154;;48215:98;48273:7;48300:5;48304:1;48300;:5;:::i;47477:98::-;47535:7;47562:5;47566:1;47562;:5;:::i;37077:164::-;37181:10;:17;;37154:24;;;;:15;:24;;;;;:44;;;37209:24;;;;;;;;;;;;37077:164::o;37868:1014::-;38134:22;38184:1;38159:22;38176:4;38159:16;:22::i;:::-;:26;;;;:::i;:::-;38196:18;38217:26;;;:17;:26;;;;;;38134:51;;-1:-1:-1;38350:28:0;;;38346:354;;-1:-1:-1;;;;;38417:18:0;;38395:19;38417:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38468:30;;;;;;:44;;;38598:30;;:17;:30;;;;;:43;;;38346:354;-1:-1:-1;38796:26:0;;;;:17;:26;;;;;;;;38789:33;;;-1:-1:-1;;;;;38840:18:0;;;;;:12;:18;;;;;:34;;;;;;;38833:41;37868:1014::o;39177:1097::-;39455:10;:17;39430:22;;39455:21;;39475:1;;39455:21;:::i;:::-;39487:18;39508:24;;;:15;:24;;;;;;39881:10;:26;;39430:46;;-1:-1:-1;39508:24:0;;39430:46;;39881:26;;;;-1:-1:-1;;;39881:26:0;;;;;;;;;;;;;;;;;39859:48;;39945:11;39920:10;39931;39920:22;;;;;;-1:-1:-1;;;39920:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40034:28;;;:15;:28;;;;;;;:41;;;40215:24;;;;;40208:31;40250:10;:16;;;;;-1:-1:-1;;;40250:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39177:1097;;;;:::o;36655:221::-;36740:14;36757:20;36774:2;36757:16;:20::i;:::-;-1:-1:-1;;;;;36788:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36833:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36655:221:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:190:1:-;95:13;;-1:-1:-1;;;;;137:42:1;;127:53;;117:2;;194:1;191;184:12;209:259;;321:2;309:9;300:7;296:23;292:32;289:2;;;342:6;334;327:22;289:2;386:9;373:23;405:33;432:5;405:33;:::i;473:263::-;;596:2;584:9;575:7;571:23;567:32;564:2;;;617:6;609;602:22;564:2;654:9;648:16;673:33;700:5;673:33;:::i;741:402::-;;;870:2;858:9;849:7;845:23;841:32;838:2;;;891:6;883;876:22;838:2;935:9;922:23;954:33;981:5;954:33;:::i;:::-;1006:5;-1:-1:-1;1063:2:1;1048:18;;1035:32;1076:35;1035:32;1076:35;:::i;:::-;1130:7;1120:17;;;828:315;;;;;:::o;1148:470::-;;;;1294:2;1282:9;1273:7;1269:23;1265:32;1262:2;;;1315:6;1307;1300:22;1262:2;1359:9;1346:23;1378:33;1405:5;1378:33;:::i;:::-;1430:5;-1:-1:-1;1487:2:1;1472:18;;1459:32;1500:35;1459:32;1500:35;:::i;:::-;1252:366;;1554:7;;-1:-1:-1;;;1608:2:1;1593:18;;;;1580:32;;1252:366::o;1623:1306::-;;;;;1795:3;1783:9;1774:7;1770:23;1766:33;1763:2;;;1817:6;1809;1802:22;1763:2;1861:9;1848:23;1880:33;1907:5;1880:33;:::i;:::-;1932:5;-1:-1:-1;1956:2:1;1995:18;;;1982:32;2023:35;1982:32;2023:35;:::i;:::-;2077:7;-1:-1:-1;2131:2:1;2116:18;;2103:32;;-1:-1:-1;2186:2:1;2171:18;;2158:32;2209:18;2239:14;;;2236:2;;;2271:6;2263;2256:22;2236:2;2314:6;2303:9;2299:22;2289:32;;2359:7;2352:4;2348:2;2344:13;2340:27;2330:2;;2386:6;2378;2371:22;2330:2;2427;2414:16;2449:2;2445;2442:10;2439:2;;;2455:18;;:::i;:::-;2504:2;2498:9;2573:2;2554:13;;-1:-1:-1;;2550:27:1;2538:40;;2534:49;;2598:18;;;2618:22;;;2595:46;2592:2;;;2644:18;;:::i;:::-;2680:2;2673:22;2704:18;;;2741:11;;;2737:20;;2734:33;-1:-1:-1;2731:2:1;;;2785:6;2777;2770:22;2731:2;2846;2841;2837;2833:11;2828:2;2820:6;2816:15;2803:46;2869:15;;;2865:24;;;2858:40;;;;-1:-1:-1;1753:1176:1;;;;-1:-1:-1;1753:1176:1;;-1:-1:-1;;1753:1176:1:o;2934:396::-;;;3060:2;3048:9;3039:7;3035:23;3031:32;3028:2;;;3081:6;3073;3066:22;3028:2;3125:9;3112:23;3144:33;3171:5;3144:33;:::i;:::-;3196:5;-1:-1:-1;3253:2:1;3238:18;;3225:32;3266;3225;3266;:::i;3335:327::-;;;3464:2;3452:9;3443:7;3439:23;3435:32;3432:2;;;3485:6;3477;3470:22;3432:2;3529:9;3516:23;3548:33;3575:5;3548:33;:::i;:::-;3600:5;3652:2;3637:18;;;;3624:32;;-1:-1:-1;;;3422:240:1:o;3667:257::-;;3787:2;3775:9;3766:7;3762:23;3758:32;3755:2;;;3808:6;3800;3793:22;3755:2;3845:9;3839:16;3864:30;3888:5;3864:30;:::i;3929:257::-;;4040:2;4028:9;4019:7;4015:23;4011:32;4008:2;;;4061:6;4053;4046:22;4008:2;4105:9;4092:23;4124:32;4150:5;4124:32;:::i;4191:261::-;;4313:2;4301:9;4292:7;4288:23;4284:32;4281:2;;;4334:6;4326;4319:22;4281:2;4371:9;4365:16;4390:32;4416:5;4390:32;:::i;4457:474::-;;;;4613:2;4601:9;4592:7;4588:23;4584:32;4581:2;;;4634:6;4626;4619:22;4581:2;4662:42;4694:9;4662:42;:::i;:::-;4652:52;;4723:51;4770:2;4759:9;4755:18;4723:51;:::i;:::-;4713:61;;4817:2;4806:9;4802:18;4796:25;4861:10;4854:5;4850:22;4843:5;4840:33;4830:2;;4892:6;4884;4877:22;4830:2;4920:5;4910:15;;;4571:360;;;;;:::o;4936:190::-;;5048:2;5036:9;5027:7;5023:23;5019:32;5016:2;;;5069:6;5061;5054:22;5016:2;-1:-1:-1;5097:23:1;;5006:120;-1:-1:-1;5006:120:1:o;5131:259::-;;5212:5;5206:12;5239:6;5234:3;5227:19;5255:63;5311:6;5304:4;5299:3;5295:14;5288:4;5281:5;5277:16;5255:63;:::i;:::-;5372:2;5351:15;-1:-1:-1;;5347:29:1;5338:39;;;;5379:4;5334:50;;5182:208;-1:-1:-1;;5182:208:1:o;5395:470::-;;5612:6;5606:13;5628:53;5674:6;5669:3;5662:4;5654:6;5650:17;5628:53;:::i;:::-;5744:13;;5703:16;;;;5766:57;5744:13;5703:16;5800:4;5788:17;;5766:57;:::i;:::-;5839:20;;5582:283;-1:-1:-1;;;;5582:283:1:o;5870:203::-;-1:-1:-1;;;;;6034:32:1;;;;6016:51;;6004:2;5989:18;;5971:102::o;6078:490::-;-1:-1:-1;;;;;6347:15:1;;;6329:34;;6399:15;;6394:2;6379:18;;6372:43;6446:2;6431:18;;6424:34;;;6494:3;6489:2;6474:18;;6467:31;;;6078:490;;6515:47;;6542:19;;6534:6;6515:47;:::i;:::-;6507:55;6281:287;-1:-1:-1;;;;;;6281:287:1:o;6573:274::-;-1:-1:-1;;;;;6765:32:1;;;;6747:51;;6829:2;6814:18;;6807:34;6735:2;6720:18;;6702:145::o;6852:653::-;-1:-1:-1;;;;;7121:32:1;;7103:51;;7173:2;7191:18;;;7184:34;;;7090:3;7075:19;;;7253:2;7238:18;;7298:6;6852:653;7332:167;7346:4;7343:1;7340:11;7332:167;;;7405:13;;7393:26;;7439:12;;;;7474:15;;;;7366:1;7359:9;7332:167;;;7336:3;;;;7057:448;;;;;;:::o;7510:187::-;7675:14;;7668:22;7650:41;;7638:2;7623:18;;7605:92::o;8155:221::-;;8304:2;8293:9;8286:21;8324:46;8366:2;8355:9;8351:18;8343:6;8324:46;:::i;8381:407::-;8583:2;8565:21;;;8622:2;8602:18;;;8595:30;8661:34;8656:2;8641:18;;8634:62;-1:-1:-1;;;8727:2:1;8712:18;;8705:41;8778:3;8763:19;;8555:233::o;8793:349::-;8995:2;8977:21;;;9034:2;9014:18;;;9007:30;9073:27;9068:2;9053:18;;9046:55;9133:2;9118:18;;8967:175::o;9147:414::-;9349:2;9331:21;;;9388:2;9368:18;;;9361:30;9427:34;9422:2;9407:18;;9400:62;-1:-1:-1;;;9493:2:1;9478:18;;9471:48;9551:3;9536:19;;9321:240::o;9566:352::-;9768:2;9750:21;;;9807:2;9787:18;;;9780:30;9846;9841:2;9826:18;;9819:58;9909:2;9894:18;;9740:178::o;9923:338::-;10125:2;10107:21;;;10164:2;10144:18;;;10137:30;-1:-1:-1;;;10198:2:1;10183:18;;10176:44;10252:2;10237:18;;10097:164::o;10266:405::-;10468:2;10450:21;;;10507:2;10487:18;;;10480:30;10546:34;10541:2;10526:18;;10519:62;-1:-1:-1;;;10612:2:1;10597:18;;10590:39;10661:3;10646:19;;10440:231::o;10676:338::-;10878:2;10860:21;;;10917:2;10897:18;;;10890:30;-1:-1:-1;;;10951:2:1;10936:18;;10929:44;11005:2;10990:18;;10850:164::o;11019:400::-;11221:2;11203:21;;;11260:2;11240:18;;;11233:30;11299:34;11294:2;11279:18;;11272:62;-1:-1:-1;;;11365:2:1;11350:18;;11343:34;11409:3;11394:19;;11193:226::o;11424:349::-;11626:2;11608:21;;;11665:2;11645:18;;;11638:30;11704:27;11699:2;11684:18;;11677:55;11764:2;11749:18;;11598:175::o;11778:408::-;11980:2;11962:21;;;12019:2;11999:18;;;11992:30;12058:34;12053:2;12038:18;;12031:62;-1:-1:-1;;;12124:2:1;12109:18;;12102:42;12176:3;12161:19;;11952:234::o;12191:347::-;12393:2;12375:21;;;12432:2;12412:18;;;12405:30;12471:25;12466:2;12451:18;;12444:53;12529:2;12514:18;;12365:173::o;12543:420::-;12745:2;12727:21;;;12784:2;12764:18;;;12757:30;12823:34;12818:2;12803:18;;12796:62;12894:26;12889:2;12874:18;;12867:54;12953:3;12938:19;;12717:246::o;12968:406::-;13170:2;13152:21;;;13209:2;13189:18;;;13182:30;13248:34;13243:2;13228:18;;13221:62;-1:-1:-1;;;13314:2:1;13299:18;;13292:40;13364:3;13349:19;;13142:232::o;13379:405::-;13581:2;13563:21;;;13620:2;13600:18;;;13593:30;13659:34;13654:2;13639:18;;13632:62;-1:-1:-1;;;13725:2:1;13710:18;;13703:39;13774:3;13759:19;;13553:231::o;13789:404::-;13991:2;13973:21;;;14030:2;14010:18;;;14003:30;14069:34;14064:2;14049:18;;14042:62;-1:-1:-1;;;14135:2:1;14120:18;;14113:38;14183:3;14168:19;;13963:230::o;14198:356::-;14400:2;14382:21;;;14419:18;;;14412:30;14478:34;14473:2;14458:18;;14451:62;14545:2;14530:18;;14372:182::o;14559:413::-;14761:2;14743:21;;;14800:2;14780:18;;;14773:30;14839:34;14834:2;14819:18;;14812:62;-1:-1:-1;;;14905:2:1;14890:18;;14883:47;14962:3;14947:19;;14733:239::o;14977:408::-;15179:2;15161:21;;;15218:2;15198:18;;;15191:30;15257:34;15252:2;15237:18;;15230:62;-1:-1:-1;;;15323:2:1;15308:18;;15301:42;15375:3;15360:19;;15151:234::o;15390:405::-;15592:2;15574:21;;;15631:2;15611:18;;;15604:30;15670:34;15665:2;15650:18;;15643:62;-1:-1:-1;;;15736:2:1;15721:18;;15714:39;15785:3;15770:19;;15564:231::o;15800:411::-;16002:2;15984:21;;;16041:2;16021:18;;;16014:30;16080:34;16075:2;16060:18;;16053:62;-1:-1:-1;;;16146:2:1;16131:18;;16124:45;16201:3;16186:19;;15974:237::o;16216:397::-;16418:2;16400:21;;;16457:2;16437:18;;;16430:30;16496:34;16491:2;16476:18;;16469:62;-1:-1:-1;;;16562:2:1;16547:18;;16540:31;16603:3;16588:19;;16390:223::o;16618:413::-;16820:2;16802:21;;;16859:2;16839:18;;;16832:30;16898:34;16893:2;16878:18;;16871:62;-1:-1:-1;;;16964:2:1;16949:18;;16942:47;17021:3;17006:19;;16792:239::o;17036:408::-;17238:2;17220:21;;;17277:2;17257:18;;;17250:30;17316:34;17311:2;17296:18;;17289:62;-1:-1:-1;;;17382:2:1;17367:18;;17360:42;17434:3;17419:19;;17210:234::o;17449:407::-;17651:2;17633:21;;;17690:2;17670:18;;;17663:30;17729:34;17724:2;17709:18;;17702:62;-1:-1:-1;;;17795:2:1;17780:18;;17773:41;17846:3;17831:19;;17623:233::o;17861:177::-;18007:25;;;17995:2;17980:18;;17962:76::o;18043:460::-;;18274:6;18263:9;18256:25;18317:6;18312:2;18301:9;18297:18;18290:34;18389:1;18385;18380:3;18376:11;18372:19;18364:6;18360:32;18355:2;18344:9;18340:18;18333:60;18429:3;18424:2;18413:9;18409:18;18402:31;18450:47;18492:3;18481:9;18477:19;18469:6;18450:47;:::i;18508:128::-;;18579:1;18575:6;18572:1;18569:13;18566:2;;;18585:18;;:::i;:::-;-1:-1:-1;18621:9:1;;18556:80::o;18641:120::-;;18707:1;18697:2;;18712:18;;:::i;:::-;-1:-1:-1;18746:9:1;;18687:74::o;18766:168::-;;18872:1;18868;18864:6;18860:14;18857:1;18854:21;18849:1;18842:9;18835:17;18831:45;18828:2;;;18879:18;;:::i;:::-;-1:-1:-1;18919:9:1;;18818:116::o;18939:125::-;;19007:1;19004;19001:8;18998:2;;;19012:18;;:::i;:::-;-1:-1:-1;19049:9:1;;18988:76::o;19069:258::-;19141:1;19151:113;19165:6;19162:1;19159:13;19151:113;;;19241:11;;;19235:18;19222:11;;;19215:39;19187:2;19180:10;19151:113;;;19282:6;19279:1;19276:13;19273:2;;;-1:-1:-1;;19317:1:1;19299:16;;19292:27;19122:205::o;19332:380::-;19417:1;19407:12;;19464:1;19454:12;;;19475:2;;19529:4;19521:6;19517:17;19507:27;;19475:2;19582;19574:6;19571:14;19551:18;19548:38;19545:2;;;19628:10;19623:3;19619:20;19616:1;19609:31;19663:4;19660:1;19653:15;19691:4;19688:1;19681:15;19545:2;;19387:325;;;:::o;19717:135::-;;-1:-1:-1;;19777:17:1;;19774:2;;;19797:18;;:::i;:::-;-1:-1:-1;19844:1:1;19833:13;;19764:88::o;19857:112::-;;19915:1;19905:2;;19920:18;;:::i;:::-;-1:-1:-1;19954:9:1;;19895:74::o;19974:127::-;20035:10;20030:3;20026:20;20023:1;20016:31;20066:4;20063:1;20056:15;20090:4;20087:1;20080:15;20106:127;20167:10;20162:3;20158:20;20155:1;20148:31;20198:4;20195:1;20188:15;20222:4;20219:1;20212:15;20238:127;20299:10;20294:3;20290:20;20287:1;20280:31;20330:4;20327:1;20320:15;20354:4;20351:1;20344:15;20370:133;-1:-1:-1;;;;;20447:31:1;;20437:42;;20427:2;;20493:1;20490;20483:12;20508:120;20596:5;20589:13;20582:21;20575:5;20572:32;20562:2;;20618:1;20615;20608:12;20633:133;-1:-1:-1;;;;;;20709:32:1;;20699:43;;20689:2;;20756:1;20753;20746:12

Swarm Source

ipfs://aabc7fd406a632b423932e04213b9ffd4381ea3873478beb6651bdca6ae76072
Loading...
Loading
Loading...
Loading
[ 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.