ETH Price: $2,684.67 (+2.07%)
Gas: 1 Gwei

SpaceshipsForSlimes (SFS)
 

Overview

TokenID

27

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

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-01
*/

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


// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (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) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (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;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.0 (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/IERC721.sol


// OpenZeppelin Contracts v4.4.0 (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/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.0 (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/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.0 (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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

// File: contracts/SpaceshipsForSlimes.sol



// SPACESHIPS FOR SLIMES
// https://slimes.world
// By Gal Shir
// To infinity and beyond

pragma solidity 0.8.9;





contract SpaceshipsForSlimes is ERC721, Ownable {
  using Strings for uint256;

  using Counters for Counters.Counter;
  Counters.Counter private _tokenSupply;

  string public baseURI;
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 300;
  uint256 public maxMintAmount = 1;
  uint256 public nftPerAddressLimit = 1;
  bool public salePaused = false;
  bool public onlyAllowlisted = true;
  address[] public allowlistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  constructor() ERC721("SpaceshipsForSlimes", "SFS") {
    setBaseURI("https://slimes.world/meta/spaceship/");
  }

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

  // public
  function mint(address _to, uint256 _mintAmount) public payable {
    require(!salePaused, "the contract is paused");
    uint256 supply = _tokenSupply.current();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyAllowlisted == true) {
            require(isAllowlisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      addressMintedBalance[msg.sender]++;
      _tokenSupply.increment();
      _safeMint(_to, supply + i);
    }
  }

  function isAllowlisted(address _user) public view returns (bool) {
    for (uint i = 0; i < allowlistedAddresses.length; i++) {
      if (allowlistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

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

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

  //only owner
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
  
  function toggleSale() public onlyOwner {
    salePaused = !salePaused;
  }
  
  function setOnlyAllowlisted(bool _state) public onlyOwner {
    onlyAllowlisted = _state;
  }
  
  function allowlistUsers(address[] calldata _users) public onlyOwner {
    delete allowlistedAddresses;
    allowlistedAddresses = _users;
  }
 
  function withdrawBalance() public onlyOwner {
    payable(msg.sender).transfer(address(this).balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"allowlistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allowlistedAddresses","outputs":[{"internalType":"address","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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePaused","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":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyAllowlisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060095561012c600a556001600b819055600c55600d805461ffff19166101001790553480156200003557600080fd5b50604080518082018252601381527f53706163657368697073466f72536c696d65730000000000000000000000000060208083019182528351808501909452600384526253465360e81b9084015281519192916200009691600091620001c1565b508051620000ac906001906020840190620001c1565b505050620000c9620000c3620000f360201b60201c565b620000f7565b620000ed6040518060600160405280602481526020016200244a6024913962000149565b620002a4565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001bd906008906020840190620001c1565b5050565b828054620001cf9062000267565b90600052602060002090601f016020900481019282620001f357600085556200023e565b82601f106200020e57805160ff19168380011785556200023e565b828001600101855582156200023e579182015b828111156200023e57825182559160200191906001019062000221565b506200024c92915062000250565b5090565b5b808211156200024c576000815560010162000251565b600181811c908216806200027c57607f821691505b602082108114156200029e57634e487b7160e01b600052602260045260246000fd5b50919050565b61219680620002b46000396000f3fe6080604052600436106102045760003560e01c80635fd8c7101161011857806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd146105aa578063d0eb26b0146105ca578063d5abeb01146105ea578063e985e9c514610600578063f2fde38b1461064957600080fd5b806395d89b411461053f578063a22cb46514610554578063b88d4fde14610574578063ba7d2c761461059457600080fd5b806370a08231116100e757806370a08231146104b7578063715018a6146104d75780637d8966e4146104ec5780637f00c7a6146105015780638da5cb5b1461052157600080fd5b80635fd8c7101461044e5780636352211e14610463578063674c02aa146104835780636c0360eb146104a257600080fd5b80631a188d3d1161019b57806342842e0e1161016a57806342842e0e146103b457806344a0d68a146103d457806355f804b3146103f45780635b9e3ccf146104145780635d08c1ae1461043457600080fd5b80631a188d3d1461034b578063239c70ae1461036b57806323b872dd1461038157806340c10f19146103a157600080fd5b8063095ea7b3116101d7578063095ea7b3146102b857806313faede6146102da57806317dc10c4146102fe57806318cae2691461031e57600080fd5b806301ffc9a71461020957806305a3b8091461023e57806306fdde031461025e578063081812fc14610280575b600080fd5b34801561021557600080fd5b50610229610224366004611b65565b610669565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610229610259366004611b9e565b6106bb565b34801561026a57600080fd5b50610273610725565b6040516102359190611c11565b34801561028c57600080fd5b506102a061029b366004611c24565b6107b7565b6040516001600160a01b039091168152602001610235565b3480156102c457600080fd5b506102d86102d3366004611c3d565b610851565b005b3480156102e657600080fd5b506102f060095481565b604051908152602001610235565b34801561030a57600080fd5b506102d8610319366004611c77565b610967565b34801561032a57600080fd5b506102f0610339366004611b9e565b600f6020526000908152604090205481565b34801561035757600080fd5b506102a0610366366004611c24565b6109ab565b34801561037757600080fd5b506102f0600b5481565b34801561038d57600080fd5b506102d861039c366004611c92565b6109d5565b6102d86103af366004611c3d565b610a06565b3480156103c057600080fd5b506102d86103cf366004611c92565b610d00565b3480156103e057600080fd5b506102d86103ef366004611c24565b610d1b565b34801561040057600080fd5b506102d861040f366004611d5a565b610d4a565b34801561042057600080fd5b506102d861042f366004611da3565b610d8b565b34801561044057600080fd5b50600d546102299060ff1681565b34801561045a57600080fd5b506102d8610dcd565b34801561046f57600080fd5b506102a061047e366004611c24565b610e26565b34801561048f57600080fd5b50600d5461022990610100900460ff1681565b3480156104ae57600080fd5b50610273610e9d565b3480156104c357600080fd5b506102f06104d2366004611b9e565b610f2b565b3480156104e357600080fd5b506102d8610fb2565b3480156104f857600080fd5b506102d8610fe8565b34801561050d57600080fd5b506102d861051c366004611c24565b611026565b34801561052d57600080fd5b506006546001600160a01b03166102a0565b34801561054b57600080fd5b50610273611055565b34801561056057600080fd5b506102d861056f366004611e18565b611064565b34801561058057600080fd5b506102d861058f366004611e4b565b61106f565b3480156105a057600080fd5b506102f0600c5481565b3480156105b657600080fd5b506102736105c5366004611c24565b6110a1565b3480156105d657600080fd5b506102d86105e5366004611c24565b61117c565b3480156105f657600080fd5b506102f0600a5481565b34801561060c57600080fd5b5061022961061b366004611ec7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065557600080fd5b506102d8610664366004611b9e565b6111ab565b60006001600160e01b031982166380ac58cd60e01b148061069a57506001600160e01b03198216635b5e139f60e01b145b806106b557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000805b600e5481101561071c57826001600160a01b0316600e82815481106106e6576106e6611ef1565b6000918252602090912001546001600160a01b0316141561070a5750600192915050565b8061071481611f1d565b9150506106bf565b50600092915050565b60606000805461073490611f38565b80601f016020809104026020016040519081016040528092919081815260200182805461076090611f38565b80156107ad5780601f10610782576101008083540402835291602001916107ad565b820191906000526020600020905b81548152906001019060200180831161079057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108355760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061085c82610e26565b9050806001600160a01b0316836001600160a01b031614156108ca5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082c565b336001600160a01b03821614806108e657506108e6813361061b565b6109585760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082c565b6109628383611243565b505050565b6006546001600160a01b031633146109915760405162461bcd60e51b815260040161082c90611f73565b600d80549115156101000261ff0019909216919091179055565b600e81815481106109bb57600080fd5b6000918252602090912001546001600160a01b0316905081565b6109df33826112b1565b6109fb5760405162461bcd60e51b815260040161082c90611fa8565b6109628383836113a8565b600d5460ff1615610a525760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161082c565b6000610a5d60075490565b905060008211610aaf5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161082c565b600b54821115610b0d5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161082c565b600a54610b1a8383611ff9565b1115610b615760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161082c565b6006546001600160a01b03163314610c9d57600d5460ff61010090910416151560011415610c4b57610b92336106bb565b610bde5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161082c565b336000908152600f6020526040902054600c54610bfb8483611ff9565b1115610c495760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161082c565b505b81600954610c599190612011565b341015610c9d5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161082c565b60015b828111610cfa57336000908152600f60205260408120805491610cc283611f1d565b9190505550610cd5600780546001019055565b610ce884610ce38385611ff9565b611548565b80610cf281611f1d565b915050610ca0565b50505050565b6109628383836040518060200160405280600081525061106f565b6006546001600160a01b03163314610d455760405162461bcd60e51b815260040161082c90611f73565b600955565b6006546001600160a01b03163314610d745760405162461bcd60e51b815260040161082c90611f73565b8051610d87906008906020840190611a45565b5050565b6006546001600160a01b03163314610db55760405162461bcd60e51b815260040161082c90611f73565b610dc1600e6000611ac9565b610962600e8383611ae7565b6006546001600160a01b03163314610df75760405162461bcd60e51b815260040161082c90611f73565b60405133904780156108fc02916000818181858888f19350505050158015610e23573d6000803e3d6000fd5b50565b6000818152600260205260408120546001600160a01b0316806106b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082c565b60088054610eaa90611f38565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed690611f38565b8015610f235780601f10610ef857610100808354040283529160200191610f23565b820191906000526020600020905b815481529060010190602001808311610f0657829003601f168201915b505050505081565b60006001600160a01b038216610f965760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610fdc5760405162461bcd60e51b815260040161082c90611f73565b610fe66000611562565b565b6006546001600160a01b031633146110125760405162461bcd60e51b815260040161082c90611f73565b600d805460ff19811660ff90911615179055565b6006546001600160a01b031633146110505760405162461bcd60e51b815260040161082c90611f73565b600b55565b60606001805461073490611f38565b610d873383836115b4565b61107933836112b1565b6110955760405162461bcd60e51b815260040161082c90611fa8565b610cfa84848484611683565b6000818152600260205260409020546060906001600160a01b03166111205760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161082c565b600061112a6116b6565b9050600081511161114a5760405180602001604052806000815250611175565b80611154846116c5565b604051602001611165929190612030565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146111a65760405162461bcd60e51b815260040161082c90611f73565b600c55565b6006546001600160a01b031633146111d55760405162461bcd60e51b815260040161082c90611f73565b6001600160a01b03811661123a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082c565b610e2381611562565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061127882610e26565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661132a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082c565b600061133583610e26565b9050806001600160a01b0316846001600160a01b031614806113705750836001600160a01b0316611365846107b7565b6001600160a01b0316145b806113a057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113bb82610e26565b6001600160a01b0316146114235760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082c565b6001600160a01b0382166114855760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082c565b611490600082611243565b6001600160a01b03831660009081526003602052604081208054600192906114b990849061205f565b90915550506001600160a01b03821660009081526003602052604081208054600192906114e7908490611ff9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d878282604051806020016040528060008152506117c3565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116165760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61168e8484846113a8565b61169a848484846117f6565b610cfa5760405162461bcd60e51b815260040161082c90612076565b60606008805461073490611f38565b6060816116e95750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171357806116fd81611f1d565b915061170c9050600a836120de565b91506116ed565b60008167ffffffffffffffff81111561172e5761172e611cce565b6040519080825280601f01601f191660200182016040528015611758576020820181803683370190505b5090505b84156113a05761176d60018361205f565b915061177a600a866120f2565b611785906030611ff9565b60f81b81838151811061179a5761179a611ef1565b60200101906001600160f81b031916908160001a9053506117bc600a866120de565b945061175c565b6117cd8383611903565b6117da60008484846117f6565b6109625760405162461bcd60e51b815260040161082c90612076565b60006001600160a01b0384163b156118f857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061183a903390899088908890600401612106565b602060405180830381600087803b15801561185457600080fd5b505af1925050508015611884575060408051601f3d908101601f1916820190925261188191810190612143565b60015b6118de573d8080156118b2576040519150601f19603f3d011682016040523d82523d6000602084013e6118b7565b606091505b5080516118d65760405162461bcd60e51b815260040161082c90612076565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113a0565b506001949350505050565b6001600160a01b0382166119595760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082c565b6000818152600260205260409020546001600160a01b0316156119be5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082c565b6001600160a01b03821660009081526003602052604081208054600192906119e7908490611ff9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a5190611f38565b90600052602060002090601f016020900481019282611a735760008555611ab9565b82601f10611a8c57805160ff1916838001178555611ab9565b82800160010185558215611ab9579182015b82811115611ab9578251825591602001919060010190611a9e565b50611ac5929150611b3a565b5090565b5080546000825590600052602060002090810190610e239190611b3a565b828054828255906000526020600020908101928215611ab9579160200282015b82811115611ab95781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611b07565b5b80821115611ac55760008155600101611b3b565b6001600160e01b031981168114610e2357600080fd5b600060208284031215611b7757600080fd5b813561117581611b4f565b80356001600160a01b0381168114611b9957600080fd5b919050565b600060208284031215611bb057600080fd5b61117582611b82565b60005b83811015611bd4578181015183820152602001611bbc565b83811115610cfa5750506000910152565b60008151808452611bfd816020860160208601611bb9565b601f01601f19169290920160200192915050565b6020815260006111756020830184611be5565b600060208284031215611c3657600080fd5b5035919050565b60008060408385031215611c5057600080fd5b611c5983611b82565b946020939093013593505050565b80358015158114611b9957600080fd5b600060208284031215611c8957600080fd5b61117582611c67565b600080600060608486031215611ca757600080fd5b611cb084611b82565b9250611cbe60208501611b82565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611cff57611cff611cce565b604051601f8501601f19908116603f01168101908282118183101715611d2757611d27611cce565b81604052809350858152868686011115611d4057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d6c57600080fd5b813567ffffffffffffffff811115611d8357600080fd5b8201601f81018413611d9457600080fd5b6113a084823560208401611ce4565b60008060208385031215611db657600080fd5b823567ffffffffffffffff80821115611dce57600080fd5b818501915085601f830112611de257600080fd5b813581811115611df157600080fd5b8660208260051b8501011115611e0657600080fd5b60209290920196919550909350505050565b60008060408385031215611e2b57600080fd5b611e3483611b82565b9150611e4260208401611c67565b90509250929050565b60008060008060808587031215611e6157600080fd5b611e6a85611b82565b9350611e7860208601611b82565b925060408501359150606085013567ffffffffffffffff811115611e9b57600080fd5b8501601f81018713611eac57600080fd5b611ebb87823560208401611ce4565b91505092959194509250565b60008060408385031215611eda57600080fd5b611ee383611b82565b9150611e4260208401611b82565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611f3157611f31611f07565b5060010190565b600181811c90821680611f4c57607f821691505b60208210811415611f6d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561200c5761200c611f07565b500190565b600081600019048311821515161561202b5761202b611f07565b500290565b60008351612042818460208801611bb9565b835190830190612056818360208801611bb9565b01949350505050565b60008282101561207157612071611f07565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826120ed576120ed6120c8565b500490565b600082612101576121016120c8565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061213990830184611be5565b9695505050505050565b60006020828403121561215557600080fd5b815161117581611b4f56fea2646970667358221220fbf5113fac4448d6d99caed78ee903f814c9d262cd71b5bfff263c4e68aad5f764736f6c6343000809003368747470733a2f2f736c696d65732e776f726c642f6d6574612f7370616365736869702f

Deployed Bytecode

0x6080604052600436106102045760003560e01c80635fd8c7101161011857806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd146105aa578063d0eb26b0146105ca578063d5abeb01146105ea578063e985e9c514610600578063f2fde38b1461064957600080fd5b806395d89b411461053f578063a22cb46514610554578063b88d4fde14610574578063ba7d2c761461059457600080fd5b806370a08231116100e757806370a08231146104b7578063715018a6146104d75780637d8966e4146104ec5780637f00c7a6146105015780638da5cb5b1461052157600080fd5b80635fd8c7101461044e5780636352211e14610463578063674c02aa146104835780636c0360eb146104a257600080fd5b80631a188d3d1161019b57806342842e0e1161016a57806342842e0e146103b457806344a0d68a146103d457806355f804b3146103f45780635b9e3ccf146104145780635d08c1ae1461043457600080fd5b80631a188d3d1461034b578063239c70ae1461036b57806323b872dd1461038157806340c10f19146103a157600080fd5b8063095ea7b3116101d7578063095ea7b3146102b857806313faede6146102da57806317dc10c4146102fe57806318cae2691461031e57600080fd5b806301ffc9a71461020957806305a3b8091461023e57806306fdde031461025e578063081812fc14610280575b600080fd5b34801561021557600080fd5b50610229610224366004611b65565b610669565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610229610259366004611b9e565b6106bb565b34801561026a57600080fd5b50610273610725565b6040516102359190611c11565b34801561028c57600080fd5b506102a061029b366004611c24565b6107b7565b6040516001600160a01b039091168152602001610235565b3480156102c457600080fd5b506102d86102d3366004611c3d565b610851565b005b3480156102e657600080fd5b506102f060095481565b604051908152602001610235565b34801561030a57600080fd5b506102d8610319366004611c77565b610967565b34801561032a57600080fd5b506102f0610339366004611b9e565b600f6020526000908152604090205481565b34801561035757600080fd5b506102a0610366366004611c24565b6109ab565b34801561037757600080fd5b506102f0600b5481565b34801561038d57600080fd5b506102d861039c366004611c92565b6109d5565b6102d86103af366004611c3d565b610a06565b3480156103c057600080fd5b506102d86103cf366004611c92565b610d00565b3480156103e057600080fd5b506102d86103ef366004611c24565b610d1b565b34801561040057600080fd5b506102d861040f366004611d5a565b610d4a565b34801561042057600080fd5b506102d861042f366004611da3565b610d8b565b34801561044057600080fd5b50600d546102299060ff1681565b34801561045a57600080fd5b506102d8610dcd565b34801561046f57600080fd5b506102a061047e366004611c24565b610e26565b34801561048f57600080fd5b50600d5461022990610100900460ff1681565b3480156104ae57600080fd5b50610273610e9d565b3480156104c357600080fd5b506102f06104d2366004611b9e565b610f2b565b3480156104e357600080fd5b506102d8610fb2565b3480156104f857600080fd5b506102d8610fe8565b34801561050d57600080fd5b506102d861051c366004611c24565b611026565b34801561052d57600080fd5b506006546001600160a01b03166102a0565b34801561054b57600080fd5b50610273611055565b34801561056057600080fd5b506102d861056f366004611e18565b611064565b34801561058057600080fd5b506102d861058f366004611e4b565b61106f565b3480156105a057600080fd5b506102f0600c5481565b3480156105b657600080fd5b506102736105c5366004611c24565b6110a1565b3480156105d657600080fd5b506102d86105e5366004611c24565b61117c565b3480156105f657600080fd5b506102f0600a5481565b34801561060c57600080fd5b5061022961061b366004611ec7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065557600080fd5b506102d8610664366004611b9e565b6111ab565b60006001600160e01b031982166380ac58cd60e01b148061069a57506001600160e01b03198216635b5e139f60e01b145b806106b557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000805b600e5481101561071c57826001600160a01b0316600e82815481106106e6576106e6611ef1565b6000918252602090912001546001600160a01b0316141561070a5750600192915050565b8061071481611f1d565b9150506106bf565b50600092915050565b60606000805461073490611f38565b80601f016020809104026020016040519081016040528092919081815260200182805461076090611f38565b80156107ad5780601f10610782576101008083540402835291602001916107ad565b820191906000526020600020905b81548152906001019060200180831161079057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108355760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061085c82610e26565b9050806001600160a01b0316836001600160a01b031614156108ca5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082c565b336001600160a01b03821614806108e657506108e6813361061b565b6109585760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082c565b6109628383611243565b505050565b6006546001600160a01b031633146109915760405162461bcd60e51b815260040161082c90611f73565b600d80549115156101000261ff0019909216919091179055565b600e81815481106109bb57600080fd5b6000918252602090912001546001600160a01b0316905081565b6109df33826112b1565b6109fb5760405162461bcd60e51b815260040161082c90611fa8565b6109628383836113a8565b600d5460ff1615610a525760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161082c565b6000610a5d60075490565b905060008211610aaf5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161082c565b600b54821115610b0d5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161082c565b600a54610b1a8383611ff9565b1115610b615760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161082c565b6006546001600160a01b03163314610c9d57600d5460ff61010090910416151560011415610c4b57610b92336106bb565b610bde5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161082c565b336000908152600f6020526040902054600c54610bfb8483611ff9565b1115610c495760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161082c565b505b81600954610c599190612011565b341015610c9d5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161082c565b60015b828111610cfa57336000908152600f60205260408120805491610cc283611f1d565b9190505550610cd5600780546001019055565b610ce884610ce38385611ff9565b611548565b80610cf281611f1d565b915050610ca0565b50505050565b6109628383836040518060200160405280600081525061106f565b6006546001600160a01b03163314610d455760405162461bcd60e51b815260040161082c90611f73565b600955565b6006546001600160a01b03163314610d745760405162461bcd60e51b815260040161082c90611f73565b8051610d87906008906020840190611a45565b5050565b6006546001600160a01b03163314610db55760405162461bcd60e51b815260040161082c90611f73565b610dc1600e6000611ac9565b610962600e8383611ae7565b6006546001600160a01b03163314610df75760405162461bcd60e51b815260040161082c90611f73565b60405133904780156108fc02916000818181858888f19350505050158015610e23573d6000803e3d6000fd5b50565b6000818152600260205260408120546001600160a01b0316806106b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082c565b60088054610eaa90611f38565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed690611f38565b8015610f235780601f10610ef857610100808354040283529160200191610f23565b820191906000526020600020905b815481529060010190602001808311610f0657829003601f168201915b505050505081565b60006001600160a01b038216610f965760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610fdc5760405162461bcd60e51b815260040161082c90611f73565b610fe66000611562565b565b6006546001600160a01b031633146110125760405162461bcd60e51b815260040161082c90611f73565b600d805460ff19811660ff90911615179055565b6006546001600160a01b031633146110505760405162461bcd60e51b815260040161082c90611f73565b600b55565b60606001805461073490611f38565b610d873383836115b4565b61107933836112b1565b6110955760405162461bcd60e51b815260040161082c90611fa8565b610cfa84848484611683565b6000818152600260205260409020546060906001600160a01b03166111205760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161082c565b600061112a6116b6565b9050600081511161114a5760405180602001604052806000815250611175565b80611154846116c5565b604051602001611165929190612030565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146111a65760405162461bcd60e51b815260040161082c90611f73565b600c55565b6006546001600160a01b031633146111d55760405162461bcd60e51b815260040161082c90611f73565b6001600160a01b03811661123a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082c565b610e2381611562565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061127882610e26565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661132a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082c565b600061133583610e26565b9050806001600160a01b0316846001600160a01b031614806113705750836001600160a01b0316611365846107b7565b6001600160a01b0316145b806113a057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113bb82610e26565b6001600160a01b0316146114235760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082c565b6001600160a01b0382166114855760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082c565b611490600082611243565b6001600160a01b03831660009081526003602052604081208054600192906114b990849061205f565b90915550506001600160a01b03821660009081526003602052604081208054600192906114e7908490611ff9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d878282604051806020016040528060008152506117c3565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116165760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61168e8484846113a8565b61169a848484846117f6565b610cfa5760405162461bcd60e51b815260040161082c90612076565b60606008805461073490611f38565b6060816116e95750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171357806116fd81611f1d565b915061170c9050600a836120de565b91506116ed565b60008167ffffffffffffffff81111561172e5761172e611cce565b6040519080825280601f01601f191660200182016040528015611758576020820181803683370190505b5090505b84156113a05761176d60018361205f565b915061177a600a866120f2565b611785906030611ff9565b60f81b81838151811061179a5761179a611ef1565b60200101906001600160f81b031916908160001a9053506117bc600a866120de565b945061175c565b6117cd8383611903565b6117da60008484846117f6565b6109625760405162461bcd60e51b815260040161082c90612076565b60006001600160a01b0384163b156118f857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061183a903390899088908890600401612106565b602060405180830381600087803b15801561185457600080fd5b505af1925050508015611884575060408051601f3d908101601f1916820190925261188191810190612143565b60015b6118de573d8080156118b2576040519150601f19603f3d011682016040523d82523d6000602084013e6118b7565b606091505b5080516118d65760405162461bcd60e51b815260040161082c90612076565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113a0565b506001949350505050565b6001600160a01b0382166119595760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082c565b6000818152600260205260409020546001600160a01b0316156119be5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082c565b6001600160a01b03821660009081526003602052604081208054600192906119e7908490611ff9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a5190611f38565b90600052602060002090601f016020900481019282611a735760008555611ab9565b82601f10611a8c57805160ff1916838001178555611ab9565b82800160010185558215611ab9579182015b82811115611ab9578251825591602001919060010190611a9e565b50611ac5929150611b3a565b5090565b5080546000825590600052602060002090810190610e239190611b3a565b828054828255906000526020600020908101928215611ab9579160200282015b82811115611ab95781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611b07565b5b80821115611ac55760008155600101611b3b565b6001600160e01b031981168114610e2357600080fd5b600060208284031215611b7757600080fd5b813561117581611b4f565b80356001600160a01b0381168114611b9957600080fd5b919050565b600060208284031215611bb057600080fd5b61117582611b82565b60005b83811015611bd4578181015183820152602001611bbc565b83811115610cfa5750506000910152565b60008151808452611bfd816020860160208601611bb9565b601f01601f19169290920160200192915050565b6020815260006111756020830184611be5565b600060208284031215611c3657600080fd5b5035919050565b60008060408385031215611c5057600080fd5b611c5983611b82565b946020939093013593505050565b80358015158114611b9957600080fd5b600060208284031215611c8957600080fd5b61117582611c67565b600080600060608486031215611ca757600080fd5b611cb084611b82565b9250611cbe60208501611b82565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611cff57611cff611cce565b604051601f8501601f19908116603f01168101908282118183101715611d2757611d27611cce565b81604052809350858152868686011115611d4057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d6c57600080fd5b813567ffffffffffffffff811115611d8357600080fd5b8201601f81018413611d9457600080fd5b6113a084823560208401611ce4565b60008060208385031215611db657600080fd5b823567ffffffffffffffff80821115611dce57600080fd5b818501915085601f830112611de257600080fd5b813581811115611df157600080fd5b8660208260051b8501011115611e0657600080fd5b60209290920196919550909350505050565b60008060408385031215611e2b57600080fd5b611e3483611b82565b9150611e4260208401611c67565b90509250929050565b60008060008060808587031215611e6157600080fd5b611e6a85611b82565b9350611e7860208601611b82565b925060408501359150606085013567ffffffffffffffff811115611e9b57600080fd5b8501601f81018713611eac57600080fd5b611ebb87823560208401611ce4565b91505092959194509250565b60008060408385031215611eda57600080fd5b611ee383611b82565b9150611e4260208401611b82565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611f3157611f31611f07565b5060010190565b600181811c90821680611f4c57607f821691505b60208210811415611f6d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561200c5761200c611f07565b500190565b600081600019048311821515161561202b5761202b611f07565b500290565b60008351612042818460208801611bb9565b835190830190612056818360208801611bb9565b01949350505050565b60008282101561207157612071611f07565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826120ed576120ed6120c8565b500490565b600082612101576121016120c8565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061213990830184611be5565b9695505050505050565b60006020828403121561215557600080fd5b815161117581611b4f56fea2646970667358221220fbf5113fac4448d6d99caed78ee903f814c9d262cd71b5bfff263c4e68aad5f764736f6c63430008090033

Deployed Bytecode Sourcemap

37827:3320:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25207:305;;;;;;;;;;-1:-1:-1;25207:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25207:305:0;;;;;;;;39593:239;;;;;;;;;;-1:-1:-1;39593:239:0;;;;;:::i;:::-;;:::i;26152:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27711:221::-;;;;;;;;;;-1:-1:-1;27711:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2061:32:1;;;2043:51;;2031:2;2016:18;27711:221:0;1897:203:1;27234:411:0;;;;;;;;;;-1:-1:-1;27234:411:0;;;;;:::i;:::-;;:::i;:::-;;38022:29;;;;;;;;;;;;;;;;;;;2510:25:1;;;2498:2;2483:18;38022:29:0;2364:177:1;40782:95:0;;;;;;;;;;-1:-1:-1;40782:95:0;;;;;:::i;:::-;;:::i;38286:55::-;;;;;;;;;;-1:-1:-1;38286:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;38244:37;;;;;;;;;;-1:-1:-1;38244:37:0;;;;;:::i;:::-;;:::i;38091:32::-;;;;;;;;;;;;;;;;28461:339;;;;;;;;;;-1:-1:-1;28461:339:0;;;;;:::i;:::-;;:::i;38604:983::-;;;;;;:::i;:::-;;:::i;28871:185::-;;;;;;;;;;-1:-1:-1;28871:185:0;;;;;:::i;:::-;;:::i;40384:80::-;;;;;;;;;;-1:-1:-1;40384:80:0;;;;;:::i;:::-;;:::i;40592:98::-;;;;;;;;;;-1:-1:-1;40592:98:0;;;;;:::i;:::-;;:::i;40885:144::-;;;;;;;;;;-1:-1:-1;40885:144:0;;;;;:::i;:::-;;:::i;38170:30::-;;;;;;;;;;-1:-1:-1;38170:30:0;;;;;;;;41036:108;;;;;;;;;;;;;:::i;25846:239::-;;;;;;;;;;-1:-1:-1;25846:239:0;;;;;:::i;:::-;;:::i;38205:34::-;;;;;;;;;;-1:-1:-1;38205:34:0;;;;;;;;;;;37996:21;;;;;;;;;;;;;:::i;25576:208::-;;;;;;;;;;-1:-1:-1;25576:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;40698:76::-;;;;;;;;;;;;;:::i;40470:116::-;;;;;;;;;;-1:-1:-1;40470:116:0;;;;;:::i;:::-;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;26321:104;;;;;;;;;;;;;:::i;28004:155::-;;;;;;;;;;-1:-1:-1;28004:155:0;;;;;:::i;:::-;;:::i;29127:328::-;;;;;;;;;;-1:-1:-1;29127:328:0;;;;;:::i;:::-;;:::i;38128:37::-;;;;;;;;;;;;;;;;39838:408;;;;;;;;;;-1:-1:-1;39838:408:0;;;;;:::i;:::-;;:::i;40272:104::-;;;;;;;;;;-1:-1:-1;40272:104:0;;;;;:::i;:::-;;:::i;38056:30::-;;;;;;;;;;;;;;;;28230:164;;;;;;;;;;-1:-1:-1;28230:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28351:25:0;;;28327:4;28351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28230:164;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;25207:305::-;25309:4;-1:-1:-1;;;;;;25346:40:0;;-1:-1:-1;;;25346:40:0;;:105;;-1:-1:-1;;;;;;;25403:48:0;;-1:-1:-1;;;25403:48:0;25346:105;:158;;;-1:-1:-1;;;;;;;;;;18085:40:0;;;25468:36;25326:178;25207:305;-1:-1:-1;;25207:305:0:o;39593:239::-;39652:4;;39665:143;39686:20;:27;39682:31;;39665:143;;;39760:5;-1:-1:-1;;;;;39733:32:0;:20;39754:1;39733:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;39733:23:0;:32;39729:72;;;-1:-1:-1;39787:4:0;;39593:239;-1:-1:-1;;39593:239:0:o;39729:72::-;39715:3;;;;:::i;:::-;;;;39665:143;;;-1:-1:-1;39821:5:0;;39593:239;-1:-1:-1;;39593:239:0:o;26152:100::-;26206:13;26239:5;26232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26152:100;:::o;27711:221::-;27787:7;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;27807:73;;;;-1:-1:-1;;;27807:73:0;;7261:2:1;27807:73:0;;;7243:21:1;7300:2;7280:18;;;7273:30;7339:34;7319:18;;;7312:62;-1:-1:-1;;;7390:18:1;;;7383:42;7442:19;;27807:73:0;;;;;;;;;-1:-1:-1;27900:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27900:24:0;;27711:221::o;27234:411::-;27315:13;27331:23;27346:7;27331:14;:23::i;:::-;27315:39;;27379:5;-1:-1:-1;;;;;27373:11:0;:2;-1:-1:-1;;;;;27373:11:0;;;27365:57;;;;-1:-1:-1;;;27365:57:0;;7674:2:1;27365:57:0;;;7656:21:1;7713:2;7693:18;;;7686:30;7752:34;7732:18;;;7725:62;-1:-1:-1;;;7803:18:1;;;7796:31;7844:19;;27365:57:0;7472:397:1;27365:57:0;4348:10;-1:-1:-1;;;;;27457:21:0;;;;:62;;-1:-1:-1;27482:37:0;27499:5;4348:10;28230:164;:::i;27482:37::-;27435:168;;;;-1:-1:-1;;;27435:168:0;;8076:2:1;27435:168:0;;;8058:21:1;8115:2;8095:18;;;8088:30;8154:34;8134:18;;;8127:62;8225:26;8205:18;;;8198:54;8269:19;;27435:168:0;7874:420:1;27435:168:0;27616:21;27625:2;27629:7;27616:8;:21::i;:::-;27304:341;27234:411;;:::o;40782:95::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40847:15:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;40847:24:0;;::::1;::::0;;;::::1;::::0;;40782:95::o;38244:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38244:37:0;;-1:-1:-1;38244:37:0;:::o;28461:339::-;28656:41;4348:10;28689:7;28656:18;:41::i;:::-;28648:103;;;;-1:-1:-1;;;28648:103:0;;;;;;;:::i;:::-;28764:28;28774:4;28780:2;28784:7;28764:9;:28::i;38604:983::-;38683:10;;;;38682:11;38674:46;;;;-1:-1:-1;;;38674:46:0;;9280:2:1;38674:46:0;;;9262:21:1;9319:2;9299:18;;;9292:30;-1:-1:-1;;;9338:18:1;;;9331:52;9400:18;;38674:46:0;9078:346:1;38674:46:0;38727:14;38744:22;:12;964:14;;872:114;38744:22;38727:39;;38795:1;38781:11;:15;38773:55;;;;-1:-1:-1;;;38773:55:0;;9631:2:1;38773:55:0;;;9613:21:1;9670:2;9650:18;;;9643:30;9709:29;9689:18;;;9682:57;9756:18;;38773:55:0;9429:351:1;38773:55:0;38858:13;;38843:11;:28;;38835:77;;;;-1:-1:-1;;;38835:77:0;;9987:2:1;38835:77:0;;;9969:21:1;10026:2;10006:18;;;9999:30;10065:34;10045:18;;;10038:62;-1:-1:-1;;;10116:18:1;;;10109:34;10160:19;;38835:77:0;9785:400:1;38835:77:0;38951:9;;38927:20;38936:11;38927:6;:20;:::i;:::-;:33;;38919:68;;;;-1:-1:-1;;;38919:68:0;;10525:2:1;38919:68:0;;;10507:21:1;10564:2;10544:18;;;10537:30;-1:-1:-1;;;10583:18:1;;;10576:52;10645:18;;38919:68:0;10323:346:1;38919:68:0;5617:6;;-1:-1:-1;;;;;5617:6:0;39000:10;:21;38996:416;;39037:15;;;;;;;;:23;;:15;:23;39034:298;;;39085:25;39099:10;39085:13;:25::i;:::-;39077:61;;;;-1:-1:-1;;;39077:61:0;;10876:2:1;39077:61:0;;;10858:21:1;10915:2;10895:18;;;10888:30;10954:25;10934:18;;;10927:53;10997:18;;39077:61:0;10674:347:1;39077:61:0;39201:10;39153:24;39180:32;;;:20;:32;;;;;;39269:18;;39235:30;39254:11;39180:32;39235:30;:::i;:::-;:52;;39227:93;;;;-1:-1:-1;;;39227:93:0;;11228:2:1;39227:93:0;;;11210:21:1;11267:2;11247:18;;;11240:30;11306;11286:18;;;11279:58;11354:18;;39227:93:0;11026:352:1;39227:93:0;39062:270;39034:298;39370:11;39363:4;;:18;;;;:::i;:::-;39350:9;:31;;39342:62;;;;-1:-1:-1;;;39342:62:0;;11758:2:1;39342:62:0;;;11740:21:1;11797:2;11777:18;;;11770:30;-1:-1:-1;;;11816:18:1;;;11809:48;11874:18;;39342:62:0;11556:342:1;39342:62:0;39437:1;39420:162;39445:11;39440:1;:16;39420:162;;39493:10;39472:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;39515:24;:12;1083:19;;1101:1;1083:19;;;994:127;39515:24;39548:26;39558:3;39563:10;39572:1;39563:6;:10;:::i;:::-;39548:9;:26::i;:::-;39458:3;;;;:::i;:::-;;;;39420:162;;;;38667:920;38604:983;;:::o;28871:185::-;29009:39;29026:4;29032:2;29036:7;29009:39;;;;;;;;;;;;:16;:39::i;40384:80::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40443:4:::1;:15:::0;40384:80::o;40592:98::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40663:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40592:98:::0;:::o;40885:144::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40960:27:::1;40967:20;;40960:27;:::i;:::-;40994:29;:20;41017:6:::0;;40994:29:::1;:::i;41036:108::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41087:51:::1;::::0;41095:10:::1;::::0;41116:21:::1;41087:51:::0;::::1;;;::::0;::::1;::::0;;;41116:21;41095:10;41087:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;41036:108::o:0;25846:239::-;25918:7;25954:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25954:16:0;25989:19;25981:73;;;;-1:-1:-1;;;25981:73:0;;12105:2:1;25981:73:0;;;12087:21:1;12144:2;12124:18;;;12117:30;12183:34;12163:18;;;12156:62;-1:-1:-1;;;12234:18:1;;;12227:39;12283:19;;25981:73:0;11903:405:1;37996:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25576:208::-;25648:7;-1:-1:-1;;;;;25676:19:0;;25668:74;;;;-1:-1:-1;;;25668:74:0;;12515:2:1;25668:74:0;;;12497:21:1;12554:2;12534:18;;;12527:30;12593:34;12573:18;;;12566:62;-1:-1:-1;;;12644:18:1;;;12637:40;12694:19;;25668:74:0;12313:406:1;25668:74:0;-1:-1:-1;;;;;;25760:16:0;;;;;:9;:16;;;;;;;25576:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;40698:76::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40758:10:::1;::::0;;-1:-1:-1;;40744:24:0;::::1;40758:10;::::0;;::::1;40757:11;40744:24;::::0;;40698:76::o;40470:116::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40547:13:::1;:33:::0;40470:116::o;26321:104::-;26377:13;26410:7;26403:14;;;;;:::i;28004:155::-;28099:52;4348:10;28132:8;28142;28099:18;:52::i;29127:328::-;29302:41;4348:10;29335:7;29302:18;:41::i;:::-;29294:103;;;;-1:-1:-1;;;29294:103:0;;;;;;;:::i;:::-;29408:39;29422:4;29428:2;29432:7;29441:5;29408:13;:39::i;39838:408::-;31030:4;31054:16;;;:7;:16;;;;;;39936:13;;-1:-1:-1;;;;;31054:16:0;39961:97;;;;-1:-1:-1;;;39961:97:0;;12926:2:1;39961:97:0;;;12908:21:1;12965:2;12945:18;;;12938:30;13004:34;12984:18;;;12977:62;-1:-1:-1;;;13055:18:1;;;13048:45;13110:19;;39961:97:0;12724:411:1;39961:97:0;40067:28;40098:10;:8;:10::i;:::-;40067:41;;40153:1;40128:14;40122:28;:32;:118;;;;;;;;;;;;;;;;;40190:14;40206:18;:7;:16;:18::i;:::-;40173:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40122:118;40115:125;39838:408;-1:-1:-1;;;39838:408:0:o;40272:104::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40343:18:::1;:27:::0;40272:104::o;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;13817:2:1;6534:73:0::1;::::0;::::1;13799:21:1::0;13856:2;13836:18;;;13829:30;13895:34;13875:18;;;13868:62;-1:-1:-1;;;13946:18:1;;;13939:36;13992:19;;6534:73:0::1;13615:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;34947:174::-:0;35022:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35022:29:0;-1:-1:-1;;;;;35022:29:0;;;;;;;;:24;;35076:23;35022:24;35076:14;:23::i;:::-;-1:-1:-1;;;;;35067:46:0;;;;;;;;;;;34947:174;;:::o;31259:348::-;31352:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;31369:73;;;;-1:-1:-1;;;31369:73:0;;14224:2:1;31369:73:0;;;14206:21:1;14263:2;14243:18;;;14236:30;14302:34;14282:18;;;14275:62;-1:-1:-1;;;14353:18:1;;;14346:42;14405:19;;31369:73:0;14022:408:1;31369:73:0;31453:13;31469:23;31484:7;31469:14;:23::i;:::-;31453:39;;31522:5;-1:-1:-1;;;;;31511:16:0;:7;-1:-1:-1;;;;;31511:16:0;;:51;;;;31555:7;-1:-1:-1;;;;;31531:31:0;:20;31543:7;31531:11;:20::i;:::-;-1:-1:-1;;;;;31531:31:0;;31511:51;:87;;;-1:-1:-1;;;;;;28351:25:0;;;28327:4;28351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31566:32;31503:96;31259:348;-1:-1:-1;;;;31259:348:0:o;34251:578::-;34410:4;-1:-1:-1;;;;;34383:31:0;:23;34398:7;34383:14;:23::i;:::-;-1:-1:-1;;;;;34383:31:0;;34375:85;;;;-1:-1:-1;;;34375:85:0;;14637:2:1;34375:85:0;;;14619:21:1;14676:2;14656:18;;;14649:30;14715:34;14695:18;;;14688:62;-1:-1:-1;;;14766:18:1;;;14759:39;14815:19;;34375:85:0;14435:405:1;34375:85:0;-1:-1:-1;;;;;34479:16:0;;34471:65;;;;-1:-1:-1;;;34471:65:0;;15047:2:1;34471:65:0;;;15029:21:1;15086:2;15066:18;;;15059:30;15125:34;15105:18;;;15098:62;-1:-1:-1;;;15176:18:1;;;15169:34;15220:19;;34471:65:0;14845:400:1;34471:65:0;34653:29;34670:1;34674:7;34653:8;:29::i;:::-;-1:-1:-1;;;;;34695:15:0;;;;;;:9;:15;;;;;:20;;34714:1;;34695:15;:20;;34714:1;;34695:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34726:13:0;;;;;;:9;:13;;;;;:18;;34743:1;;34726:13;:18;;34743:1;;34726:18;:::i;:::-;;;;-1:-1:-1;;34755:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34755:21:0;-1:-1:-1;;;;;34755:21:0;;;;;;;;;34794:27;;34755:16;;34794:27;;;;;;;34251:578;;;:::o;31949:110::-;32025:26;32035:2;32039:7;32025:26;;;;;;;;;;;;:9;:26::i;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;35263:315::-;35418:8;-1:-1:-1;;;;;35409:17:0;:5;-1:-1:-1;;;;;35409:17:0;;;35401:55;;;;-1:-1:-1;;;35401:55:0;;15582:2:1;35401:55:0;;;15564:21:1;15621:2;15601:18;;;15594:30;15660:27;15640:18;;;15633:55;15705:18;;35401:55:0;15380:349:1;35401:55:0;-1:-1:-1;;;;;35467:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35467:46:0;;;;;;;;;;35529:41;;540::1;;;35529::0;;513:18:1;35529:41:0;;;;;;;35263:315;;;:::o;30337:::-;30494:28;30504:4;30510:2;30514:7;30494:9;:28::i;:::-;30541:48;30564:4;30570:2;30574:7;30583:5;30541:22;:48::i;:::-;30533:111;;;;-1:-1:-1;;;30533:111:0;;;;;;;:::i;38483:102::-;38543:13;38572:7;38565:14;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;32286:321;32416:18;32422:2;32426:7;32416:5;:18::i;:::-;32467:54;32498:1;32502:2;32506:7;32515:5;32467:22;:54::i;:::-;32445:154;;;;-1:-1:-1;;;32445:154:0;;;;;;;:::i;36143:799::-;36298:4;-1:-1:-1;;;;;36319:13:0;;8155:20;8203:8;36315:620;;36355:72;;-1:-1:-1;;;36355:72:0;;-1:-1:-1;;;;;36355:36:0;;;;;:72;;4348:10;;36406:4;;36412:7;;36421:5;;36355:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36355:72:0;;;;;;;;-1:-1:-1;;36355:72:0;;;;;;;;;;;;:::i;:::-;;;36351:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36597:13:0;;36593:272;;36640:60;;-1:-1:-1;;;36640:60:0;;;;;;;:::i;36593:272::-;36815:6;36809:13;36800:6;36796:2;36792:15;36785:38;36351:529;-1:-1:-1;;;;;;36478:51:0;-1:-1:-1;;;36478:51:0;;-1:-1:-1;36471:58:0;;36315:620;-1:-1:-1;36919:4:0;36143:799;;;;;;:::o;32943:382::-;-1:-1:-1;;;;;33023:16:0;;33015:61;;;;-1:-1:-1;;;33015:61:0;;17477:2:1;33015:61:0;;;17459:21:1;;;17496:18;;;17489:30;17555:34;17535:18;;;17528:62;17607:18;;33015:61:0;17275:356:1;33015:61:0;31030:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;:30;33087:58;;;;-1:-1:-1;;;33087:58:0;;17838:2:1;33087:58:0;;;17820:21:1;17877:2;17857:18;;;17850:30;17916;17896:18;;;17889:58;17964:18;;33087:58:0;17636:352:1;33087:58:0;-1:-1:-1;;;;;33216:13:0;;;;;;:9;:13;;;;;:18;;33233:1;;33216:13;:18;;33233:1;;33216:18;:::i;:::-;;;;-1:-1:-1;;33245:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33245:21:0;-1:-1:-1;;;;;33245:21:0;;;;;;;;33284:33;;33245:16;;;33284:33;;33245:16;;33284:33;32943:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:186::-;829:6;882:2;870:9;861:7;857:23;853:32;850:52;;;898:1;895;888:12;850:52;921:29;940:9;921:29;:::i;961:258::-;1033:1;1043:113;1057:6;1054:1;1051:13;1043:113;;;1133:11;;;1127:18;1114:11;;;1107:39;1079:2;1072:10;1043:113;;;1174:6;1171:1;1168:13;1165:48;;;-1:-1:-1;;1209:1:1;1191:16;;1184:27;961:258::o;1224:::-;1266:3;1304:5;1298:12;1331:6;1326:3;1319:19;1347:63;1403:6;1396:4;1391:3;1387:14;1380:4;1373:5;1369:16;1347:63;:::i;:::-;1464:2;1443:15;-1:-1:-1;;1439:29:1;1430:39;;;;1471:4;1426:50;;1224:258;-1:-1:-1;;1224:258:1:o;1487:220::-;1636:2;1625:9;1618:21;1599:4;1656:45;1697:2;1686:9;1682:18;1674:6;1656:45;:::i;1712:180::-;1771:6;1824:2;1812:9;1803:7;1799:23;1795:32;1792:52;;;1840:1;1837;1830:12;1792:52;-1:-1:-1;1863:23:1;;1712:180;-1:-1:-1;1712:180:1:o;2105:254::-;2173:6;2181;2234:2;2222:9;2213:7;2209:23;2205:32;2202:52;;;2250:1;2247;2240:12;2202:52;2273:29;2292:9;2273:29;:::i;:::-;2263:39;2349:2;2334:18;;;;2321:32;;-1:-1:-1;;;2105:254:1:o;2546:160::-;2611:20;;2667:13;;2660:21;2650:32;;2640:60;;2696:1;2693;2686:12;2711:180;2767:6;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2859:26;2875:9;2859:26;:::i;2896:328::-;2973:6;2981;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3214:2;3203:9;3199:18;3186:32;3176:42;;2896:328;;;;;:::o;3229:127::-;3290:10;3285:3;3281:20;3278:1;3271:31;3321:4;3318:1;3311:15;3345:4;3342:1;3335:15;3361:632;3426:5;3456:18;3497:2;3489:6;3486:14;3483:40;;;3503:18;;:::i;:::-;3578:2;3572:9;3546:2;3632:15;;-1:-1:-1;;3628:24:1;;;3654:2;3624:33;3620:42;3608:55;;;3678:18;;;3698:22;;;3675:46;3672:72;;;3724:18;;:::i;:::-;3764:10;3760:2;3753:22;3793:6;3784:15;;3823:6;3815;3808:22;3863:3;3854:6;3849:3;3845:16;3842:25;3839:45;;;3880:1;3877;3870:12;3839:45;3930:6;3925:3;3918:4;3910:6;3906:17;3893:44;3985:1;3978:4;3969:6;3961;3957:19;3953:30;3946:41;;;;3361:632;;;;;:::o;3998:451::-;4067:6;4120:2;4108:9;4099:7;4095:23;4091:32;4088:52;;;4136:1;4133;4126:12;4088:52;4176:9;4163:23;4209:18;4201:6;4198:30;4195:50;;;4241:1;4238;4231:12;4195:50;4264:22;;4317:4;4309:13;;4305:27;-1:-1:-1;4295:55:1;;4346:1;4343;4336:12;4295:55;4369:74;4435:7;4430:2;4417:16;4412:2;4408;4404:11;4369:74;:::i;4454:615::-;4540:6;4548;4601:2;4589:9;4580:7;4576:23;4572:32;4569:52;;;4617:1;4614;4607:12;4569:52;4657:9;4644:23;4686:18;4727:2;4719:6;4716:14;4713:34;;;4743:1;4740;4733:12;4713:34;4781:6;4770:9;4766:22;4756:32;;4826:7;4819:4;4815:2;4811:13;4807:27;4797:55;;4848:1;4845;4838:12;4797:55;4888:2;4875:16;4914:2;4906:6;4903:14;4900:34;;;4930:1;4927;4920:12;4900:34;4983:7;4978:2;4968:6;4965:1;4961:14;4957:2;4953:23;4949:32;4946:45;4943:65;;;5004:1;5001;4994:12;4943:65;5035:2;5027:11;;;;;5057:6;;-1:-1:-1;4454:615:1;;-1:-1:-1;;;;4454:615:1:o;5074:254::-;5139:6;5147;5200:2;5188:9;5179:7;5175:23;5171:32;5168:52;;;5216:1;5213;5206:12;5168:52;5239:29;5258:9;5239:29;:::i;:::-;5229:39;;5287:35;5318:2;5307:9;5303:18;5287:35;:::i;:::-;5277:45;;5074:254;;;;;:::o;5333:667::-;5428:6;5436;5444;5452;5505:3;5493:9;5484:7;5480:23;5476:33;5473:53;;;5522:1;5519;5512:12;5473:53;5545:29;5564:9;5545:29;:::i;:::-;5535:39;;5593:38;5627:2;5616:9;5612:18;5593:38;:::i;:::-;5583:48;;5678:2;5667:9;5663:18;5650:32;5640:42;;5733:2;5722:9;5718:18;5705:32;5760:18;5752:6;5749:30;5746:50;;;5792:1;5789;5782:12;5746:50;5815:22;;5868:4;5860:13;;5856:27;-1:-1:-1;5846:55:1;;5897:1;5894;5887:12;5846:55;5920:74;5986:7;5981:2;5968:16;5963:2;5959;5955:11;5920:74;:::i;:::-;5910:84;;;5333:667;;;;;;;:::o;6005:260::-;6073:6;6081;6134:2;6122:9;6113:7;6109:23;6105:32;6102:52;;;6150:1;6147;6140:12;6102:52;6173:29;6192:9;6173:29;:::i;:::-;6163:39;;6221:38;6255:2;6244:9;6240:18;6221:38;:::i;6270:127::-;6331:10;6326:3;6322:20;6319:1;6312:31;6362:4;6359:1;6352:15;6386:4;6383:1;6376:15;6402:127;6463:10;6458:3;6454:20;6451:1;6444:31;6494:4;6491:1;6484:15;6518:4;6515:1;6508:15;6534:135;6573:3;-1:-1:-1;;6594:17:1;;6591:43;;;6614:18;;:::i;:::-;-1:-1:-1;6661:1:1;6650:13;;6534:135::o;6674:380::-;6753:1;6749:12;;;;6796;;;6817:61;;6871:4;6863:6;6859:17;6849:27;;6817:61;6924:2;6916:6;6913:14;6893:18;6890:38;6887:161;;;6970:10;6965:3;6961:20;6958:1;6951:31;7005:4;7002:1;6995:15;7033:4;7030:1;7023:15;6887:161;;6674:380;;;:::o;8299:356::-;8501:2;8483:21;;;8520:18;;;8513:30;8579:34;8574:2;8559:18;;8552:62;8646:2;8631:18;;8299:356::o;8660:413::-;8862:2;8844:21;;;8901:2;8881:18;;;8874:30;8940:34;8935:2;8920:18;;8913:62;-1:-1:-1;;;9006:2:1;8991:18;;8984:47;9063:3;9048:19;;8660:413::o;10190:128::-;10230:3;10261:1;10257:6;10254:1;10251:13;10248:39;;;10267:18;;:::i;:::-;-1:-1:-1;10303:9:1;;10190:128::o;11383:168::-;11423:7;11489:1;11485;11481:6;11477:14;11474:1;11471:21;11466:1;11459:9;11452:17;11448:45;11445:71;;;11496:18;;:::i;:::-;-1:-1:-1;11536:9:1;;11383:168::o;13140:470::-;13319:3;13357:6;13351:13;13373:53;13419:6;13414:3;13407:4;13399:6;13395:17;13373:53;:::i;:::-;13489:13;;13448:16;;;;13511:57;13489:13;13448:16;13545:4;13533:17;;13511:57;:::i;:::-;13584:20;;13140:470;-1:-1:-1;;;;13140:470:1:o;15250:125::-;15290:4;15318:1;15315;15312:8;15309:34;;;15323:18;;:::i;:::-;-1:-1:-1;15360:9:1;;15250:125::o;15734:414::-;15936:2;15918:21;;;15975:2;15955:18;;;15948:30;16014:34;16009:2;15994:18;;15987:62;-1:-1:-1;;;16080:2:1;16065:18;;16058:48;16138:3;16123:19;;15734:414::o;16153:127::-;16214:10;16209:3;16205:20;16202:1;16195:31;16245:4;16242:1;16235:15;16269:4;16266:1;16259:15;16285:120;16325:1;16351;16341:35;;16356:18;;:::i;:::-;-1:-1:-1;16390:9:1;;16285:120::o;16410:112::-;16442:1;16468;16458:35;;16473:18;;:::i;:::-;-1:-1:-1;16507:9:1;;16410:112::o;16527:489::-;-1:-1:-1;;;;;16796:15:1;;;16778:34;;16848:15;;16843:2;16828:18;;16821:43;16895:2;16880:18;;16873:34;;;16943:3;16938:2;16923:18;;16916:31;;;16721:4;;16964:46;;16990:19;;16982:6;16964:46;:::i;:::-;16956:54;16527:489;-1:-1:-1;;;;;;16527:489:1:o;17021:249::-;17090:6;17143:2;17131:9;17122:7;17118:23;17114:32;17111:52;;;17159:1;17156;17149:12;17111:52;17191:9;17185:16;17210:30;17234:5;17210:30;:::i

Swarm Source

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