ETH Price: $2,468.97 (-7.86%)

Token

Kruisy Krocs (KK)
 

Overview

Max Total Supply

444 KK

Holders

72

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 KK
0x2749Af4bef7c7042D37DEeFA7978Dc325f461eb0
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:
KKToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

// File: contracts/KKK.sol


pragma solidity ^0.8;

//import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";



contract KKToken is ERC721, Ownable {

    uint public constant MAX_NFT_SUPPLY = 5001;
    uint public NFT_PRICE;

    string BASE_URI;

    bool public isSaleActive;

    
    uint public totalSupply;

    mapping(address => uint) public mintedNFTs;

    constructor () ERC721("Kruisy Krocs", "KK") {
        isSaleActive = true;
        NFT_PRICE = 0.035 ether;
        BASE_URI = "https://kruisykrocs.herokuapp.com/api/token/";
    }

    function setSaleActiveness(bool _isSaleActive) public onlyOwner {
        isSaleActive = _isSaleActive;
    }

    function setBaseUri(string memory _baseURIArg) public onlyOwner {
        BASE_URI = _baseURIArg;
    }

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

   function mint(uint256 amount) external payable {
        require(isSaleActive, "Sale has not started.");
        require(amount > 0, "Amount of tokens must be positive");
        require(totalSupply + amount <= MAX_NFT_SUPPLY, "MAX_NFT_SUPPLY constraint violation");

        
        require(msg.value >= NFT_PRICE * amount, "Wrong ether value.");

        mintedNFTs[msg.sender] += amount;

        for (uint i = 0; i < amount; i++) {
            _safeMint(msg.sender, totalSupply + i);
            
        }
        totalSupply += amount;
    }

   

    function setPrice(uint256 amount) public onlyOwner {
      NFT_PRICE = amount;
    }

   function withdraw() public payable onlyOwner {
    (bool success, ) = payable(owner()).call{value: address(this).balance}("");
    require(success);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURIArg","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isSaleActive","type":"bool"}],"name":"setSaleActiveness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600c81526b4b7275697379204b726f637360a01b6020808301918252835180850190945260028452614b4b60f01b908401528151919291620000609160009162000137565b5080516200007690600190602084019062000137565b505050620000936200008d620000e160201b60201c565b620000e5565b6009805460ff19166001179055667c5850872380006007556040805160608101909152602c80825262001e6a60208301398051620000da9160089160209091019062000137565b506200021a565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014590620001dd565b90600052602060002090601f016020900481019282620001695760008555620001b4565b82601f106200018457805160ff1916838001178555620001b4565b82800160010185558215620001b4579182015b82811115620001b457825182559160200191906001019062000197565b50620001c2929150620001c6565b5090565b5b80821115620001c25760008155600101620001c7565b600181811c90821680620001f257607f821691505b602082108114156200021457634e487b7160e01b600052602260045260246000fd5b50919050565b611c40806200022a6000396000f3fe6080604052600436106101815760003560e01c8063715018a6116100d1578063a22cb4651161008a578063ba060bed11610064578063ba060bed14610424578063c87b56dd14610451578063e985e9c514610471578063f2fde38b146104ba57600080fd5b8063a22cb465146103ce578063b5077f44146103ee578063b88d4fde1461040457600080fd5b8063715018a6146103335780638da5cb5b1461034857806391b7f5ed1461036657806395d89b4114610386578063a0712d681461039b578063a0bcfc7f146103ae57600080fd5b80633ccfd60b1161013e5780636352211e116101185780636352211e146102bd578063676dd563146102dd5780636bd4b093146102f357806370a082311461031357600080fd5b80633ccfd60b1461027b57806342842e0e14610283578063564566a8146102a357600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd1461023757806323b872dd1461025b575b600080fd5b34801561019257600080fd5b506101a66101a1366004611885565b6104da565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d061052c565b6040516101b291906119b9565b3480156101e957600080fd5b506101fd6101f8366004611908565b6105be565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611840565b610658565b005b34801561024357600080fd5b5061024d600a5481565b6040519081526020016101b2565b34801561026757600080fd5b5061023561027636600461175e565b61076e565b61023561079f565b34801561028f57600080fd5b5061023561029e36600461175e565b61083d565b3480156102af57600080fd5b506009546101a69060ff1681565b3480156102c957600080fd5b506101fd6102d8366004611908565b610858565b3480156102e957600080fd5b5061024d60075481565b3480156102ff57600080fd5b5061023561030e36600461186a565b6108cf565b34801561031f57600080fd5b5061024d61032e366004611710565b61090c565b34801561033f57600080fd5b50610235610993565b34801561035457600080fd5b506006546001600160a01b03166101fd565b34801561037257600080fd5b50610235610381366004611908565b6109c9565b34801561039257600080fd5b506101d06109f8565b6102356103a9366004611908565b610a07565b3480156103ba57600080fd5b506102356103c93660046118bf565b610bdc565b3480156103da57600080fd5b506102356103e9366004611816565b610c1d565b3480156103fa57600080fd5b5061024d61138981565b34801561041057600080fd5b5061023561041f36600461179a565b610c28565b34801561043057600080fd5b5061024d61043f366004611710565b600b6020526000908152604090205481565b34801561045d57600080fd5b506101d061046c366004611908565b610c60565b34801561047d57600080fd5b506101a661048c36600461172b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104c657600080fd5b506102356104d5366004611710565b610d3b565b60006001600160e01b031982166380ac58cd60e01b148061050b57506001600160e01b03198216635b5e139f60e01b145b8061052657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461053b90611b32565b80601f016020809104026020016040519081016040528092919081815260200182805461056790611b32565b80156105b45780601f10610589576101008083540402835291602001916105b4565b820191906000526020600020905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661063c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061066382610858565b9050806001600160a01b0316836001600160a01b031614156106d15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610633565b336001600160a01b03821614806106ed57506106ed813361048c565b61075f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610633565b6107698383610dd3565b505050565b6107783382610e41565b6107945760405162461bcd60e51b815260040161063390611a53565b610769838383610f38565b6006546001600160a01b031633146107c95760405162461bcd60e51b815260040161063390611a1e565b60006107dd6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610827576040519150601f19603f3d011682016040523d82523d6000602084013e61082c565b606091505b505090508061083a57600080fd5b50565b61076983838360405180602001604052806000815250610c28565b6000818152600260205260408120546001600160a01b0316806105265760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610633565b6006546001600160a01b031633146108f95760405162461bcd60e51b815260040161063390611a1e565b6009805460ff1916911515919091179055565b60006001600160a01b0382166109775760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610633565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109bd5760405162461bcd60e51b815260040161063390611a1e565b6109c760006110d8565b565b6006546001600160a01b031633146109f35760405162461bcd60e51b815260040161063390611a1e565b600755565b60606001805461053b90611b32565b60095460ff16610a515760405162461bcd60e51b815260206004820152601560248201527429b0b632903430b9903737ba1039ba30b93a32b21760591b6044820152606401610633565b60008111610aab5760405162461bcd60e51b815260206004820152602160248201527f416d6f756e74206f6620746f6b656e73206d75737420626520706f73697469766044820152606560f81b6064820152608401610633565b61138981600a54610abc9190611aa4565b1115610b165760405162461bcd60e51b815260206004820152602360248201527f4d41585f4e46545f535550504c5920636f6e73747261696e742076696f6c617460448201526234b7b760e91b6064820152608401610633565b80600754610b249190611ad0565b341015610b685760405162461bcd60e51b81526020600482015260126024820152712bb937b7339032ba3432b9103b30b63ab29760711b6044820152606401610633565b336000908152600b602052604081208054839290610b87908490611aa4565b90915550600090505b81811015610bc157610baf3382600a54610baa9190611aa4565b61112a565b80610bb981611b6d565b915050610b90565b5080600a6000828254610bd49190611aa4565b909155505050565b6006546001600160a01b03163314610c065760405162461bcd60e51b815260040161063390611a1e565b8051610c199060089060208401906115d5565b5050565b610c19338383611144565b610c323383610e41565b610c4e5760405162461bcd60e51b815260040161063390611a53565b610c5a84848484611213565b50505050565b6000818152600260205260409020546060906001600160a01b0316610cdf5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610633565b6000610ce9611246565b90506000815111610d095760405180602001604052806000815250610d34565b80610d1384611255565b604051602001610d2492919061194d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610d655760405162461bcd60e51b815260040161063390611a1e565b6001600160a01b038116610dca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610633565b61083a816110d8565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e0882610858565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610eba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610633565b6000610ec583610858565b9050806001600160a01b0316846001600160a01b03161480610f005750836001600160a01b0316610ef5846105be565b6001600160a01b0316145b80610f3057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f4b82610858565b6001600160a01b031614610fb35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610633565b6001600160a01b0382166110155760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610633565b611020600082610dd3565b6001600160a01b0383166000908152600360205260408120805460019290611049908490611aef565b90915550506001600160a01b0382166000908152600360205260408120805460019290611077908490611aa4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c19828260405180602001604052806000815250611353565b816001600160a01b0316836001600160a01b031614156111a65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610633565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61121e848484610f38565b61122a84848484611386565b610c5a5760405162461bcd60e51b8152600401610633906119cc565b60606008805461053b90611b32565b6060816112795750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112a3578061128d81611b6d565b915061129c9050600a83611abc565b915061127d565b60008167ffffffffffffffff8111156112be576112be611bde565b6040519080825280601f01601f1916602001820160405280156112e8576020820181803683370190505b5090505b8415610f30576112fd600183611aef565b915061130a600a86611b88565b611315906030611aa4565b60f81b81838151811061132a5761132a611bc8565b60200101906001600160f81b031916908160001a90535061134c600a86611abc565b94506112ec565b61135d8383611493565b61136a6000848484611386565b6107695760405162461bcd60e51b8152600401610633906119cc565b60006001600160a01b0384163b1561148857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113ca90339089908890889060040161197c565b602060405180830381600087803b1580156113e457600080fd5b505af1925050508015611414575060408051601f3d908101601f19168201909252611411918101906118a2565b60015b61146e573d808015611442576040519150601f19603f3d011682016040523d82523d6000602084013e611447565b606091505b5080516114665760405162461bcd60e51b8152600401610633906119cc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f30565b506001949350505050565b6001600160a01b0382166114e95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610633565b6000818152600260205260409020546001600160a01b03161561154e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610633565b6001600160a01b0382166000908152600360205260408120805460019290611577908490611aa4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546115e190611b32565b90600052602060002090601f0160209004810192826116035760008555611649565b82601f1061161c57805160ff1916838001178555611649565b82800160010185558215611649579182015b8281111561164957825182559160200191906001019061162e565b50611655929150611659565b5090565b5b80821115611655576000815560010161165a565b600067ffffffffffffffff8084111561168957611689611bde565b604051601f8501601f19908116603f011681019082821181831017156116b1576116b1611bde565b816040528093508581528686860111156116ca57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146116fb57600080fd5b919050565b803580151581146116fb57600080fd5b60006020828403121561172257600080fd5b610d34826116e4565b6000806040838503121561173e57600080fd5b611747836116e4565b9150611755602084016116e4565b90509250929050565b60008060006060848603121561177357600080fd5b61177c846116e4565b925061178a602085016116e4565b9150604084013590509250925092565b600080600080608085870312156117b057600080fd5b6117b9856116e4565b93506117c7602086016116e4565b925060408501359150606085013567ffffffffffffffff8111156117ea57600080fd5b8501601f810187136117fb57600080fd5b61180a8782356020840161166e565b91505092959194509250565b6000806040838503121561182957600080fd5b611832836116e4565b915061175560208401611700565b6000806040838503121561185357600080fd5b61185c836116e4565b946020939093013593505050565b60006020828403121561187c57600080fd5b610d3482611700565b60006020828403121561189757600080fd5b8135610d3481611bf4565b6000602082840312156118b457600080fd5b8151610d3481611bf4565b6000602082840312156118d157600080fd5b813567ffffffffffffffff8111156118e857600080fd5b8201601f810184136118f957600080fd5b610f308482356020840161166e565b60006020828403121561191a57600080fd5b5035919050565b60008151808452611939816020860160208601611b06565b601f01601f19169290920160200192915050565b6000835161195f818460208801611b06565b835190830190611973818360208801611b06565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119af90830184611921565b9695505050505050565b602081526000610d346020830184611921565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611ab757611ab7611b9c565b500190565b600082611acb57611acb611bb2565b500490565b6000816000190483118215151615611aea57611aea611b9c565b500290565b600082821015611b0157611b01611b9c565b500390565b60005b83811015611b21578181015183820152602001611b09565b83811115610c5a5750506000910152565b600181811c90821680611b4657607f821691505b60208210811415611b6757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b8157611b81611b9c565b5060010190565b600082611b9757611b97611bb2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461083a57600080fdfea26469706673582212206487feb17ea0fed9688f7a9f520d575fcdbe4b15397d748234fd8e2d0a3d56ab64736f6c6343000807003368747470733a2f2f6b72756973796b726f63732e6865726f6b756170702e636f6d2f6170692f746f6b656e2f

Deployed Bytecode

0x6080604052600436106101815760003560e01c8063715018a6116100d1578063a22cb4651161008a578063ba060bed11610064578063ba060bed14610424578063c87b56dd14610451578063e985e9c514610471578063f2fde38b146104ba57600080fd5b8063a22cb465146103ce578063b5077f44146103ee578063b88d4fde1461040457600080fd5b8063715018a6146103335780638da5cb5b1461034857806391b7f5ed1461036657806395d89b4114610386578063a0712d681461039b578063a0bcfc7f146103ae57600080fd5b80633ccfd60b1161013e5780636352211e116101185780636352211e146102bd578063676dd563146102dd5780636bd4b093146102f357806370a082311461031357600080fd5b80633ccfd60b1461027b57806342842e0e14610283578063564566a8146102a357600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd1461023757806323b872dd1461025b575b600080fd5b34801561019257600080fd5b506101a66101a1366004611885565b6104da565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d061052c565b6040516101b291906119b9565b3480156101e957600080fd5b506101fd6101f8366004611908565b6105be565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611840565b610658565b005b34801561024357600080fd5b5061024d600a5481565b6040519081526020016101b2565b34801561026757600080fd5b5061023561027636600461175e565b61076e565b61023561079f565b34801561028f57600080fd5b5061023561029e36600461175e565b61083d565b3480156102af57600080fd5b506009546101a69060ff1681565b3480156102c957600080fd5b506101fd6102d8366004611908565b610858565b3480156102e957600080fd5b5061024d60075481565b3480156102ff57600080fd5b5061023561030e36600461186a565b6108cf565b34801561031f57600080fd5b5061024d61032e366004611710565b61090c565b34801561033f57600080fd5b50610235610993565b34801561035457600080fd5b506006546001600160a01b03166101fd565b34801561037257600080fd5b50610235610381366004611908565b6109c9565b34801561039257600080fd5b506101d06109f8565b6102356103a9366004611908565b610a07565b3480156103ba57600080fd5b506102356103c93660046118bf565b610bdc565b3480156103da57600080fd5b506102356103e9366004611816565b610c1d565b3480156103fa57600080fd5b5061024d61138981565b34801561041057600080fd5b5061023561041f36600461179a565b610c28565b34801561043057600080fd5b5061024d61043f366004611710565b600b6020526000908152604090205481565b34801561045d57600080fd5b506101d061046c366004611908565b610c60565b34801561047d57600080fd5b506101a661048c36600461172b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104c657600080fd5b506102356104d5366004611710565b610d3b565b60006001600160e01b031982166380ac58cd60e01b148061050b57506001600160e01b03198216635b5e139f60e01b145b8061052657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461053b90611b32565b80601f016020809104026020016040519081016040528092919081815260200182805461056790611b32565b80156105b45780601f10610589576101008083540402835291602001916105b4565b820191906000526020600020905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661063c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061066382610858565b9050806001600160a01b0316836001600160a01b031614156106d15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610633565b336001600160a01b03821614806106ed57506106ed813361048c565b61075f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610633565b6107698383610dd3565b505050565b6107783382610e41565b6107945760405162461bcd60e51b815260040161063390611a53565b610769838383610f38565b6006546001600160a01b031633146107c95760405162461bcd60e51b815260040161063390611a1e565b60006107dd6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610827576040519150601f19603f3d011682016040523d82523d6000602084013e61082c565b606091505b505090508061083a57600080fd5b50565b61076983838360405180602001604052806000815250610c28565b6000818152600260205260408120546001600160a01b0316806105265760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610633565b6006546001600160a01b031633146108f95760405162461bcd60e51b815260040161063390611a1e565b6009805460ff1916911515919091179055565b60006001600160a01b0382166109775760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610633565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109bd5760405162461bcd60e51b815260040161063390611a1e565b6109c760006110d8565b565b6006546001600160a01b031633146109f35760405162461bcd60e51b815260040161063390611a1e565b600755565b60606001805461053b90611b32565b60095460ff16610a515760405162461bcd60e51b815260206004820152601560248201527429b0b632903430b9903737ba1039ba30b93a32b21760591b6044820152606401610633565b60008111610aab5760405162461bcd60e51b815260206004820152602160248201527f416d6f756e74206f6620746f6b656e73206d75737420626520706f73697469766044820152606560f81b6064820152608401610633565b61138981600a54610abc9190611aa4565b1115610b165760405162461bcd60e51b815260206004820152602360248201527f4d41585f4e46545f535550504c5920636f6e73747261696e742076696f6c617460448201526234b7b760e91b6064820152608401610633565b80600754610b249190611ad0565b341015610b685760405162461bcd60e51b81526020600482015260126024820152712bb937b7339032ba3432b9103b30b63ab29760711b6044820152606401610633565b336000908152600b602052604081208054839290610b87908490611aa4565b90915550600090505b81811015610bc157610baf3382600a54610baa9190611aa4565b61112a565b80610bb981611b6d565b915050610b90565b5080600a6000828254610bd49190611aa4565b909155505050565b6006546001600160a01b03163314610c065760405162461bcd60e51b815260040161063390611a1e565b8051610c199060089060208401906115d5565b5050565b610c19338383611144565b610c323383610e41565b610c4e5760405162461bcd60e51b815260040161063390611a53565b610c5a84848484611213565b50505050565b6000818152600260205260409020546060906001600160a01b0316610cdf5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610633565b6000610ce9611246565b90506000815111610d095760405180602001604052806000815250610d34565b80610d1384611255565b604051602001610d2492919061194d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610d655760405162461bcd60e51b815260040161063390611a1e565b6001600160a01b038116610dca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610633565b61083a816110d8565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e0882610858565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610eba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610633565b6000610ec583610858565b9050806001600160a01b0316846001600160a01b03161480610f005750836001600160a01b0316610ef5846105be565b6001600160a01b0316145b80610f3057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f4b82610858565b6001600160a01b031614610fb35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610633565b6001600160a01b0382166110155760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610633565b611020600082610dd3565b6001600160a01b0383166000908152600360205260408120805460019290611049908490611aef565b90915550506001600160a01b0382166000908152600360205260408120805460019290611077908490611aa4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c19828260405180602001604052806000815250611353565b816001600160a01b0316836001600160a01b031614156111a65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610633565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61121e848484610f38565b61122a84848484611386565b610c5a5760405162461bcd60e51b8152600401610633906119cc565b60606008805461053b90611b32565b6060816112795750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112a3578061128d81611b6d565b915061129c9050600a83611abc565b915061127d565b60008167ffffffffffffffff8111156112be576112be611bde565b6040519080825280601f01601f1916602001820160405280156112e8576020820181803683370190505b5090505b8415610f30576112fd600183611aef565b915061130a600a86611b88565b611315906030611aa4565b60f81b81838151811061132a5761132a611bc8565b60200101906001600160f81b031916908160001a90535061134c600a86611abc565b94506112ec565b61135d8383611493565b61136a6000848484611386565b6107695760405162461bcd60e51b8152600401610633906119cc565b60006001600160a01b0384163b1561148857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113ca90339089908890889060040161197c565b602060405180830381600087803b1580156113e457600080fd5b505af1925050508015611414575060408051601f3d908101601f19168201909252611411918101906118a2565b60015b61146e573d808015611442576040519150601f19603f3d011682016040523d82523d6000602084013e611447565b606091505b5080516114665760405162461bcd60e51b8152600401610633906119cc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f30565b506001949350505050565b6001600160a01b0382166114e95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610633565b6000818152600260205260409020546001600160a01b03161561154e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610633565b6001600160a01b0382166000908152600360205260408120805460019290611577908490611aa4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546115e190611b32565b90600052602060002090601f0160209004810192826116035760008555611649565b82601f1061161c57805160ff1916838001178555611649565b82800160010185558215611649579182015b8281111561164957825182559160200191906001019061162e565b50611655929150611659565b5090565b5b80821115611655576000815560010161165a565b600067ffffffffffffffff8084111561168957611689611bde565b604051601f8501601f19908116603f011681019082821181831017156116b1576116b1611bde565b816040528093508581528686860111156116ca57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146116fb57600080fd5b919050565b803580151581146116fb57600080fd5b60006020828403121561172257600080fd5b610d34826116e4565b6000806040838503121561173e57600080fd5b611747836116e4565b9150611755602084016116e4565b90509250929050565b60008060006060848603121561177357600080fd5b61177c846116e4565b925061178a602085016116e4565b9150604084013590509250925092565b600080600080608085870312156117b057600080fd5b6117b9856116e4565b93506117c7602086016116e4565b925060408501359150606085013567ffffffffffffffff8111156117ea57600080fd5b8501601f810187136117fb57600080fd5b61180a8782356020840161166e565b91505092959194509250565b6000806040838503121561182957600080fd5b611832836116e4565b915061175560208401611700565b6000806040838503121561185357600080fd5b61185c836116e4565b946020939093013593505050565b60006020828403121561187c57600080fd5b610d3482611700565b60006020828403121561189757600080fd5b8135610d3481611bf4565b6000602082840312156118b457600080fd5b8151610d3481611bf4565b6000602082840312156118d157600080fd5b813567ffffffffffffffff8111156118e857600080fd5b8201601f810184136118f957600080fd5b610f308482356020840161166e565b60006020828403121561191a57600080fd5b5035919050565b60008151808452611939816020860160208601611b06565b601f01601f19169290920160200192915050565b6000835161195f818460208801611b06565b835190830190611973818360208801611b06565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119af90830184611921565b9695505050505050565b602081526000610d346020830184611921565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611ab757611ab7611b9c565b500190565b600082611acb57611acb611bb2565b500490565b6000816000190483118215151615611aea57611aea611b9c565b500290565b600082821015611b0157611b01611b9c565b500390565b60005b83811015611b21578181015183820152602001611b09565b83811115610c5a5750506000910152565b600181811c90821680611b4657607f821691505b60208210811415611b6757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b8157611b81611b9c565b5060010190565b600082611b9757611b97611bb2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461083a57600080fdfea26469706673582212206487feb17ea0fed9688f7a9f520d575fcdbe4b15397d748234fd8e2d0a3d56ab64736f6c63430008070033

Deployed Bytecode Sourcemap

36327:1643:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23742:305;;;;;;;;;;-1:-1:-1;23742:305:0;;;;;:::i;:::-;;:::i;:::-;;;6113:14:1;;6106:22;6088:41;;6076:2;6061:18;23742:305:0;;;;;;;;24687:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26246:221::-;;;;;;;;;;-1:-1:-1;26246:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5411:32:1;;;5393:51;;5381:2;5366:18;26246:221:0;5247:203:1;25769:411:0;;;;;;;;;;-1:-1:-1;25769:411:0;;;;;:::i;:::-;;:::i;:::-;;36514:23;;;;;;;;;;;;;;;;;;;14395:25:1;;;14383:2;14368:18;36514:23:0;14249:177:1;26996:339:0;;;;;;;;;;-1:-1:-1;26996:339:0;;;;;:::i;:::-;;:::i;37808:157::-;;;:::i;27406:185::-;;;;;;;;;;-1:-1:-1;27406:185:0;;;;;:::i;:::-;;:::i;36475:24::-;;;;;;;;;;-1:-1:-1;36475:24:0;;;;;;;;24381:239;;;;;;;;;;-1:-1:-1;24381:239:0;;;;;:::i;:::-;;:::i;36421:21::-;;;;;;;;;;;;;;;;36789:111;;;;;;;;;;-1:-1:-1;36789:111:0;;;;;:::i;:::-;;:::i;24111:208::-;;;;;;;;;;-1:-1:-1;24111:208:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;37715:86;;;;;;;;;;-1:-1:-1;37715:86:0;;;;;:::i;:::-;;:::i;24856:104::-;;;;;;;;;;;;;:::i;37137:563::-;;;;;;:::i;:::-;;:::i;36908:105::-;;;;;;;;;;-1:-1:-1;36908:105:0;;;;;:::i;:::-;;:::i;26539:155::-;;;;;;;;;;-1:-1:-1;26539:155:0;;;;;:::i;:::-;;:::i;36372:42::-;;;;;;;;;;;;36410:4;36372:42;;27662:328;;;;;;;;;;-1:-1:-1;27662:328:0;;;;;:::i;:::-;;:::i;36546:42::-;;;;;;;;;;-1:-1:-1;36546:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;25031:334;;;;;;;;;;-1:-1:-1;25031:334:0;;;;;:::i;:::-;;:::i;26765:164::-;;;;;;;;;;-1:-1:-1;26765:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26886:25:0;;;26862:4;26886:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26765:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;23742:305::-;23844:4;-1:-1:-1;;;;;;23881:40:0;;-1:-1:-1;;;23881:40:0;;:105;;-1:-1:-1;;;;;;;23938:48:0;;-1:-1:-1;;;23938:48:0;23881:105;:158;;;-1:-1:-1;;;;;;;;;;16620:40:0;;;24003:36;23861:178;23742:305;-1:-1:-1;;23742:305:0:o;24687:100::-;24741:13;24774:5;24767:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24687:100;:::o;26246:221::-;26322:7;29589:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29589:16:0;26342:73;;;;-1:-1:-1;;;26342:73:0;;11629:2:1;26342:73:0;;;11611:21:1;11668:2;11648:18;;;11641:30;11707:34;11687:18;;;11680:62;-1:-1:-1;;;11758:18:1;;;11751:42;11810:19;;26342:73:0;;;;;;;;;-1:-1:-1;26435:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26435:24:0;;26246:221::o;25769:411::-;25850:13;25866:23;25881:7;25866:14;:23::i;:::-;25850:39;;25914:5;-1:-1:-1;;;;;25908:11:0;:2;-1:-1:-1;;;;;25908:11:0;;;25900:57;;;;-1:-1:-1;;;25900:57:0;;13229:2:1;25900:57:0;;;13211:21:1;13268:2;13248:18;;;13241:30;13307:34;13287:18;;;13280:62;-1:-1:-1;;;13358:18:1;;;13351:31;13399:19;;25900:57:0;13027:397:1;25900:57:0;2883:10;-1:-1:-1;;;;;25992:21:0;;;;:62;;-1:-1:-1;26017:37:0;26034:5;2883:10;26765:164;:::i;26017:37::-;25970:168;;;;-1:-1:-1;;;25970:168:0;;10022:2:1;25970:168:0;;;10004:21:1;10061:2;10041:18;;;10034:30;10100:34;10080:18;;;10073:62;10171:26;10151:18;;;10144:54;10215:19;;25970:168:0;9820:420:1;25970:168:0;26151:21;26160:2;26164:7;26151:8;:21::i;:::-;25839:341;25769:411;;:::o;26996:339::-;27191:41;2883:10;27224:7;27191:18;:41::i;:::-;27183:103;;;;-1:-1:-1;;;27183:103:0;;;;;;;:::i;:::-;27299:28;27309:4;27315:2;27319:7;27299:9;:28::i;37808:157::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;37861:12:::1;37887:7;4152:6:::0;;-1:-1:-1;;;;;4152:6:0;;4079:87;37887:7:::1;-1:-1:-1::0;;;;;37879:21:0::1;37908;37879:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37860:74;;;37949:7;37941:16;;;::::0;::::1;;37853:112;37808:157::o:0;27406:185::-;27544:39;27561:4;27567:2;27571:7;27544:39;;;;;;;;;;;;:16;:39::i;24381:239::-;24453:7;24489:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24489:16:0;24524:19;24516:73;;;;-1:-1:-1;;;24516:73:0;;10858:2:1;24516:73:0;;;10840:21:1;10897:2;10877:18;;;10870:30;10936:34;10916:18;;;10909:62;-1:-1:-1;;;10987:18:1;;;10980:39;11036:19;;24516:73:0;10656:405:1;36789:111:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;36864:12:::1;:28:::0;;-1:-1:-1;;36864:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36789:111::o;24111:208::-;24183:7;-1:-1:-1;;;;;24211:19:0;;24203:74;;;;-1:-1:-1;;;24203:74:0;;10447:2:1;24203:74:0;;;10429:21:1;10486:2;10466:18;;;10459:30;10525:34;10505:18;;;10498:62;-1:-1:-1;;;10576:18:1;;;10569:40;10626:19;;24203:74:0;10245:406:1;24203:74:0;-1:-1:-1;;;;;;24295:16:0;;;;;:9;:16;;;;;;;24111:208::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;37715:86::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;37775:9:::1;:18:::0;37715:86::o;24856:104::-;24912:13;24945:7;24938:14;;;;;:::i;37137:563::-;37203:12;;;;37195:46;;;;-1:-1:-1;;;37195:46:0;;6566:2:1;37195:46:0;;;6548:21:1;6605:2;6585:18;;;6578:30;-1:-1:-1;;;6624:18:1;;;6617:51;6685:18;;37195:46:0;6364:345:1;37195:46:0;37269:1;37260:6;:10;37252:56;;;;-1:-1:-1;;;37252:56:0;;13631:2:1;37252:56:0;;;13613:21:1;13670:2;13650:18;;;13643:30;13709:34;13689:18;;;13682:62;-1:-1:-1;;;13760:18:1;;;13753:31;13801:19;;37252:56:0;13429:397:1;37252:56:0;36410:4;37341:6;37327:11;;:20;;;;:::i;:::-;:38;;37319:86;;;;-1:-1:-1;;;37319:86:0;;8099:2:1;37319:86:0;;;8081:21:1;8138:2;8118:18;;;8111:30;8177:34;8157:18;;;8150:62;-1:-1:-1;;;8228:18:1;;;8221:33;8271:19;;37319:86:0;7897:399:1;37319:86:0;37461:6;37449:9;;:18;;;;:::i;:::-;37436:9;:31;;37428:62;;;;-1:-1:-1;;;37428:62:0;;9675:2:1;37428:62:0;;;9657:21:1;9714:2;9694:18;;;9687:30;-1:-1:-1;;;9733:18:1;;;9726:48;9791:18;;37428:62:0;9473:342:1;37428:62:0;37514:10;37503:22;;;;:10;:22;;;;;:32;;37529:6;;37503:22;:32;;37529:6;;37503:32;:::i;:::-;;;;-1:-1:-1;37553:6:0;;-1:-1:-1;37548:113:0;37569:6;37565:1;:10;37548:113;;;37597:38;37607:10;37633:1;37619:11;;:15;;;;:::i;:::-;37597:9;:38::i;:::-;37577:3;;;;:::i;:::-;;;;37548:113;;;;37686:6;37671:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;37137:563:0:o;36908:105::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;36983:22;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;36908:105:::0;:::o;26539:155::-;26634:52;2883:10;26667:8;26677;26634:18;:52::i;27662:328::-;27837:41;2883:10;27870:7;27837:18;:41::i;:::-;27829:103;;;;-1:-1:-1;;;27829:103:0;;;;;;;:::i;:::-;27943:39;27957:4;27963:2;27967:7;27976:5;27943:13;:39::i;:::-;27662:328;;;;:::o;25031:334::-;29565:4;29589:16;;;:7;:16;;;;;;25104:13;;-1:-1:-1;;;;;29589:16:0;25130:76;;;;-1:-1:-1;;;25130:76:0;;12813:2:1;25130:76:0;;;12795:21:1;12852:2;12832:18;;;12825:30;12891:34;12871:18;;;12864:62;-1:-1:-1;;;12942:18:1;;;12935:45;12997:19;;25130:76:0;12611:411:1;25130:76:0;25219:21;25243:10;:8;:10::i;:::-;25219:34;;25295:1;25277:7;25271:21;:25;:86;;;;;;;;;;;;;;;;;25323:7;25332:18;:7;:16;:18::i;:::-;25306:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25271:86;25264:93;25031:334;-1:-1:-1;;;25031:334:0:o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;7335:2:1;5069:73:0::1;::::0;::::1;7317:21:1::0;7374:2;7354:18;;;7347:30;7413:34;7393:18;;;7386:62;-1:-1:-1;;;7464:18:1;;;7457:36;7510:19;;5069:73:0::1;7133:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;33482:174::-:0;33557:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33557:29:0;-1:-1:-1;;;;;33557:29:0;;;;;;;;:24;;33611:23;33557:24;33611:14;:23::i;:::-;-1:-1:-1;;;;;33602:46:0;;;;;;;;;;;33482:174;;:::o;29794:348::-;29887:4;29589:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29589:16:0;29904:73;;;;-1:-1:-1;;;29904:73:0;;9262:2:1;29904:73:0;;;9244:21:1;9301:2;9281:18;;;9274:30;9340:34;9320:18;;;9313:62;-1:-1:-1;;;9391:18:1;;;9384:42;9443:19;;29904:73:0;9060:408:1;29904:73:0;29988:13;30004:23;30019:7;30004:14;:23::i;:::-;29988:39;;30057:5;-1:-1:-1;;;;;30046:16:0;:7;-1:-1:-1;;;;;30046:16:0;;:51;;;;30090:7;-1:-1:-1;;;;;30066:31:0;:20;30078:7;30066:11;:20::i;:::-;-1:-1:-1;;;;;30066:31:0;;30046:51;:87;;;-1:-1:-1;;;;;;26886:25:0;;;26862:4;26886:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30101:32;30038:96;29794:348;-1:-1:-1;;;;29794:348:0:o;32786:578::-;32945:4;-1:-1:-1;;;;;32918:31:0;:23;32933:7;32918:14;:23::i;:::-;-1:-1:-1;;;;;32918:31:0;;32910:85;;;;-1:-1:-1;;;32910:85:0;;12403:2:1;32910:85:0;;;12385:21:1;12442:2;12422:18;;;12415:30;12481:34;12461:18;;;12454:62;-1:-1:-1;;;12532:18:1;;;12525:39;12581:19;;32910:85:0;12201:405:1;32910:85:0;-1:-1:-1;;;;;33014:16:0;;33006:65;;;;-1:-1:-1;;;33006:65:0;;8503:2:1;33006:65:0;;;8485:21:1;8542:2;8522:18;;;8515:30;8581:34;8561:18;;;8554:62;-1:-1:-1;;;8632:18:1;;;8625:34;8676:19;;33006:65:0;8301:400:1;33006:65:0;33188:29;33205:1;33209:7;33188:8;:29::i;:::-;-1:-1:-1;;;;;33230:15:0;;;;;;:9;:15;;;;;:20;;33249:1;;33230:15;:20;;33249:1;;33230:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33261:13:0;;;;;;:9;:13;;;;;:18;;33278:1;;33261:13;:18;;33278:1;;33261:18;:::i;:::-;;;;-1:-1:-1;;33290:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33290:21:0;-1:-1:-1;;;;;33290:21:0;;;;;;;;;33329:27;;33290:16;;33329:27;;;;;;;32786:578;;;:::o;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;30484:110::-;30560:26;30570:2;30574:7;30560:26;;;;;;;;;;;;:9;:26::i;33798:315::-;33953:8;-1:-1:-1;;;;;33944:17:0;:5;-1:-1:-1;;;;;33944:17:0;;;33936:55;;;;-1:-1:-1;;;33936:55:0;;8908:2:1;33936:55:0;;;8890:21:1;8947:2;8927:18;;;8920:30;8986:27;8966:18;;;8959:55;9031:18;;33936:55:0;8706:349:1;33936:55:0;-1:-1:-1;;;;;34002:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34002:46:0;;;;;;;;;;34064:41;;6088::1;;;34064::0;;6061:18:1;34064:41:0;;;;;;;33798:315;;;:::o;28872:::-;29029:28;29039:4;29045:2;29049:7;29029:9;:28::i;:::-;29076:48;29099:4;29105:2;29109:7;29118:5;29076:22;:48::i;:::-;29068:111;;;;-1:-1:-1;;;29068:111:0;;;;;;;:::i;37021:109::-;37081:13;37114:8;37107:15;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;30821:321;30951:18;30957:2;30961:7;30951:5;:18::i;:::-;31002:54;31033:1;31037:2;31041:7;31050:5;31002:22;:54::i;:::-;30980:154;;;;-1:-1:-1;;;30980:154:0;;;;;;;:::i;34678:799::-;34833:4;-1:-1:-1;;;;;34854:13:0;;6690:20;6738:8;34850:620;;34890:72;;-1:-1:-1;;;34890:72:0;;-1:-1:-1;;;;;34890:36:0;;;;;:72;;2883:10;;34941:4;;34947:7;;34956:5;;34890:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34890:72:0;;;;;;;;-1:-1:-1;;34890:72:0;;;;;;;;;;;;:::i;:::-;;;34886:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35132:13:0;;35128:272;;35175:60;;-1:-1:-1;;;35175:60:0;;;;;;;:::i;35128:272::-;35350:6;35344:13;35335:6;35331:2;35327:15;35320:38;34886:529;-1:-1:-1;;;;;;35013:51:0;-1:-1:-1;;;35013:51:0;;-1:-1:-1;35006:58:0;;34850:620;-1:-1:-1;35454:4:0;34678:799;;;;;;:::o;31478:382::-;-1:-1:-1;;;;;31558:16:0;;31550:61;;;;-1:-1:-1;;;31550:61:0;;11268:2:1;31550:61:0;;;11250:21:1;;;11287:18;;;11280:30;11346:34;11326:18;;;11319:62;11398:18;;31550:61:0;11066:356:1;31550:61:0;29565:4;29589:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29589:16:0;:30;31622:58;;;;-1:-1:-1;;;31622:58:0;;7742:2:1;31622:58:0;;;7724:21:1;7781:2;7761:18;;;7754:30;7820;7800:18;;;7793:58;7868:18;;31622:58:0;7540:352:1;31622:58:0;-1:-1:-1;;;;;31751:13:0;;;;;;:9;:13;;;;;:18;;31768:1;;31751:13;:18;;31768:1;;31751:18;:::i;:::-;;;;-1:-1:-1;;31780:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31780:21:0;-1:-1:-1;;;;;31780:21:0;;;;;;;;31819:33;;31780:16;;;31819:33;;31780:16;;31819:33;31478:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5455:488::-;-1:-1:-1;;;;;5724:15:1;;;5706:34;;5776:15;;5771:2;5756:18;;5749:43;5823:2;5808:18;;5801:34;;;5871:3;5866:2;5851:18;;5844:31;;;5649:4;;5892:45;;5917:19;;5909:6;5892:45;:::i;:::-;5884:53;5455:488;-1:-1:-1;;;;;;5455:488:1:o;6140:219::-;6289:2;6278:9;6271:21;6252:4;6309:44;6349:2;6338:9;6334:18;6326:6;6309:44;:::i;6714:414::-;6916:2;6898:21;;;6955:2;6935:18;;;6928:30;6994:34;6989:2;6974:18;;6967:62;-1:-1:-1;;;7060:2:1;7045:18;;7038:48;7118:3;7103:19;;6714:414::o;11840:356::-;12042:2;12024:21;;;12061:18;;;12054:30;12120:34;12115:2;12100:18;;12093:62;12187:2;12172:18;;11840:356::o;13831:413::-;14033:2;14015:21;;;14072:2;14052:18;;;14045:30;14111:34;14106:2;14091:18;;14084:62;-1:-1:-1;;;14177:2:1;14162:18;;14155:47;14234:3;14219:19;;13831:413::o;14431:128::-;14471:3;14502:1;14498:6;14495:1;14492:13;14489:39;;;14508:18;;:::i;:::-;-1:-1:-1;14544:9:1;;14431:128::o;14564:120::-;14604:1;14630;14620:35;;14635:18;;:::i;:::-;-1:-1:-1;14669:9:1;;14564:120::o;14689:168::-;14729:7;14795:1;14791;14787:6;14783:14;14780:1;14777:21;14772:1;14765:9;14758:17;14754:45;14751:71;;;14802:18;;:::i;:::-;-1:-1:-1;14842:9:1;;14689:168::o;14862:125::-;14902:4;14930:1;14927;14924:8;14921:34;;;14935:18;;:::i;:::-;-1:-1:-1;14972:9:1;;14862:125::o;14992:258::-;15064:1;15074:113;15088:6;15085:1;15082:13;15074:113;;;15164:11;;;15158:18;15145:11;;;15138:39;15110:2;15103:10;15074:113;;;15205:6;15202:1;15199:13;15196:48;;;-1:-1:-1;;15240:1:1;15222:16;;15215:27;14992:258::o;15255:380::-;15334:1;15330:12;;;;15377;;;15398:61;;15452:4;15444:6;15440:17;15430:27;;15398:61;15505:2;15497:6;15494:14;15474:18;15471:38;15468:161;;;15551:10;15546:3;15542:20;15539:1;15532:31;15586:4;15583:1;15576:15;15614:4;15611:1;15604:15;15468:161;;15255:380;;;:::o;15640:135::-;15679:3;-1:-1:-1;;15700:17:1;;15697:43;;;15720:18;;:::i;:::-;-1:-1:-1;15767:1:1;15756:13;;15640:135::o;15780:112::-;15812:1;15838;15828:35;;15843:18;;:::i;:::-;-1:-1:-1;15877:9:1;;15780:112::o;15897:127::-;15958:10;15953:3;15949:20;15946:1;15939:31;15989:4;15986:1;15979:15;16013:4;16010:1;16003:15;16029:127;16090:10;16085:3;16081:20;16078:1;16071:31;16121:4;16118:1;16111:15;16145:4;16142:1;16135:15;16161:127;16222:10;16217:3;16213:20;16210:1;16203:31;16253:4;16250:1;16243:15;16277:4;16274:1;16267:15;16293:127;16354:10;16349:3;16345:20;16342:1;16335:31;16385:4;16382:1;16375:15;16409:4;16406:1;16399:15;16425:131;-1:-1:-1;;;;;;16499:32:1;;16489:43;;16479:71;;16546:1;16543;16536:12

Swarm Source

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