ETH Price: $3,665.89 (-1.75%)

Token

ERC-20: Shitty Fucking Tokens (SFT)
 

Overview

Max Total Supply

0 SFT

Holders

150

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SFT
0xe21bc4bdc4c192f4234ec52d53ebecb10daef995
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:
ShittyFuckingToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-21
*/

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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.1 (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/introspection/IERC165.sol


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (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/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (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/ShittyFuckingToken.sol


pragma solidity 0.8.0;



contract ShittyFuckingToken is ERC721, Ownable {

    uint256 public tokenCounter = 0;
    uint256 public currentSftCount = 200;
    bool public saleIsActive = false;

    // Base URI
    string private baseURI;

    //Minting Price of SFT
    uint256 public sftPrice = 10000000000000000; // 0.01 ETH
    
    constructor () ERC721 ("Shitty Fucking Tokens", "SFT"){}

    // Withdraw
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    // Enable/Disable the ability to mint
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function setBaseURI(string memory uriString) public onlyOwner {
        baseURI = uriString;
    }

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

    // Enable/Disable the ability to mint
    function setSftCount(uint256 count) public onlyOwner {
        currentSftCount = count;
    }

    // Enable/Disable the ability to mint
    function setSftPrice(uint256 price) public onlyOwner {
        sftPrice = price;
    }



    //Public Mint Shitty Fucking Token
    function mintShittyFuckingToken(uint sftTokenId) public payable {
        require(saleIsActive, "Sale must be active to mint SFT");
        require(sftTokenId > 0 && sftTokenId <=currentSftCount, "Must Pick an sft within valid range");
        require(msg.value >= sftPrice, "Ether value sent is not correct");
        require(!_exists(sftTokenId), "This SFT was already minted");
        
        _safeMint(msg.sender, sftTokenId);
        tokenCounter = tokenCounter + 1;
    }


    // Special Mint 
    function specialMint(uint sftTokenId) public onlyOwner {
        require(sftTokenId > 0 && sftTokenId <=currentSftCount, "Must Pick an sft within valid range");
        require(!_exists(sftTokenId), "This SFT was already minted");
        
        _safeMint(msg.sender, sftTokenId);
        tokenCounter = tokenCounter + 1;
    }




}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"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":"currentSftCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"sftTokenId","type":"uint256"}],"name":"mintShittyFuckingToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","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":"uriString","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"setSftCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setSftPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"sftTokenId","type":"uint256"}],"name":"specialMint","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":"tokenCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060075560c86008556009805460ff19169055662386f26fc10000600b553480156200003057600080fd5b50604080518082018252601581527f536869747479204675636b696e6720546f6b656e73000000000000000000000060208083019182528351808501909452600384526214d19560ea1b908401528151919291620000919160009162000120565b508051620000a790600190602084019062000120565b505050620000c4620000be620000ca60201b60201c565b620000ce565b62000203565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012e90620001c6565b90600052602060002090601f0160209004810192826200015257600085556200019d565b82601f106200016d57805160ff19168380011785556200019d565b828001600101855582156200019d579182015b828111156200019d57825182559160200191906001019062000180565b50620001ab929150620001af565b5090565b5b80821115620001ab5760008155600101620001b0565b600281046001821680620001db57607f821691505b60208210811415620001fd57634e487b7160e01b600052602260045260246000fd5b50919050565b611da280620002136000396000f3fe60806040526004361061019c5760003560e01c8063715018a6116100ec578063d771f9c71161008a578063e985e9c511610064578063e985e9c51461045b578063eb0c63a21461047b578063eb8d244414610490578063f2fde38b146104a55761019c565b8063d771f9c714610413578063e719ed5e14610433578063e7bd48c7146104485761019c565b8063a22cb465116100c6578063a22cb4651461039e578063b88d4fde146103be578063c87b56dd146103de578063d082e381146103fe5761019c565b8063715018a61461035f5780638da5cb5b1461037457806395d89b41146103895761019c565b80633ccfd60b11610159578063575104921161013357806357510492146102d25780635d67f6a4146102f25780636352211e1461031257806370a08231146103325761019c565b80633ccfd60b1461027d57806342842e0e1461029257806355f804b3146102b25761019c565b806301ffc9a7146101a157806306fdde03146101d7578063081812fc146101f9578063095ea7b31461022657806323b872dd1461024857806334918dfd14610268575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611584565b6104c5565b6040516101ce91906116c6565b60405180910390f35b3480156101e357600080fd5b506101ec61050d565b6040516101ce91906116d1565b34801561020557600080fd5b50610219610214366004611602565b61059f565b6040516101ce9190611675565b34801561023257600080fd5b5061024661024136600461155b565b6105eb565b005b34801561025457600080fd5b5061024661026336600461146d565b610683565b34801561027457600080fd5b506102466106bb565b34801561028957600080fd5b5061024661070e565b34801561029e57600080fd5b506102466102ad36600461146d565b610780565b3480156102be57600080fd5b506102466102cd3660046115bc565b61079b565b3480156102de57600080fd5b506102466102ed366004611602565b6107ed565b3480156102fe57600080fd5b5061024661030d366004611602565b61089e565b34801561031e57600080fd5b5061021961032d366004611602565b6108e2565b34801561033e57600080fd5b5061035261034d366004611421565b610917565b6040516101ce9190611c32565b34801561036b57600080fd5b5061024661095b565b34801561038057600080fd5b506102196109a6565b34801561039557600080fd5b506101ec6109b5565b3480156103aa57600080fd5b506102466103b9366004611521565b6109c4565b3480156103ca57600080fd5b506102466103d93660046114a8565b6109d6565b3480156103ea57600080fd5b506101ec6103f9366004611602565b610a15565b34801561040a57600080fd5b50610352610a98565b34801561041f57600080fd5b5061024661042e366004611602565b610a9e565b34801561043f57600080fd5b50610352610ae2565b610246610456366004611602565b610ae8565b34801561046757600080fd5b506101c161047636600461143b565b610b5a565b34801561048757600080fd5b50610352610b88565b34801561049c57600080fd5b506101c1610b8e565b3480156104b157600080fd5b506102466104c0366004611421565b610b97565b60006001600160e01b031982166380ac58cd60e01b14806104f657506001600160e01b03198216635b5e139f60e01b145b80610505575061050582610c08565b90505b919050565b60606000805461051c90611caa565b80601f016020809104026020016040519081016040528092919081815260200182805461054890611caa565b80156105955780601f1061056a57610100808354040283529160200191610595565b820191906000526020600020905b81548152906001019060200180831161057857829003601f168201915b5050505050905090565b60006105aa82610c21565b6105cf5760405162461bcd60e51b81526004016105c690611a44565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105f6826108e2565b9050806001600160a01b0316836001600160a01b0316141561062a5760405162461bcd60e51b81526004016105c690611b5d565b806001600160a01b031661063c610c3e565b6001600160a01b03161480610658575061065881610476610c3e565b6106745760405162461bcd60e51b81526004016105c69061191f565b61067e8383610c42565b505050565b61069461068e610c3e565b82610cb0565b6106b05760405162461bcd60e51b81526004016105c690611b9e565b61067e838383610d35565b6106c3610c3e565b6001600160a01b03166106d46109a6565b6001600160a01b0316146106fa5760405162461bcd60e51b81526004016105c690611a90565b6009805460ff19811660ff90911615179055565b610716610c3e565b6001600160a01b03166107276109a6565b6001600160a01b03161461074d5760405162461bcd60e51b81526004016105c690611a90565b6040514790339082156108fc029083906000818181858888f1935050505015801561077c573d6000803e3d6000fd5b5050565b61067e838383604051806020016040528060008152506109d6565b6107a3610c3e565b6001600160a01b03166107b46109a6565b6001600160a01b0316146107da5760405162461bcd60e51b81526004016105c690611a90565b805161077c90600a906020840190611301565b6107f5610c3e565b6001600160a01b03166108066109a6565b6001600160a01b03161461082c5760405162461bcd60e51b81526004016105c690611a90565b60008111801561083e57506008548111155b61085a5760405162461bcd60e51b81526004016105c690611bef565b61086381610c21565b156108805760405162461bcd60e51b81526004016105c6906117b3565b61088a3382610e62565b600754610898906001611c3b565b60075550565b6108a6610c3e565b6001600160a01b03166108b76109a6565b6001600160a01b0316146108dd5760405162461bcd60e51b81526004016105c690611a90565b600855565b6000818152600260205260408120546001600160a01b0316806105055760405162461bcd60e51b81526004016105c6906119c6565b60006001600160a01b03821661093f5760405162461bcd60e51b81526004016105c69061197c565b506001600160a01b031660009081526003602052604090205490565b610963610c3e565b6001600160a01b03166109746109a6565b6001600160a01b03161461099a5760405162461bcd60e51b81526004016105c690611a90565b6109a46000610e7c565b565b6006546001600160a01b031690565b60606001805461051c90611caa565b61077c6109cf610c3e565b8383610ece565b6109e76109e1610c3e565b83610cb0565b610a035760405162461bcd60e51b81526004016105c690611b9e565b610a0f84848484610f71565b50505050565b6060610a2082610c21565b610a3c5760405162461bcd60e51b81526004016105c690611b0e565b6000610a46610fa4565b90506000815111610a665760405180602001604052806000815250610a91565b80610a7084610fb3565b604051602001610a81929190611646565b6040516020818303038152906040525b9392505050565b60075481565b610aa6610c3e565b6001600160a01b0316610ab76109a6565b6001600160a01b031614610add5760405162461bcd60e51b81526004016105c690611a90565b600b55565b600b5481565b60095460ff16610b0a5760405162461bcd60e51b81526004016105c690611865565b600081118015610b1c57506008548111155b610b385760405162461bcd60e51b81526004016105c690611bef565b600b5434101561085a5760405162461bcd60e51b81526004016105c69061189c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60085481565b60095460ff1681565b610b9f610c3e565b6001600160a01b0316610bb06109a6565b6001600160a01b031614610bd65760405162461bcd60e51b81526004016105c690611a90565b6001600160a01b038116610bfc5760405162461bcd60e51b81526004016105c690611736565b610c0581610e7c565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c77826108e2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610cbb82610c21565b610cd75760405162461bcd60e51b81526004016105c6906118d3565b6000610ce2836108e2565b9050806001600160a01b0316846001600160a01b03161480610d1d5750836001600160a01b0316610d128461059f565b6001600160a01b0316145b80610d2d5750610d2d8185610b5a565b949350505050565b826001600160a01b0316610d48826108e2565b6001600160a01b031614610d6e5760405162461bcd60e51b81526004016105c690611ac5565b6001600160a01b038216610d945760405162461bcd60e51b81526004016105c6906117ea565b610d9f83838361067e565b610daa600082610c42565b6001600160a01b0383166000908152600360205260408120805460019290610dd3908490611c67565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e01908490611c3b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61077c8282604051806020016040528060008152506110ce565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610f005760405162461bcd60e51b81526004016105c69061182e565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190610f649085906116c6565b60405180910390a3505050565b610f7c848484610d35565b610f8884848484611101565b610a0f5760405162461bcd60e51b81526004016105c6906116e4565b6060600a805461051c90611caa565b606081610fd857506040805180820190915260018152600360fc1b6020820152610508565b8160005b81156110025780610fec81611ce5565b9150610ffb9050600a83611c53565b9150610fdc565b60008167ffffffffffffffff81111561102b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611055576020820181803683370190505b5090505b8415610d2d5761106a600183611c67565b9150611077600a86611d00565b611082906030611c3b565b60f81b8183815181106110a557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506110c7600a86611c53565b9450611059565b6110d8838361121c565b6110e56000848484611101565b61067e5760405162461bcd60e51b81526004016105c6906116e4565b6000611115846001600160a01b03166112fb565b1561121157836001600160a01b031663150b7a02611131610c3e565b8786866040518563ffffffff1660e01b81526004016111539493929190611689565b602060405180830381600087803b15801561116d57600080fd5b505af192505050801561119d575060408051601f3d908101601f1916820190925261119a918101906115a0565b60015b6111f7573d8080156111cb576040519150601f19603f3d011682016040523d82523d6000602084013e6111d0565b606091505b5080516111ef5760405162461bcd60e51b81526004016105c6906116e4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d2d565b506001949350505050565b6001600160a01b0382166112425760405162461bcd60e51b81526004016105c690611a0f565b61124b81610c21565b156112685760405162461bcd60e51b81526004016105c69061177c565b6112746000838361067e565b6001600160a01b038216600090815260036020526040812080546001929061129d908490611c3b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461130d90611caa565b90600052602060002090601f01602090048101928261132f5760008555611375565b82601f1061134857805160ff1916838001178555611375565b82800160010185558215611375579182015b8281111561137557825182559160200191906001019061135a565b50611381929150611385565b5090565b5b808211156113815760008155600101611386565b600067ffffffffffffffff808411156113b5576113b5611d40565b604051601f8501601f1916810160200182811182821017156113d9576113d9611d40565b6040528481529150818385018610156113f157600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461050857600080fd5b600060208284031215611432578081fd5b610a918261140a565b6000806040838503121561144d578081fd5b6114568361140a565b91506114646020840161140a565b90509250929050565b600080600060608486031215611481578081fd5b61148a8461140a565b92506114986020850161140a565b9150604084013590509250925092565b600080600080608085870312156114bd578081fd5b6114c68561140a565b93506114d46020860161140a565b925060408501359150606085013567ffffffffffffffff8111156114f6578182fd5b8501601f81018713611506578182fd5b6115158782356020840161139a565b91505092959194509250565b60008060408385031215611533578182fd5b61153c8361140a565b915060208301358015158114611550578182fd5b809150509250929050565b6000806040838503121561156d578182fd5b6115768361140a565b946020939093013593505050565b600060208284031215611595578081fd5b8135610a9181611d56565b6000602082840312156115b1578081fd5b8151610a9181611d56565b6000602082840312156115cd578081fd5b813567ffffffffffffffff8111156115e3578182fd5b8201601f810184136115f3578182fd5b610d2d8482356020840161139a565b600060208284031215611613578081fd5b5035919050565b60008151808452611632816020860160208601611c7e565b601f01601f19169290920160200192915050565b60008351611658818460208801611c7e565b83519083019061166c818360208801611c7e565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116bc9083018461161a565b9695505050505050565b901515815260200190565b600060208252610a91602083018461161a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f54686973205346542077617320616c7265616479206d696e7465640000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f53616c65206d7573742062652061637469766520746f206d696e742053465400604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526023908201527f4d757374205069636b20616e207366742077697468696e2076616c69642072616040820152626e676560e81b606082015260800190565b90815260200190565b60008219821115611c4e57611c4e611d14565b500190565b600082611c6257611c62611d2a565b500490565b600082821015611c7957611c79611d14565b500390565b60005b83811015611c99578181015183820152602001611c81565b83811115610a0f5750506000910152565b600281046001821680611cbe57607f821691505b60208210811415611cdf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cf957611cf9611d14565b5060010190565b600082611d0f57611d0f611d2a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0557600080fdfea264697066735822122082349754fc1264f75ff107ccd41f5cb74cb917904fd568c5cf0fa9d2b82b27b364736f6c63430008000033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c8063715018a6116100ec578063d771f9c71161008a578063e985e9c511610064578063e985e9c51461045b578063eb0c63a21461047b578063eb8d244414610490578063f2fde38b146104a55761019c565b8063d771f9c714610413578063e719ed5e14610433578063e7bd48c7146104485761019c565b8063a22cb465116100c6578063a22cb4651461039e578063b88d4fde146103be578063c87b56dd146103de578063d082e381146103fe5761019c565b8063715018a61461035f5780638da5cb5b1461037457806395d89b41146103895761019c565b80633ccfd60b11610159578063575104921161013357806357510492146102d25780635d67f6a4146102f25780636352211e1461031257806370a08231146103325761019c565b80633ccfd60b1461027d57806342842e0e1461029257806355f804b3146102b25761019c565b806301ffc9a7146101a157806306fdde03146101d7578063081812fc146101f9578063095ea7b31461022657806323b872dd1461024857806334918dfd14610268575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611584565b6104c5565b6040516101ce91906116c6565b60405180910390f35b3480156101e357600080fd5b506101ec61050d565b6040516101ce91906116d1565b34801561020557600080fd5b50610219610214366004611602565b61059f565b6040516101ce9190611675565b34801561023257600080fd5b5061024661024136600461155b565b6105eb565b005b34801561025457600080fd5b5061024661026336600461146d565b610683565b34801561027457600080fd5b506102466106bb565b34801561028957600080fd5b5061024661070e565b34801561029e57600080fd5b506102466102ad36600461146d565b610780565b3480156102be57600080fd5b506102466102cd3660046115bc565b61079b565b3480156102de57600080fd5b506102466102ed366004611602565b6107ed565b3480156102fe57600080fd5b5061024661030d366004611602565b61089e565b34801561031e57600080fd5b5061021961032d366004611602565b6108e2565b34801561033e57600080fd5b5061035261034d366004611421565b610917565b6040516101ce9190611c32565b34801561036b57600080fd5b5061024661095b565b34801561038057600080fd5b506102196109a6565b34801561039557600080fd5b506101ec6109b5565b3480156103aa57600080fd5b506102466103b9366004611521565b6109c4565b3480156103ca57600080fd5b506102466103d93660046114a8565b6109d6565b3480156103ea57600080fd5b506101ec6103f9366004611602565b610a15565b34801561040a57600080fd5b50610352610a98565b34801561041f57600080fd5b5061024661042e366004611602565b610a9e565b34801561043f57600080fd5b50610352610ae2565b610246610456366004611602565b610ae8565b34801561046757600080fd5b506101c161047636600461143b565b610b5a565b34801561048757600080fd5b50610352610b88565b34801561049c57600080fd5b506101c1610b8e565b3480156104b157600080fd5b506102466104c0366004611421565b610b97565b60006001600160e01b031982166380ac58cd60e01b14806104f657506001600160e01b03198216635b5e139f60e01b145b80610505575061050582610c08565b90505b919050565b60606000805461051c90611caa565b80601f016020809104026020016040519081016040528092919081815260200182805461054890611caa565b80156105955780601f1061056a57610100808354040283529160200191610595565b820191906000526020600020905b81548152906001019060200180831161057857829003601f168201915b5050505050905090565b60006105aa82610c21565b6105cf5760405162461bcd60e51b81526004016105c690611a44565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105f6826108e2565b9050806001600160a01b0316836001600160a01b0316141561062a5760405162461bcd60e51b81526004016105c690611b5d565b806001600160a01b031661063c610c3e565b6001600160a01b03161480610658575061065881610476610c3e565b6106745760405162461bcd60e51b81526004016105c69061191f565b61067e8383610c42565b505050565b61069461068e610c3e565b82610cb0565b6106b05760405162461bcd60e51b81526004016105c690611b9e565b61067e838383610d35565b6106c3610c3e565b6001600160a01b03166106d46109a6565b6001600160a01b0316146106fa5760405162461bcd60e51b81526004016105c690611a90565b6009805460ff19811660ff90911615179055565b610716610c3e565b6001600160a01b03166107276109a6565b6001600160a01b03161461074d5760405162461bcd60e51b81526004016105c690611a90565b6040514790339082156108fc029083906000818181858888f1935050505015801561077c573d6000803e3d6000fd5b5050565b61067e838383604051806020016040528060008152506109d6565b6107a3610c3e565b6001600160a01b03166107b46109a6565b6001600160a01b0316146107da5760405162461bcd60e51b81526004016105c690611a90565b805161077c90600a906020840190611301565b6107f5610c3e565b6001600160a01b03166108066109a6565b6001600160a01b03161461082c5760405162461bcd60e51b81526004016105c690611a90565b60008111801561083e57506008548111155b61085a5760405162461bcd60e51b81526004016105c690611bef565b61086381610c21565b156108805760405162461bcd60e51b81526004016105c6906117b3565b61088a3382610e62565b600754610898906001611c3b565b60075550565b6108a6610c3e565b6001600160a01b03166108b76109a6565b6001600160a01b0316146108dd5760405162461bcd60e51b81526004016105c690611a90565b600855565b6000818152600260205260408120546001600160a01b0316806105055760405162461bcd60e51b81526004016105c6906119c6565b60006001600160a01b03821661093f5760405162461bcd60e51b81526004016105c69061197c565b506001600160a01b031660009081526003602052604090205490565b610963610c3e565b6001600160a01b03166109746109a6565b6001600160a01b03161461099a5760405162461bcd60e51b81526004016105c690611a90565b6109a46000610e7c565b565b6006546001600160a01b031690565b60606001805461051c90611caa565b61077c6109cf610c3e565b8383610ece565b6109e76109e1610c3e565b83610cb0565b610a035760405162461bcd60e51b81526004016105c690611b9e565b610a0f84848484610f71565b50505050565b6060610a2082610c21565b610a3c5760405162461bcd60e51b81526004016105c690611b0e565b6000610a46610fa4565b90506000815111610a665760405180602001604052806000815250610a91565b80610a7084610fb3565b604051602001610a81929190611646565b6040516020818303038152906040525b9392505050565b60075481565b610aa6610c3e565b6001600160a01b0316610ab76109a6565b6001600160a01b031614610add5760405162461bcd60e51b81526004016105c690611a90565b600b55565b600b5481565b60095460ff16610b0a5760405162461bcd60e51b81526004016105c690611865565b600081118015610b1c57506008548111155b610b385760405162461bcd60e51b81526004016105c690611bef565b600b5434101561085a5760405162461bcd60e51b81526004016105c69061189c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60085481565b60095460ff1681565b610b9f610c3e565b6001600160a01b0316610bb06109a6565b6001600160a01b031614610bd65760405162461bcd60e51b81526004016105c690611a90565b6001600160a01b038116610bfc5760405162461bcd60e51b81526004016105c690611736565b610c0581610e7c565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c77826108e2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610cbb82610c21565b610cd75760405162461bcd60e51b81526004016105c6906118d3565b6000610ce2836108e2565b9050806001600160a01b0316846001600160a01b03161480610d1d5750836001600160a01b0316610d128461059f565b6001600160a01b0316145b80610d2d5750610d2d8185610b5a565b949350505050565b826001600160a01b0316610d48826108e2565b6001600160a01b031614610d6e5760405162461bcd60e51b81526004016105c690611ac5565b6001600160a01b038216610d945760405162461bcd60e51b81526004016105c6906117ea565b610d9f83838361067e565b610daa600082610c42565b6001600160a01b0383166000908152600360205260408120805460019290610dd3908490611c67565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e01908490611c3b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61077c8282604051806020016040528060008152506110ce565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610f005760405162461bcd60e51b81526004016105c69061182e565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190610f649085906116c6565b60405180910390a3505050565b610f7c848484610d35565b610f8884848484611101565b610a0f5760405162461bcd60e51b81526004016105c6906116e4565b6060600a805461051c90611caa565b606081610fd857506040805180820190915260018152600360fc1b6020820152610508565b8160005b81156110025780610fec81611ce5565b9150610ffb9050600a83611c53565b9150610fdc565b60008167ffffffffffffffff81111561102b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611055576020820181803683370190505b5090505b8415610d2d5761106a600183611c67565b9150611077600a86611d00565b611082906030611c3b565b60f81b8183815181106110a557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506110c7600a86611c53565b9450611059565b6110d8838361121c565b6110e56000848484611101565b61067e5760405162461bcd60e51b81526004016105c6906116e4565b6000611115846001600160a01b03166112fb565b1561121157836001600160a01b031663150b7a02611131610c3e565b8786866040518563ffffffff1660e01b81526004016111539493929190611689565b602060405180830381600087803b15801561116d57600080fd5b505af192505050801561119d575060408051601f3d908101601f1916820190925261119a918101906115a0565b60015b6111f7573d8080156111cb576040519150601f19603f3d011682016040523d82523d6000602084013e6111d0565b606091505b5080516111ef5760405162461bcd60e51b81526004016105c6906116e4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d2d565b506001949350505050565b6001600160a01b0382166112425760405162461bcd60e51b81526004016105c690611a0f565b61124b81610c21565b156112685760405162461bcd60e51b81526004016105c69061177c565b6112746000838361067e565b6001600160a01b038216600090815260036020526040812080546001929061129d908490611c3b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461130d90611caa565b90600052602060002090601f01602090048101928261132f5760008555611375565b82601f1061134857805160ff1916838001178555611375565b82800160010185558215611375579182015b8281111561137557825182559160200191906001019061135a565b50611381929150611385565b5090565b5b808211156113815760008155600101611386565b600067ffffffffffffffff808411156113b5576113b5611d40565b604051601f8501601f1916810160200182811182821017156113d9576113d9611d40565b6040528481529150818385018610156113f157600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461050857600080fd5b600060208284031215611432578081fd5b610a918261140a565b6000806040838503121561144d578081fd5b6114568361140a565b91506114646020840161140a565b90509250929050565b600080600060608486031215611481578081fd5b61148a8461140a565b92506114986020850161140a565b9150604084013590509250925092565b600080600080608085870312156114bd578081fd5b6114c68561140a565b93506114d46020860161140a565b925060408501359150606085013567ffffffffffffffff8111156114f6578182fd5b8501601f81018713611506578182fd5b6115158782356020840161139a565b91505092959194509250565b60008060408385031215611533578182fd5b61153c8361140a565b915060208301358015158114611550578182fd5b809150509250929050565b6000806040838503121561156d578182fd5b6115768361140a565b946020939093013593505050565b600060208284031215611595578081fd5b8135610a9181611d56565b6000602082840312156115b1578081fd5b8151610a9181611d56565b6000602082840312156115cd578081fd5b813567ffffffffffffffff8111156115e3578182fd5b8201601f810184136115f3578182fd5b610d2d8482356020840161139a565b600060208284031215611613578081fd5b5035919050565b60008151808452611632816020860160208601611c7e565b601f01601f19169290920160200192915050565b60008351611658818460208801611c7e565b83519083019061166c818360208801611c7e565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116bc9083018461161a565b9695505050505050565b901515815260200190565b600060208252610a91602083018461161a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f54686973205346542077617320616c7265616479206d696e7465640000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f53616c65206d7573742062652061637469766520746f206d696e742053465400604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526023908201527f4d757374205069636b20616e207366742077697468696e2076616c69642072616040820152626e676560e81b606082015260800190565b90815260200190565b60008219821115611c4e57611c4e611d14565b500190565b600082611c6257611c62611d2a565b500490565b600082821015611c7957611c79611d14565b500390565b60005b83811015611c99578181015183820152602001611c81565b83811115610a0f5750506000910152565b600281046001821680611cbe57607f821691505b60208210811415611cdf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cf957611cf9611d14565b5060010190565b600082611d0f57611d0f611d2a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0557600080fdfea264697066735822122082349754fc1264f75ff107ccd41f5cb74cb917904fd568c5cf0fa9d2b82b27b364736f6c63430008000033

Deployed Bytecode Sourcemap

36290:2099:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23773:305;;;;;;;;;;-1:-1:-1;23773:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24718:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26277:221::-;;;;;;;;;;-1:-1:-1;26277:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25800:411::-;;;;;;;;;;-1:-1:-1;25800:411:0;;;;;:::i;:::-;;:::i;:::-;;27027:339;;;;;;;;;;-1:-1:-1;27027:339:0;;;;;:::i;:::-;;:::i;36884:89::-;;;;;;;;;;;;;:::i;36693:140::-;;;;;;;;;;;;;:::i;27437:185::-;;;;;;;;;;-1:-1:-1;27437:185:0;;;;;:::i;:::-;;:::i;36981:100::-;;;;;;;;;;-1:-1:-1;36981:100:0;;;;;:::i;:::-;;:::i;38043:335::-;;;;;;;;;;-1:-1:-1;38043:335:0;;;;;:::i;:::-;;:::i;37238:95::-;;;;;;;;;;-1:-1:-1;37238:95:0;;;;;:::i;:::-;;:::i;24412:239::-;;;;;;;;;;-1:-1:-1;24412:239:0;;;;;:::i;:::-;;:::i;24142:208::-;;;;;;;;;;-1:-1:-1;24142:208:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2637:103::-;;;;;;;;;;;;;:::i;1986:87::-;;;;;;;;;;;;;:::i;24887:104::-;;;;;;;;;;;;;:::i;26570:155::-;;;;;;;;;;-1:-1:-1;26570:155:0;;;;;:::i;:::-;;:::i;27693:328::-;;;;;;;;;;-1:-1:-1;27693:328:0;;;;;:::i;:::-;;:::i;25062:334::-;;;;;;;;;;-1:-1:-1;25062:334:0;;;;;:::i;:::-;;:::i;36346:31::-;;;;;;;;;;;;;:::i;37384:88::-;;;;;;;;;;-1:-1:-1;37384:88:0;;;;;:::i;:::-;;:::i;36544:43::-;;;;;;;;;;;;;:::i;37524:487::-;;;;;;:::i;:::-;;:::i;26796:164::-;;;;;;;;;;-1:-1:-1;26796:164:0;;;;;:::i;:::-;;:::i;36384:36::-;;;;;;;;;;;;;:::i;36427:32::-;;;;;;;;;;;;;:::i;2895:201::-;;;;;;;;;;-1:-1:-1;2895:201:0;;;;;:::i;:::-;;:::i;23773:305::-;23875:4;-1:-1:-1;;;;;;23912:40:0;;-1:-1:-1;;;23912:40:0;;:105;;-1:-1:-1;;;;;;;23969:48:0;;-1:-1:-1;;;23969:48:0;23912:105;:158;;;;24034:36;24058:11;24034:23;:36::i;:::-;23892:178;;23773:305;;;;:::o;24718:100::-;24772:13;24805:5;24798:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24718:100;:::o;26277:221::-;26353:7;26381:16;26389:7;26381;:16::i;:::-;26373:73;;;;-1:-1:-1;;;26373:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26466:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26466:24:0;;26277:221::o;25800:411::-;25881:13;25897:23;25912:7;25897:14;:23::i;:::-;25881:39;;25945:5;-1:-1:-1;;;;;25939:11:0;:2;-1:-1:-1;;;;;25939:11:0;;;25931:57;;;;-1:-1:-1;;;25931:57:0;;;;;;;:::i;:::-;26039:5;-1:-1:-1;;;;;26023:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26023:21:0;;:62;;;;26048:37;26065:5;26072:12;:10;:12::i;26048:37::-;26001:168;;;;-1:-1:-1;;;26001:168:0;;;;;;;:::i;:::-;26182:21;26191:2;26195:7;26182:8;:21::i;:::-;25800:411;;;:::o;27027:339::-;27222:41;27241:12;:10;:12::i;:::-;27255:7;27222:18;:41::i;:::-;27214:103;;;;-1:-1:-1;;;27214:103:0;;;;;;;:::i;:::-;27330:28;27340:4;27346:2;27350:7;27330:9;:28::i;36884:89::-;2217:12;:10;:12::i;:::-;-1:-1:-1;;;;;2206:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2206:23:0;;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;36953:12:::1;::::0;;-1:-1:-1;;36937:28:0;::::1;36953:12;::::0;;::::1;36952:13;36937:28;::::0;;36884:89::o;36693:140::-;2217:12;:10;:12::i;:::-;-1:-1:-1;;;;;2206:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2206:23:0;;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;36788:37:::1;::::0;36756:21:::1;::::0;36796:10:::1;::::0;36788:37;::::1;;;::::0;36756:21;;36741:12:::1;36788:37:::0;36741:12;36788:37;36756:21;36796:10;36788:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2277:1;36693:140::o:0;27437:185::-;27575:39;27592:4;27598:2;27602:7;27575:39;;;;;;;;;;;;:16;:39::i;36981:100::-;2217:12;:10;:12::i;:::-;-1:-1:-1;;;;;2206:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2206:23:0;;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;37054:19;;::::1;::::0;:7:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;38043:335::-:0;2217:12;:10;:12::i;:::-;-1:-1:-1;;;;;2206:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2206:23:0;;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;38130:1:::1;38117:10;:14;:46;;;;;38148:15;;38135:10;:28;;38117:46;38109:94;;;;-1:-1:-1::0;;;38109:94:0::1;;;;;;;:::i;:::-;38223:19;38231:10;38223:7;:19::i;:::-;38222:20;38214:60;;;;-1:-1:-1::0;;;38214:60:0::1;;;;;;;:::i;:::-;38295:33;38305:10;38317;38295:9;:33::i;:::-;38354:12;::::0;:16:::1;::::0;38369:1:::1;38354:16;:::i;:::-;38339:12;:31:::0;-1:-1:-1;38043:335:0:o;37238:95::-;2217:12;:10;:12::i;:::-;-1:-1:-1;;;;;2206:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2206:23:0;;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;37302:15:::1;:23:::0;37238:95::o;24412:239::-;24484:7;24520:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24520:16:0;24555:19;24547:73;;;;-1:-1:-1;;;24547:73:0;;;;;;;:::i;24142:208::-;24214:7;-1:-1:-1;;;;;24242:19:0;;24234:74;;;;-1:-1:-1;;;24234:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24326:16:0;;;;;:9;:16;;;;;;;24142:208::o;2637:103::-;2217:12;:10;:12::i;:::-;-1:-1:-1;;;;;2206:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2206:23:0;;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;2702:30:::1;2729:1;2702:18;:30::i;:::-;2637:103::o:0;1986:87::-;2059:6;;-1:-1:-1;;;;;2059:6:0;1986:87;:::o;24887:104::-;24943:13;24976:7;24969:14;;;;;:::i;26570:155::-;26665:52;26684:12;:10;:12::i;:::-;26698:8;26708;26665:18;:52::i;27693:328::-;27868:41;27887:12;:10;:12::i;:::-;27901:7;27868:18;:41::i;:::-;27860:103;;;;-1:-1:-1;;;27860:103:0;;;;;;;:::i;:::-;27974:39;27988:4;27994:2;27998:7;28007:5;27974:13;:39::i;:::-;27693:328;;;;:::o;25062:334::-;25135:13;25169:16;25177:7;25169;:16::i;:::-;25161:76;;;;-1:-1:-1;;;25161:76:0;;;;;;;:::i;:::-;25250:21;25274:10;:8;:10::i;:::-;25250:34;;25326:1;25308:7;25302:21;:25;:86;;;;;;;;;;;;;;;;;25354:7;25363:18;:7;:16;:18::i;:::-;25337:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25302:86;25295:93;25062:334;-1:-1:-1;;;25062:334:0:o;36346:31::-;;;;:::o;37384:88::-;2217:12;:10;:12::i;:::-;-1:-1:-1;;;;;2206:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2206:23:0;;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;37448:8:::1;:16:::0;37384:88::o;36544:43::-;;;;:::o;37524:487::-;37607:12;;;;37599:56;;;;-1:-1:-1;;;37599:56:0;;;;;;;:::i;:::-;37687:1;37674:10;:14;:46;;;;;37705:15;;37692:10;:28;;37674:46;37666:94;;;;-1:-1:-1;;;37666:94:0;;;;;;;:::i;:::-;37792:8;;37779:9;:21;;37771:65;;;;-1:-1:-1;;;37771:65:0;;;;;;;:::i;26796:164::-;-1:-1:-1;;;;;26917:25:0;;;26893:4;26917:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26796:164::o;36384:36::-;;;;:::o;36427:32::-;;;;;;:::o;2895:201::-;2217:12;:10;:12::i;:::-;-1:-1:-1;;;;;2206:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2206:23:0;;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2984:22:0;::::1;2976:73;;;;-1:-1:-1::0;;;2976:73:0::1;;;;;;;:::i;:::-;3060:28;3079:8;3060:18;:28::i;:::-;2895:201:::0;:::o;22217:157::-;-1:-1:-1;;;;;;22326:40:0;;-1:-1:-1;;;22326:40:0;22217:157;;;:::o;29531:127::-;29596:4;29620:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29620:16:0;:30;;;29531:127::o;710:98::-;790:10;710:98;:::o;33513:174::-;33588:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33588:29:0;-1:-1:-1;;;;;33588:29:0;;;;;;;;:24;;33642:23;33588:24;33642:14;:23::i;:::-;-1:-1:-1;;;;;33633:46:0;;;;;;;;;;;33513:174;;:::o;29825:348::-;29918:4;29943:16;29951:7;29943;:16::i;:::-;29935:73;;;;-1:-1:-1;;;29935:73:0;;;;;;;:::i;:::-;30019:13;30035:23;30050:7;30035:14;:23::i;:::-;30019:39;;30088:5;-1:-1:-1;;;;;30077:16:0;:7;-1:-1:-1;;;;;30077:16:0;;:51;;;;30121:7;-1:-1:-1;;;;;30097:31:0;:20;30109:7;30097:11;:20::i;:::-;-1:-1:-1;;;;;30097:31:0;;30077:51;:87;;;;30132:32;30149:5;30156:7;30132:16;:32::i;:::-;30069:96;29825:348;-1:-1:-1;;;;29825:348:0:o;32817:578::-;32976:4;-1:-1:-1;;;;;32949:31:0;:23;32964:7;32949:14;:23::i;:::-;-1:-1:-1;;;;;32949:31:0;;32941:85;;;;-1:-1:-1;;;32941:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33045:16:0;;33037:65;;;;-1:-1:-1;;;33037:65:0;;;;;;;:::i;:::-;33115:39;33136:4;33142:2;33146:7;33115:20;:39::i;:::-;33219:29;33236:1;33240:7;33219:8;:29::i;:::-;-1:-1:-1;;;;;33261:15:0;;;;;;:9;:15;;;;;:20;;33280:1;;33261:15;:20;;33280:1;;33261:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33292:13:0;;;;;;:9;:13;;;;;:18;;33309:1;;33292:13;:18;;33309:1;;33292:18;:::i;:::-;;;;-1:-1:-1;;33321:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33321:21:0;-1:-1:-1;;;;;33321:21:0;;;;;;;;;33360:27;;33321:16;;33360:27;;;;;;;32817:578;;;:::o;30515:110::-;30591:26;30601:2;30605:7;30591:26;;;;;;;;;;;;:9;:26::i;3256:191::-;3349:6;;;-1:-1:-1;;;;;3366:17:0;;;-1:-1:-1;;;;;;3366:17:0;;;;;;;3399:40;;3349:6;;;3366:17;3349:6;;3399:40;;3330:16;;3399:40;3256:191;;:::o;33829:315::-;33984:8;-1:-1:-1;;;;;33975:17:0;:5;-1:-1:-1;;;;;33975:17:0;;;33967:55;;;;-1:-1:-1;;;33967:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34033:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;34033:46:0;;;;;;;34095:41;;;;;34033:46;;34095:41;:::i;:::-;;;;;;;;33829:315;;;:::o;28903:::-;29060:28;29070:4;29076:2;29080:7;29060:9;:28::i;:::-;29107:48;29130:4;29136:2;29140:7;29149:5;29107:22;:48::i;:::-;29099:111;;;;-1:-1:-1;;;29099:111:0;;;;;;;:::i;37089:98::-;37140:13;37172:7;37165:14;;;;;:::i;19593:723::-;19649:13;19870:10;19866:53;;-1:-1:-1;19897:10:0;;;;;;;;;;;;-1:-1:-1;;;19897:10:0;;;;;;19866:53;19944:5;19929:12;19985:78;19992:9;;19985:78;;20018:8;;;;:::i;:::-;;-1:-1:-1;20041:10:0;;-1:-1:-1;20049:2:0;20041:10;;:::i;:::-;;;19985:78;;;20073:19;20105:6;20095:17;;;;;;-1:-1:-1;;;20095:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20095:17:0;;20073:39;;20123:154;20130:10;;20123:154;;20157:11;20167:1;20157:11;;:::i;:::-;;-1:-1:-1;20226:10:0;20234:2;20226:5;:10;:::i;:::-;20213:24;;:2;:24;:::i;:::-;20200:39;;20183:6;20190;20183:14;;;;;;-1:-1:-1;;;20183:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;20183:56:0;;;;;;;;-1:-1:-1;20254:11:0;20263:2;20254:11;;:::i;:::-;;;20123:154;;30852:321;30982:18;30988:2;30992:7;30982:5;:18::i;:::-;31033:54;31064:1;31068:2;31072:7;31081:5;31033:22;:54::i;:::-;31011:154;;;;-1:-1:-1;;;31011:154:0;;;;;;;:::i;34709:799::-;34864:4;34885:15;:2;-1:-1:-1;;;;;34885:13:0;;:15::i;:::-;34881:620;;;34937:2;-1:-1:-1;;;;;34921:36:0;;34958:12;:10;:12::i;:::-;34972:4;34978:7;34987:5;34921:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34921:72:0;;;;;;;;-1:-1:-1;;34921:72:0;;;;;;;;;;;;:::i;:::-;;;34917:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35163:13:0;;35159:272;;35206:60;;-1:-1:-1;;;35206:60:0;;;;;;;:::i;35159:272::-;35381:6;35375:13;35366:6;35362:2;35358:15;35351:38;34917:529;-1:-1:-1;;;;;;35044:51:0;-1:-1:-1;;;35044:51:0;;-1:-1:-1;35037:58:0;;34881:620;-1:-1:-1;35485:4:0;34709:799;;;;;;:::o;31509:382::-;-1:-1:-1;;;;;31589:16:0;;31581:61;;;;-1:-1:-1;;;31581:61:0;;;;;;;:::i;:::-;31662:16;31670:7;31662;:16::i;:::-;31661:17;31653:58;;;;-1:-1:-1;;;31653:58:0;;;;;;;:::i;:::-;31724:45;31753:1;31757:2;31761:7;31724:20;:45::i;:::-;-1:-1:-1;;;;;31782:13:0;;;;;;:9;:13;;;;;:18;;31799:1;;31782:13;:18;;31799:1;;31782:18;:::i;:::-;;;;-1:-1:-1;;31811:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31811:21:0;-1:-1:-1;;;;;31811:21:0;;;;;;;;31850:33;;31811:16;;;31850:33;;31811:16;;31850:33;31509:382;;:::o;11897:387::-;12220:20;12268:8;;;11897:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:259::-;;4278:5;4272:12;4305:6;4300:3;4293:19;4321:63;4377:6;4370:4;4365:3;4361:14;4354:4;4347:5;4343:16;4321:63;:::i;:::-;4438:2;4417:15;-1:-1:-1;;4413:29:1;4404:39;;;;4445:4;4400:50;;4248:208;-1:-1:-1;;4248:208:1:o;4461:470::-;;4678:6;4672:13;4694:53;4740:6;4735:3;4728:4;4720:6;4716:17;4694:53;:::i;:::-;4810:13;;4769:16;;;;4832:57;4810:13;4769:16;4866:4;4854:17;;4832:57;:::i;:::-;4905:20;;4648:283;-1:-1:-1;;;;4648:283:1:o;4936:203::-;-1:-1:-1;;;;;5100:32:1;;;;5082:51;;5070:2;5055:18;;5037:102::o;5144:490::-;-1:-1:-1;;;;;5413:15:1;;;5395:34;;5465:15;;5460:2;5445:18;;5438:43;5512:2;5497:18;;5490:34;;;5560:3;5555:2;5540:18;;5533:31;;;5144:490;;5581:47;;5608:19;;5600:6;5581:47;:::i;:::-;5573:55;5347:287;-1:-1:-1;;;;;;5347:287:1:o;5639:187::-;5804:14;;5797:22;5779:41;;5767:2;5752:18;;5734:92::o;5831:221::-;;5980:2;5969:9;5962:21;6000:46;6042:2;6031:9;6027:18;6019:6;6000:46;:::i;6057:414::-;6259:2;6241:21;;;6298:2;6278:18;;;6271:30;6337:34;6332:2;6317:18;;6310:62;-1:-1:-1;;;6403:2:1;6388:18;;6381:48;6461:3;6446:19;;6231:240::o;6476:402::-;6678:2;6660:21;;;6717:2;6697:18;;;6690:30;6756:34;6751:2;6736:18;;6729:62;-1:-1:-1;;;6822:2:1;6807:18;;6800:36;6868:3;6853:19;;6650:228::o;6883:352::-;7085:2;7067:21;;;7124:2;7104:18;;;7097:30;7163;7158:2;7143:18;;7136:58;7226:2;7211:18;;7057:178::o;7240:351::-;7442:2;7424:21;;;7481:2;7461:18;;;7454:30;7520:29;7515:2;7500:18;;7493:57;7582:2;7567:18;;7414:177::o;7596:400::-;7798:2;7780:21;;;7837:2;7817:18;;;7810:30;7876:34;7871:2;7856:18;;7849:62;-1:-1:-1;;;7942:2:1;7927:18;;7920:34;7986:3;7971:19;;7770:226::o;8001:349::-;8203:2;8185:21;;;8242:2;8222:18;;;8215:30;8281:27;8276:2;8261:18;;8254:55;8341:2;8326:18;;8175:175::o;8355:355::-;8557:2;8539:21;;;8596:2;8576:18;;;8569:30;8635:33;8630:2;8615:18;;8608:61;8701:2;8686:18;;8529:181::o;8715:355::-;8917:2;8899:21;;;8956:2;8936:18;;;8929:30;8995:33;8990:2;8975:18;;8968:61;9061:2;9046:18;;8889:181::o;9075:408::-;9277:2;9259:21;;;9316:2;9296:18;;;9289:30;9355:34;9350:2;9335:18;;9328:62;-1:-1:-1;;;9421:2:1;9406:18;;9399:42;9473:3;9458:19;;9249:234::o;9488:420::-;9690:2;9672:21;;;9729:2;9709:18;;;9702:30;9768:34;9763:2;9748:18;;9741:62;9839:26;9834:2;9819:18;;9812:54;9898:3;9883:19;;9662:246::o;9913:406::-;10115:2;10097:21;;;10154:2;10134:18;;;10127:30;10193:34;10188:2;10173:18;;10166:62;-1:-1:-1;;;10259:2:1;10244:18;;10237:40;10309:3;10294:19;;10087:232::o;10324:405::-;10526:2;10508:21;;;10565:2;10545:18;;;10538:30;10604:34;10599:2;10584:18;;10577:62;-1:-1:-1;;;10670:2:1;10655:18;;10648:39;10719:3;10704:19;;10498:231::o;10734:356::-;10936:2;10918:21;;;10955:18;;;10948:30;11014:34;11009:2;10994:18;;10987:62;11081:2;11066:18;;10908:182::o;11095:408::-;11297:2;11279:21;;;11336:2;11316:18;;;11309:30;11375:34;11370:2;11355:18;;11348:62;-1:-1:-1;;;11441:2:1;11426:18;;11419:42;11493:3;11478:19;;11269:234::o;11508:356::-;11710:2;11692:21;;;11729:18;;;11722:30;11788:34;11783:2;11768:18;;11761:62;11855:2;11840:18;;11682:182::o;11869:405::-;12071:2;12053:21;;;12110:2;12090:18;;;12083:30;12149:34;12144:2;12129:18;;12122:62;-1:-1:-1;;;12215:2:1;12200:18;;12193:39;12264:3;12249:19;;12043:231::o;12279:411::-;12481:2;12463:21;;;12520:2;12500:18;;;12493:30;12559:34;12554:2;12539:18;;12532:62;-1:-1:-1;;;12625:2:1;12610:18;;12603:45;12680:3;12665:19;;12453:237::o;12695:397::-;12897:2;12879:21;;;12936:2;12916:18;;;12909:30;12975:34;12970:2;12955:18;;12948:62;-1:-1:-1;;;13041:2:1;13026:18;;13019:31;13082:3;13067:19;;12869:223::o;13097:413::-;13299:2;13281:21;;;13338:2;13318:18;;;13311:30;13377:34;13372:2;13357:18;;13350:62;-1:-1:-1;;;13443:2:1;13428:18;;13421:47;13500:3;13485:19;;13271:239::o;13515:399::-;13717:2;13699:21;;;13756:2;13736:18;;;13729:30;13795:34;13790:2;13775:18;;13768:62;-1:-1:-1;;;13861:2:1;13846:18;;13839:33;13904:3;13889:19;;13689:225::o;13919:177::-;14065:25;;;14053:2;14038:18;;14020:76::o;14101:128::-;;14172:1;14168:6;14165:1;14162:13;14159:2;;;14178:18;;:::i;:::-;-1:-1:-1;14214:9:1;;14149:80::o;14234:120::-;;14300:1;14290:2;;14305:18;;:::i;:::-;-1:-1:-1;14339:9:1;;14280:74::o;14359:125::-;;14427:1;14424;14421:8;14418:2;;;14432:18;;:::i;:::-;-1:-1:-1;14469:9:1;;14408:76::o;14489:258::-;14561:1;14571:113;14585:6;14582:1;14579:13;14571:113;;;14661:11;;;14655:18;14642:11;;;14635:39;14607:2;14600:10;14571:113;;;14702:6;14699:1;14696:13;14693:2;;;-1:-1:-1;;14737:1:1;14719:16;;14712:27;14542:205::o;14752:380::-;14837:1;14827:12;;14884:1;14874:12;;;14895:2;;14949:4;14941:6;14937:17;14927:27;;14895:2;15002;14994:6;14991:14;14971:18;14968:38;14965:2;;;15048:10;15043:3;15039:20;15036:1;15029:31;15083:4;15080:1;15073:15;15111:4;15108:1;15101:15;14965:2;;14807:325;;;:::o;15137:135::-;;-1:-1:-1;;15197:17:1;;15194:2;;;15217:18;;:::i;:::-;-1:-1:-1;15264:1:1;15253:13;;15184:88::o;15277:112::-;;15335:1;15325:2;;15340:18;;:::i;:::-;-1:-1:-1;15374:9:1;;15315:74::o;15394:127::-;15455:10;15450:3;15446:20;15443:1;15436:31;15486:4;15483:1;15476:15;15510:4;15507:1;15500:15;15526:127;15587:10;15582:3;15578:20;15575:1;15568:31;15618:4;15615:1;15608:15;15642:4;15639:1;15632:15;15658:127;15719:10;15714:3;15710:20;15707:1;15700:31;15750:4;15747:1;15740:15;15774:4;15771:1;15764:15;15790:133;-1:-1:-1;;;;;;15866:32:1;;15856:43;;15846:2;;15913:1;15910;15903:12

Swarm Source

ipfs://82349754fc1264f75ff107ccd41f5cb74cb917904fd568c5cf0fa9d2b82b27b3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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