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

Token

DoodleKingz (DK)
 

Overview

Max Total Supply

0 DK

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 DK
0x5154907dDD93199a0bdcab7179f4F4D957454490
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:
DoodleKingz

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: UNLICENSED
// 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/Context.sol


// 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/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/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/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/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/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/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/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/DoodleKaijus.sol


pragma solidity ^0.8.11;



contract DoodleKingz is ERC721, Ownable {
  
  string baseURI = "ipfs://QmNxMprjdYaGCcxL9ttGLKzbFv791Mk9QZPiq6Tn51Ztsa/";
  uint256 public cost = 0.033 ether;
  uint256 public maxSupply = 3333;
  uint256 public maxMintAmount = 20;
  bool public paused = true;
  address addr = 0x18E5baBCD4d0A717c40ACAD02c56bdc2d84cA8be;
  address payable public payments = payable(addr);
  uint256 supply = 0;

  constructor() ERC721("DoodleKingz", "DK") {
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner() && supply > 150) {
      require(msg.value >= cost * _mintAmount);
    }

    
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
    supply = supply + _mintAmount;
  }

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

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

  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);
  }
    
  //only owner
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(payments).call{value: address(this).balance}("");
    require(os);
  }

}

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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payments","outputs":[{"internalType":"address payable","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":"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":[{"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"}]

60e0604052603660808181529062001bb460a039805162000029916007916020909101906200017d565b5066753d533d968000600855610d056009556014600a55600b80547418e5babcd4d0a717c40acad02c56bdc2d84ca8be016001600160a81b03199091161790819055600c80546001600160a01b0319166101009092046001600160a01b03169190911790556000600d55348015620000a057600080fd5b50604080518082018252600b81526a2237b7b23632a5b4b733bd60a91b602080830191825283518085019094526002845261444b60f01b908401528151919291620000ee916000916200017d565b508051620001049060019060208401906200017d565b505050620001216200011b6200012760201b60201c565b6200012b565b62000260565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200018b9062000223565b90600052602060002090601f016020900481019282620001af5760008555620001fa565b82601f10620001ca57805160ff1916838001178555620001fa565b82800160010185558215620001fa579182015b82811115620001fa578251825591602001919060010190620001dd565b50620002089291506200020c565b5090565b5b808211156200020857600081556001016200020d565b600181811c908216806200023857607f821691505b602082108114156200025a57634e487b7160e01b600052602260045260246000fd5b50919050565b61194480620002706000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063a6d23e101161006f578063a6d23e1014610378578063b88d4fde14610398578063c87b56dd146103b8578063d5abeb01146103d8578063e985e9c5146103ee578063f2fde38b1461043757600080fd5b806370a08231146102dd578063715018a6146102fd5780638da5cb5b1461031257806395d89b4114610330578063a0712d6814610345578063a22cb4651461035857600080fd5b8063239c70ae11610108578063239c70ae1461024557806323b872dd1461025b5780633ccfd60b1461027b57806342842e0e146102835780635c975abb146102a35780636352211e146102bd57600080fd5b806301ffc9a71461015057806302329a291461018557806306fdde03146101a7578063081812fc146101c9578063095ea7b31461020157806313faede614610221575b600080fd5b34801561015c57600080fd5b5061017061016b3660046113d7565b610457565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b506101a56101a0366004611409565b6104a9565b005b3480156101b357600080fd5b506101bc6104ef565b60405161017c919061147c565b3480156101d557600080fd5b506101e96101e436600461148f565b610581565b6040516001600160a01b03909116815260200161017c565b34801561020d57600080fd5b506101a561021c3660046114bf565b610616565b34801561022d57600080fd5b5061023760085481565b60405190815260200161017c565b34801561025157600080fd5b50610237600a5481565b34801561026757600080fd5b506101a56102763660046114e9565b61072c565b6101a561075d565b34801561028f57600080fd5b506101a561029e3660046114e9565b6107ea565b3480156102af57600080fd5b50600b546101709060ff1681565b3480156102c957600080fd5b506101e96102d836600461148f565b610805565b3480156102e957600080fd5b506102376102f8366004611525565b61087c565b34801561030957600080fd5b506101a5610903565b34801561031e57600080fd5b506006546001600160a01b03166101e9565b34801561033c57600080fd5b506101bc610939565b6101a561035336600461148f565b610948565b34801561036457600080fd5b506101a5610373366004611540565b610a14565b34801561038457600080fd5b50600c546101e9906001600160a01b031681565b3480156103a457600080fd5b506101a56103b3366004611589565b610a23565b3480156103c457600080fd5b506101bc6103d336600461148f565b610a5b565b3480156103e457600080fd5b5061023760095481565b3480156103fa57600080fd5b50610170610409366004611665565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561044357600080fd5b506101a5610452366004611525565b610b36565b60006001600160e01b031982166380ac58cd60e01b148061048857506001600160e01b03198216635b5e139f60e01b145b806104a357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146104dc5760405162461bcd60e51b81526004016104d39061168f565b60405180910390fd5b600b805460ff1916911515919091179055565b6060600080546104fe906116c4565b80601f016020809104026020016040519081016040528092919081815260200182805461052a906116c4565b80156105775780601f1061054c57610100808354040283529160200191610577565b820191906000526020600020905b81548152906001019060200180831161055a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105fa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104d3565b506000908152600460205260409020546001600160a01b031690565b600061062182610805565b9050806001600160a01b0316836001600160a01b0316141561068f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104d3565b336001600160a01b03821614806106ab57506106ab8133610409565b61071d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104d3565b6107278383610bce565b505050565b6107363382610c3c565b6107525760405162461bcd60e51b81526004016104d3906116ff565b610727838383610d33565b6006546001600160a01b031633146107875760405162461bcd60e51b81526004016104d39061168f565b600c546040516000916001600160a01b03169047908381818185875af1925050503d80600081146107d4576040519150601f19603f3d011682016040523d82523d6000602084013e6107d9565b606091505b50509050806107e757600080fd5b50565b61072783838360405180602001604052806000815250610a23565b6000818152600260205260408120546001600160a01b0316806104a35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104d3565b60006001600160a01b0382166108e75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104d3565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461092d5760405162461bcd60e51b81526004016104d39061168f565b6109376000610ed3565b565b6060600180546104fe906116c4565b600b5460ff161561095857600080fd5b6000811161096557600080fd5b600a5481111561097457600080fd5b60095481600d546109859190611766565b111561099057600080fd5b6006546001600160a01b031633148015906109ad57506096600d54115b156109cc57806008546109c0919061177e565b3410156109cc57600080fd5b60015b8181116109ff576109ed3382600d546109e89190611766565b610f25565b806109f78161179d565b9150506109cf565b5080600d54610a0e9190611766565b600d5550565b610a1f338383610f3f565b5050565b610a2d3383610c3c565b610a495760405162461bcd60e51b81526004016104d3906116ff565b610a558484848461100e565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ada5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104d3565b6000610ae4611041565b90506000815111610b045760405180602001604052806000815250610b2f565b80610b0e84611050565b604051602001610b1f9291906117b8565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610b605760405162461bcd60e51b81526004016104d39061168f565b6001600160a01b038116610bc55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104d3565b6107e781610ed3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c0382610805565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610cb55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104d3565b6000610cc083610805565b9050806001600160a01b0316846001600160a01b03161480610cfb5750836001600160a01b0316610cf084610581565b6001600160a01b0316145b80610d2b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610d4682610805565b6001600160a01b031614610dae5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104d3565b6001600160a01b038216610e105760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104d3565b610e1b600082610bce565b6001600160a01b0383166000908152600360205260408120805460019290610e449084906117f7565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e72908490611766565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a1f82826040518060200160405280600081525061114e565b816001600160a01b0316836001600160a01b03161415610fa15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104d3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611019848484610d33565b61102584848484611181565b610a555760405162461bcd60e51b81526004016104d39061180e565b6060600780546104fe906116c4565b6060816110745750506040805180820190915260018152600360fc1b602082015290565b8160005b811561109e57806110888161179d565b91506110979050600a83611876565b9150611078565b60008167ffffffffffffffff8111156110b9576110b9611573565b6040519080825280601f01601f1916602001820160405280156110e3576020820181803683370190505b5090505b8415610d2b576110f86001836117f7565b9150611105600a8661188a565b611110906030611766565b60f81b8183815181106111255761112561189e565b60200101906001600160f81b031916908160001a905350611147600a86611876565b94506110e7565b611158838361127f565b6111656000848484611181565b6107275760405162461bcd60e51b81526004016104d39061180e565b60006001600160a01b0384163b1561127457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111c59033908990889088906004016118b4565b6020604051808303816000875af1925050508015611200575060408051601f3d908101601f191682019092526111fd918101906118f1565b60015b61125a573d80801561122e576040519150601f19603f3d011682016040523d82523d6000602084013e611233565b606091505b5080516112525760405162461bcd60e51b81526004016104d39061180e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d2b565b506001949350505050565b6001600160a01b0382166112d55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104d3565b6000818152600260205260409020546001600160a01b03161561133a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104d3565b6001600160a01b0382166000908152600360205260408120805460019290611363908490611766565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146107e757600080fd5b6000602082840312156113e957600080fd5b8135610b2f816113c1565b8035801515811461140457600080fd5b919050565b60006020828403121561141b57600080fd5b610b2f826113f4565b60005b8381101561143f578181015183820152602001611427565b83811115610a555750506000910152565b60008151808452611468816020860160208601611424565b601f01601f19169290920160200192915050565b602081526000610b2f6020830184611450565b6000602082840312156114a157600080fd5b5035919050565b80356001600160a01b038116811461140457600080fd5b600080604083850312156114d257600080fd5b6114db836114a8565b946020939093013593505050565b6000806000606084860312156114fe57600080fd5b611507846114a8565b9250611515602085016114a8565b9150604084013590509250925092565b60006020828403121561153757600080fd5b610b2f826114a8565b6000806040838503121561155357600080fd5b61155c836114a8565b915061156a602084016113f4565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561159f57600080fd5b6115a8856114a8565b93506115b6602086016114a8565b925060408501359150606085013567ffffffffffffffff808211156115da57600080fd5b818701915087601f8301126115ee57600080fd5b81358181111561160057611600611573565b604051601f8201601f19908116603f0116810190838211818310171561162857611628611573565b816040528281528a602084870101111561164157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561167857600080fd5b611681836114a8565b915061156a602084016114a8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806116d857607f821691505b602082108114156116f957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561177957611779611750565b500190565b600081600019048311821515161561179857611798611750565b500290565b60006000198214156117b1576117b1611750565b5060010190565b600083516117ca818460208801611424565b8351908301906117de818360208801611424565b64173539b7b760d91b9101908152600501949350505050565b60008282101561180957611809611750565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261188557611885611860565b500490565b60008261189957611899611860565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118e790830184611450565b9695505050505050565b60006020828403121561190357600080fd5b8151610b2f816113c156fea26469706673582212200d16a6d73370ef3ad5c1b354700c6f5811550b4174ead274ef4121b1a96e2f3564736f6c634300080b0033697066733a2f2f516d4e784d70726a645961474363784c397474474c4b7a6246763739314d6b39515a50697136546e35315a7473612f

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063a6d23e101161006f578063a6d23e1014610378578063b88d4fde14610398578063c87b56dd146103b8578063d5abeb01146103d8578063e985e9c5146103ee578063f2fde38b1461043757600080fd5b806370a08231146102dd578063715018a6146102fd5780638da5cb5b1461031257806395d89b4114610330578063a0712d6814610345578063a22cb4651461035857600080fd5b8063239c70ae11610108578063239c70ae1461024557806323b872dd1461025b5780633ccfd60b1461027b57806342842e0e146102835780635c975abb146102a35780636352211e146102bd57600080fd5b806301ffc9a71461015057806302329a291461018557806306fdde03146101a7578063081812fc146101c9578063095ea7b31461020157806313faede614610221575b600080fd5b34801561015c57600080fd5b5061017061016b3660046113d7565b610457565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b506101a56101a0366004611409565b6104a9565b005b3480156101b357600080fd5b506101bc6104ef565b60405161017c919061147c565b3480156101d557600080fd5b506101e96101e436600461148f565b610581565b6040516001600160a01b03909116815260200161017c565b34801561020d57600080fd5b506101a561021c3660046114bf565b610616565b34801561022d57600080fd5b5061023760085481565b60405190815260200161017c565b34801561025157600080fd5b50610237600a5481565b34801561026757600080fd5b506101a56102763660046114e9565b61072c565b6101a561075d565b34801561028f57600080fd5b506101a561029e3660046114e9565b6107ea565b3480156102af57600080fd5b50600b546101709060ff1681565b3480156102c957600080fd5b506101e96102d836600461148f565b610805565b3480156102e957600080fd5b506102376102f8366004611525565b61087c565b34801561030957600080fd5b506101a5610903565b34801561031e57600080fd5b506006546001600160a01b03166101e9565b34801561033c57600080fd5b506101bc610939565b6101a561035336600461148f565b610948565b34801561036457600080fd5b506101a5610373366004611540565b610a14565b34801561038457600080fd5b50600c546101e9906001600160a01b031681565b3480156103a457600080fd5b506101a56103b3366004611589565b610a23565b3480156103c457600080fd5b506101bc6103d336600461148f565b610a5b565b3480156103e457600080fd5b5061023760095481565b3480156103fa57600080fd5b50610170610409366004611665565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561044357600080fd5b506101a5610452366004611525565b610b36565b60006001600160e01b031982166380ac58cd60e01b148061048857506001600160e01b03198216635b5e139f60e01b145b806104a357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146104dc5760405162461bcd60e51b81526004016104d39061168f565b60405180910390fd5b600b805460ff1916911515919091179055565b6060600080546104fe906116c4565b80601f016020809104026020016040519081016040528092919081815260200182805461052a906116c4565b80156105775780601f1061054c57610100808354040283529160200191610577565b820191906000526020600020905b81548152906001019060200180831161055a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105fa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104d3565b506000908152600460205260409020546001600160a01b031690565b600061062182610805565b9050806001600160a01b0316836001600160a01b0316141561068f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104d3565b336001600160a01b03821614806106ab57506106ab8133610409565b61071d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104d3565b6107278383610bce565b505050565b6107363382610c3c565b6107525760405162461bcd60e51b81526004016104d3906116ff565b610727838383610d33565b6006546001600160a01b031633146107875760405162461bcd60e51b81526004016104d39061168f565b600c546040516000916001600160a01b03169047908381818185875af1925050503d80600081146107d4576040519150601f19603f3d011682016040523d82523d6000602084013e6107d9565b606091505b50509050806107e757600080fd5b50565b61072783838360405180602001604052806000815250610a23565b6000818152600260205260408120546001600160a01b0316806104a35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104d3565b60006001600160a01b0382166108e75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104d3565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461092d5760405162461bcd60e51b81526004016104d39061168f565b6109376000610ed3565b565b6060600180546104fe906116c4565b600b5460ff161561095857600080fd5b6000811161096557600080fd5b600a5481111561097457600080fd5b60095481600d546109859190611766565b111561099057600080fd5b6006546001600160a01b031633148015906109ad57506096600d54115b156109cc57806008546109c0919061177e565b3410156109cc57600080fd5b60015b8181116109ff576109ed3382600d546109e89190611766565b610f25565b806109f78161179d565b9150506109cf565b5080600d54610a0e9190611766565b600d5550565b610a1f338383610f3f565b5050565b610a2d3383610c3c565b610a495760405162461bcd60e51b81526004016104d3906116ff565b610a558484848461100e565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ada5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104d3565b6000610ae4611041565b90506000815111610b045760405180602001604052806000815250610b2f565b80610b0e84611050565b604051602001610b1f9291906117b8565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610b605760405162461bcd60e51b81526004016104d39061168f565b6001600160a01b038116610bc55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104d3565b6107e781610ed3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c0382610805565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610cb55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104d3565b6000610cc083610805565b9050806001600160a01b0316846001600160a01b03161480610cfb5750836001600160a01b0316610cf084610581565b6001600160a01b0316145b80610d2b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610d4682610805565b6001600160a01b031614610dae5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104d3565b6001600160a01b038216610e105760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104d3565b610e1b600082610bce565b6001600160a01b0383166000908152600360205260408120805460019290610e449084906117f7565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e72908490611766565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a1f82826040518060200160405280600081525061114e565b816001600160a01b0316836001600160a01b03161415610fa15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104d3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611019848484610d33565b61102584848484611181565b610a555760405162461bcd60e51b81526004016104d39061180e565b6060600780546104fe906116c4565b6060816110745750506040805180820190915260018152600360fc1b602082015290565b8160005b811561109e57806110888161179d565b91506110979050600a83611876565b9150611078565b60008167ffffffffffffffff8111156110b9576110b9611573565b6040519080825280601f01601f1916602001820160405280156110e3576020820181803683370190505b5090505b8415610d2b576110f86001836117f7565b9150611105600a8661188a565b611110906030611766565b60f81b8183815181106111255761112561189e565b60200101906001600160f81b031916908160001a905350611147600a86611876565b94506110e7565b611158838361127f565b6111656000848484611181565b6107275760405162461bcd60e51b81526004016104d39061180e565b60006001600160a01b0384163b1561127457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111c59033908990889088906004016118b4565b6020604051808303816000875af1925050508015611200575060408051601f3d908101601f191682019092526111fd918101906118f1565b60015b61125a573d80801561122e576040519150601f19603f3d011682016040523d82523d6000602084013e611233565b606091505b5080516112525760405162461bcd60e51b81526004016104d39061180e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d2b565b506001949350505050565b6001600160a01b0382166112d55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104d3565b6000818152600260205260409020546001600160a01b03161561133a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104d3565b6001600160a01b0382166000908152600360205260408120805460019290611363908490611766565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146107e757600080fd5b6000602082840312156113e957600080fd5b8135610b2f816113c1565b8035801515811461140457600080fd5b919050565b60006020828403121561141b57600080fd5b610b2f826113f4565b60005b8381101561143f578181015183820152602001611427565b83811115610a555750506000910152565b60008151808452611468816020860160208601611424565b601f01601f19169290920160200192915050565b602081526000610b2f6020830184611450565b6000602082840312156114a157600080fd5b5035919050565b80356001600160a01b038116811461140457600080fd5b600080604083850312156114d257600080fd5b6114db836114a8565b946020939093013593505050565b6000806000606084860312156114fe57600080fd5b611507846114a8565b9250611515602085016114a8565b9150604084013590509250925092565b60006020828403121561153757600080fd5b610b2f826114a8565b6000806040838503121561155357600080fd5b61155c836114a8565b915061156a602084016113f4565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561159f57600080fd5b6115a8856114a8565b93506115b6602086016114a8565b925060408501359150606085013567ffffffffffffffff808211156115da57600080fd5b818701915087601f8301126115ee57600080fd5b81358181111561160057611600611573565b604051601f8201601f19908116603f0116810190838211818310171561162857611628611573565b816040528281528a602084870101111561164157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561167857600080fd5b611681836114a8565b915061156a602084016114a8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806116d857607f821691505b602082108114156116f957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561177957611779611750565b500190565b600081600019048311821515161561179857611798611750565b500290565b60006000198214156117b1576117b1611750565b5060010190565b600083516117ca818460208801611424565b8351908301906117de818360208801611424565b64173539b7b760d91b9101908152600501949350505050565b60008282101561180957611809611750565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261188557611885611860565b500490565b60008261189957611899611860565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118e790830184611450565b9695505050505050565b60006020828403121561190357600080fd5b8151610b2f816113c156fea26469706673582212200d16a6d73370ef3ad5c1b354700c6f5811550b4174ead274ef4121b1a96e2f3564736f6c634300080b0033

Deployed Bytecode Sourcemap

36295:2390:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23782:305;;;;;;;;;;-1:-1:-1;23782:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23782:305:0;;;;;;;;38454:73;;;;;;;;;;-1:-1:-1;38454:73:0;;;;;:::i;:::-;;:::i;:::-;;24727:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26286:221::-;;;;;;;;;;-1:-1:-1;26286:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;26286:221:0;1878:203:1;25809:411:0;;;;;;;;;;-1:-1:-1;25809:411:0;;;;;:::i;:::-;;:::i;36422:33::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;36422:33:0;2523:177:1;36496:33:0;;;;;;;;;;;;;;;;27036:339;;;;;;;;;;-1:-1:-1;27036:339:0;;;;;:::i;:::-;;:::i;38534:146::-;;;:::i;27446:185::-;;;;;;;;;;-1:-1:-1;27446:185:0;;;;;:::i;:::-;;:::i;36534:25::-;;;;;;;;;;-1:-1:-1;36534:25:0;;;;;;;;24421:239;;;;;;;;;;-1:-1:-1;24421:239:0;;;;;:::i;:::-;;:::i;24151:208::-;;;;;;;;;;-1:-1:-1;24151:208:0;;;;;:::i;:::-;;:::i;4770:103::-;;;;;;;;;;;;;:::i;4119:87::-;;;;;;;;;;-1:-1:-1;4192:6:0;;-1:-1:-1;;;;;4192:6:0;4119:87;;24896:104;;;;;;;;;;;;;:::i;36893:454::-;;;;;;:::i;:::-;;:::i;26579:155::-;;;;;;;;;;-1:-1:-1;26579:155:0;;;;;:::i;:::-;;:::i;36626:47::-;;;;;;;;;;-1:-1:-1;36626:47:0;;;;-1:-1:-1;;;;;36626:47:0;;;27702:328;;;;;;;;;;-1:-1:-1;27702:328:0;;;;;:::i;:::-;;:::i;37353:416::-;;;;;;;;;;-1:-1:-1;37353:416:0;;;;;:::i;:::-;;:::i;36460:31::-;;;;;;;;;;;;;;;;26805:164;;;;;;;;;;-1:-1:-1;26805:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26926:25:0;;;26902:4;26926:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26805:164;5028:201;;;;;;;;;;-1:-1:-1;5028:201:0;;;;;:::i;:::-;;:::i;23782:305::-;23884:4;-1:-1:-1;;;;;;23921:40:0;;-1:-1:-1;;;23921:40:0;;:105;;-1:-1:-1;;;;;;;23978:48:0;;-1:-1:-1;;;23978:48:0;23921:105;:158;;;-1:-1:-1;;;;;;;;;;16660:40:0;;;24043:36;23901:178;23782:305;-1:-1:-1;;23782:305:0:o;38454:73::-;4192:6;;-1:-1:-1;;;;;4192:6:0;2923:10;4339:23;4331:68;;;;-1:-1:-1;;;4331:68:0;;;;;;;:::i;:::-;;;;;;;;;38506:6:::1;:15:::0;;-1:-1:-1;;38506:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38454:73::o;24727:100::-;24781:13;24814:5;24807:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24727:100;:::o;26286:221::-;26362:7;29629:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29629:16:0;26382:73;;;;-1:-1:-1;;;26382:73:0;;6200:2:1;26382:73:0;;;6182:21:1;6239:2;6219:18;;;6212:30;6278:34;6258:18;;;6251:62;-1:-1:-1;;;6329:18:1;;;6322:42;6381:19;;26382:73:0;5998:408:1;26382:73:0;-1:-1:-1;26475:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26475:24:0;;26286:221::o;25809:411::-;25890:13;25906:23;25921:7;25906:14;:23::i;:::-;25890:39;;25954:5;-1:-1:-1;;;;;25948:11:0;:2;-1:-1:-1;;;;;25948:11:0;;;25940:57;;;;-1:-1:-1;;;25940:57:0;;6613:2:1;25940:57:0;;;6595:21:1;6652:2;6632:18;;;6625:30;6691:34;6671:18;;;6664:62;-1:-1:-1;;;6742:18:1;;;6735:31;6783:19;;25940:57:0;6411:397:1;25940:57:0;2923:10;-1:-1:-1;;;;;26032:21:0;;;;:62;;-1:-1:-1;26057:37:0;26074:5;2923:10;26805:164;:::i;26057:37::-;26010:168;;;;-1:-1:-1;;;26010:168:0;;7015:2:1;26010:168:0;;;6997:21:1;7054:2;7034:18;;;7027:30;7093:34;7073:18;;;7066:62;7164:26;7144:18;;;7137:54;7208:19;;26010:168:0;6813:420:1;26010:168:0;26191:21;26200:2;26204:7;26191:8;:21::i;:::-;25879:341;25809:411;;:::o;27036:339::-;27231:41;2923:10;27264:7;27231:18;:41::i;:::-;27223:103;;;;-1:-1:-1;;;27223:103:0;;;;;;;:::i;:::-;27339:28;27349:4;27355:2;27359:7;27339:9;:28::i;38534:146::-;4192:6;;-1:-1:-1;;;;;4192:6:0;2923:10;4339:23;4331:68;;;;-1:-1:-1;;;4331:68:0;;;;;;;:::i;:::-;38608:8:::1;::::0;38600:56:::1;::::0;38587:7:::1;::::0;-1:-1:-1;;;;;38608:8:0::1;::::0;38630:21:::1;::::0;38587:7;38600:56;38587:7;38600:56;38630:21;38608:8;38600:56:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38586:70;;;38671:2;38663:11;;;::::0;::::1;;38579:101;38534:146::o:0;27446:185::-;27584:39;27601:4;27607:2;27611:7;27584:39;;;;;;;;;;;;:16;:39::i;24421:239::-;24493:7;24529:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24529:16:0;24564:19;24556:73;;;;-1:-1:-1;;;24556:73:0;;8068:2:1;24556:73:0;;;8050:21:1;8107:2;8087:18;;;8080:30;8146:34;8126:18;;;8119:62;-1:-1:-1;;;8197:18:1;;;8190:39;8246:19;;24556:73:0;7866:405:1;24151:208:0;24223:7;-1:-1:-1;;;;;24251:19:0;;24243:74;;;;-1:-1:-1;;;24243:74:0;;8478:2:1;24243:74:0;;;8460:21:1;8517:2;8497:18;;;8490:30;8556:34;8536:18;;;8529:62;-1:-1:-1;;;8607:18:1;;;8600:40;8657:19;;24243:74:0;8276:406:1;24243:74:0;-1:-1:-1;;;;;;24335:16:0;;;;;:9;:16;;;;;;;24151:208::o;4770:103::-;4192:6;;-1:-1:-1;;;;;4192:6:0;2923:10;4339:23;4331:68;;;;-1:-1:-1;;;4331:68:0;;;;;;;:::i;:::-;4835:30:::1;4862:1;4835:18;:30::i;:::-;4770:103::o:0;24896:104::-;24952:13;24985:7;24978:14;;;;;:::i;36893:454::-;36959:6;;;;36958:7;36950:16;;;;;;36995:1;36981:11;:15;36973:24;;;;;;37027:13;;37012:11;:28;;37004:37;;;;;;37080:9;;37065:11;37056:6;;:20;;;;:::i;:::-;:33;;37048:42;;;;;;4192:6;;-1:-1:-1;;;;;4192:6:0;37103:10;:21;;;;:37;;;37137:3;37128:6;;:12;37103:37;37099:100;;;37179:11;37172:4;;:18;;;;:::i;:::-;37159:9;:31;;37151:40;;;;;;37230:1;37213:93;37238:11;37233:1;:16;37213:93;;37265:33;37275:10;37296:1;37287:6;;:10;;;;:::i;:::-;37265:9;:33::i;:::-;37251:3;;;;:::i;:::-;;;;37213:93;;;;37330:11;37321:6;;:20;;;;:::i;:::-;37312:6;:29;-1:-1:-1;36893:454:0:o;26579:155::-;26674:52;2923:10;26707:8;26717;26674:18;:52::i;:::-;26579:155;;:::o;27702:328::-;27877:41;2923:10;27910:7;27877:18;:41::i;:::-;27869:103;;;;-1:-1:-1;;;27869:103:0;;;;;;;:::i;:::-;27983:39;27997:4;28003:2;28007:7;28016:5;27983:13;:39::i;:::-;27702:328;;;;:::o;37353:416::-;29605:4;29629:16;;;:7;:16;;;;;;37451:13;;-1:-1:-1;;;;;29629:16:0;37476:97;;;;-1:-1:-1;;;37476:97:0;;9467:2:1;37476:97:0;;;9449:21:1;9506:2;9486:18;;;9479:30;9545:34;9525:18;;;9518:62;-1:-1:-1;;;9596:18:1;;;9589:45;9651:19;;37476:97:0;9265:411:1;37476:97:0;37582:28;37613:10;:8;:10::i;:::-;37582:41;;37668:1;37643:14;37637:28;:32;:126;;;;;;;;;;;;;;;;;37705:14;37721:17;37730:7;37721:8;:17::i;:::-;37688:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37637:126;37630:133;37353:416;-1:-1:-1;;;37353:416:0:o;5028:201::-;4192:6;;-1:-1:-1;;;;;4192:6:0;2923:10;4339:23;4331:68;;;;-1:-1:-1;;;4331:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5117:22:0;::::1;5109:73;;;::::0;-1:-1:-1;;;5109:73:0;;10525:2:1;5109:73:0::1;::::0;::::1;10507:21:1::0;10564:2;10544:18;;;10537:30;10603:34;10583:18;;;10576:62;-1:-1:-1;;;10654:18:1;;;10647:36;10700:19;;5109:73:0::1;10323:402:1::0;5109:73:0::1;5193:28;5212:8;5193:18;:28::i;33522:174::-:0;33597:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33597:29:0;-1:-1:-1;;;;;33597:29:0;;;;;;;;:24;;33651:23;33597:24;33651:14;:23::i;:::-;-1:-1:-1;;;;;33642:46:0;;;;;;;;;;;33522:174;;:::o;29834:348::-;29927:4;29629:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29629:16:0;29944:73;;;;-1:-1:-1;;;29944:73:0;;10932:2:1;29944:73:0;;;10914:21:1;10971:2;10951:18;;;10944:30;11010:34;10990:18;;;10983:62;-1:-1:-1;;;11061:18:1;;;11054:42;11113:19;;29944:73:0;10730:408:1;29944:73:0;30028:13;30044:23;30059:7;30044:14;:23::i;:::-;30028:39;;30097:5;-1:-1:-1;;;;;30086:16:0;:7;-1:-1:-1;;;;;30086:16:0;;:51;;;;30130:7;-1:-1:-1;;;;;30106:31:0;:20;30118:7;30106:11;:20::i;:::-;-1:-1:-1;;;;;30106:31:0;;30086:51;:87;;;-1:-1:-1;;;;;;26926:25:0;;;26902:4;26926:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30141:32;30078:96;29834:348;-1:-1:-1;;;;29834:348:0:o;32826:578::-;32985:4;-1:-1:-1;;;;;32958:31:0;:23;32973:7;32958:14;:23::i;:::-;-1:-1:-1;;;;;32958:31:0;;32950:85;;;;-1:-1:-1;;;32950:85:0;;11345:2:1;32950:85:0;;;11327:21:1;11384:2;11364:18;;;11357:30;11423:34;11403:18;;;11396:62;-1:-1:-1;;;11474:18:1;;;11467:39;11523:19;;32950:85:0;11143:405:1;32950:85:0;-1:-1:-1;;;;;33054:16:0;;33046:65;;;;-1:-1:-1;;;33046:65:0;;11755:2:1;33046:65:0;;;11737:21:1;11794:2;11774:18;;;11767:30;11833:34;11813:18;;;11806:62;-1:-1:-1;;;11884:18:1;;;11877:34;11928:19;;33046:65:0;11553:400:1;33046:65:0;33228:29;33245:1;33249:7;33228:8;:29::i;:::-;-1:-1:-1;;;;;33270:15:0;;;;;;:9;:15;;;;;:20;;33289:1;;33270:15;:20;;33289:1;;33270:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33301:13:0;;;;;;:9;:13;;;;;:18;;33318:1;;33301:13;:18;;33318:1;;33301:18;:::i;:::-;;;;-1:-1:-1;;33330:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33330:21:0;-1:-1:-1;;;;;33330:21:0;;;;;;;;;33369:27;;33330:16;;33369:27;;;;;;;32826:578;;;:::o;5389:191::-;5482:6;;;-1:-1:-1;;;;;5499:17:0;;;-1:-1:-1;;;;;;5499:17:0;;;;;;;5532:40;;5482:6;;;5499:17;5482:6;;5532:40;;5463:16;;5532:40;5452:128;5389:191;:::o;30524:110::-;30600:26;30610:2;30614:7;30600:26;;;;;;;;;;;;:9;:26::i;33838:315::-;33993:8;-1:-1:-1;;;;;33984:17:0;:5;-1:-1:-1;;;;;33984:17:0;;;33976:55;;;;-1:-1:-1;;;33976:55:0;;12290:2:1;33976:55:0;;;12272:21:1;12329:2;12309:18;;;12302:30;12368:27;12348:18;;;12341:55;12413:18;;33976:55:0;12088:349:1;33976:55:0;-1:-1:-1;;;;;34042:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34042:46:0;;;;;;;;;;34104:41;;540::1;;;34104::0;;513:18:1;34104:41:0;;;;;;;33838:315;;;:::o;28912:::-;29069:28;29079:4;29085:2;29089:7;29069:9;:28::i;:::-;29116:48;29139:4;29145:2;29149:7;29158:5;29116:22;:48::i;:::-;29108:111;;;;-1:-1:-1;;;29108:111:0;;;;;;;:::i;36772:102::-;36832:13;36861:7;36854:14;;;;;:::i;37775:653::-;37831:13;38044:10;38040:45;;-1:-1:-1;;38067:10:0;;;;;;;;;;;;-1:-1:-1;;;38067:10:0;;;;;37775:653::o;38040:45::-;38106:5;38091:12;38139:66;38146:9;;38139:66;;38168:8;;;;:::i;:::-;;-1:-1:-1;38187:10:0;;-1:-1:-1;38195:2:0;38187:10;;:::i;:::-;;;38139:66;;;38211:19;38243:6;38233:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38233:17:0;;38211:39;;38257:138;38264:10;;38257:138;;38287:11;38297:1;38287:11;;:::i;:::-;;-1:-1:-1;38352:10:0;38360:2;38352:5;:10;:::i;:::-;38339:24;;:2;:24;:::i;:::-;38326:39;;38309:6;38316;38309:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;38309:56:0;;;;;;;;-1:-1:-1;38376:11:0;38385:2;38376:11;;:::i;:::-;;;38257:138;;30861:321;30991:18;30997:2;31001:7;30991:5;:18::i;:::-;31042:54;31073:1;31077:2;31081:7;31090:5;31042:22;:54::i;:::-;31020:154;;;;-1:-1:-1;;;31020:154:0;;;;;;;:::i;34718:799::-;34873:4;-1:-1:-1;;;;;34894:13:0;;6730:20;6778:8;34890:620;;34930:72;;-1:-1:-1;;;34930:72:0;;-1:-1:-1;;;;;34930:36:0;;;;;:72;;2923:10;;34981:4;;34987:7;;34996:5;;34930:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34930:72:0;;;;;;;;-1:-1:-1;;34930:72:0;;;;;;;;;;;;:::i;:::-;;;34926:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35172:13:0;;35168:272;;35215:60;;-1:-1:-1;;;35215:60:0;;;;;;;:::i;35168:272::-;35390:6;35384:13;35375:6;35371:2;35367:15;35360:38;34926:529;-1:-1:-1;;;;;;35053:51:0;-1:-1:-1;;;35053:51:0;;-1:-1:-1;35046:58:0;;34890:620;-1:-1:-1;35494:4:0;34718:799;;;;;;:::o;31518:382::-;-1:-1:-1;;;;;31598:16:0;;31590:61;;;;-1:-1:-1;;;31590:61:0;;14317:2:1;31590:61:0;;;14299:21:1;;;14336:18;;;14329:30;14395:34;14375:18;;;14368:62;14447:18;;31590:61:0;14115:356:1;31590:61:0;29605:4;29629:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29629:16:0;:30;31662:58;;;;-1:-1:-1;;;31662:58:0;;14678:2:1;31662:58:0;;;14660:21:1;14717:2;14697:18;;;14690:30;14756;14736:18;;;14729:58;14804:18;;31662:58:0;14476:352:1;31662:58:0;-1:-1:-1;;;;;31791:13:0;;;;;;:9;:13;;;;;:18;;31808:1;;31791:13;:18;;31808:1;;31791:18;:::i;:::-;;;;-1:-1:-1;;31820:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31820:21:0;-1:-1:-1;;;;;31820:21:0;;;;;;;;31859:33;;31820:16;;;31859:33;;31820:16;;31859:33;31518:382;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:254::-;3294:6;3302;3355:2;3343:9;3334:7;3330:23;3326:32;3323:52;;;3371:1;3368;3361:12;3323:52;3394:29;3413:9;3394:29;:::i;:::-;3384:39;;3442:35;3473:2;3462:9;3458:18;3442:35;:::i;:::-;3432:45;;3229:254;;;;;:::o;3712:127::-;3773:10;3768:3;3764:20;3761:1;3754:31;3804:4;3801:1;3794:15;3828:4;3825:1;3818:15;3844:1138;3939:6;3947;3955;3963;4016:3;4004:9;3995:7;3991:23;3987:33;3984:53;;;4033:1;4030;4023:12;3984:53;4056:29;4075:9;4056:29;:::i;:::-;4046:39;;4104:38;4138:2;4127:9;4123:18;4104:38;:::i;:::-;4094:48;;4189:2;4178:9;4174:18;4161:32;4151:42;;4244:2;4233:9;4229:18;4216:32;4267:18;4308:2;4300:6;4297:14;4294:34;;;4324:1;4321;4314:12;4294:34;4362:6;4351:9;4347:22;4337:32;;4407:7;4400:4;4396:2;4392:13;4388:27;4378:55;;4429:1;4426;4419:12;4378:55;4465:2;4452:16;4487:2;4483;4480:10;4477:36;;;4493:18;;:::i;:::-;4568:2;4562:9;4536:2;4622:13;;-1:-1:-1;;4618:22:1;;;4642:2;4614:31;4610:40;4598:53;;;4666:18;;;4686:22;;;4663:46;4660:72;;;4712:18;;:::i;:::-;4752:10;4748:2;4741:22;4787:2;4779:6;4772:18;4827:7;4822:2;4817;4813;4809:11;4805:20;4802:33;4799:53;;;4848:1;4845;4838:12;4799:53;4904:2;4899;4895;4891:11;4886:2;4878:6;4874:15;4861:46;4949:1;4944:2;4939;4931:6;4927:15;4923:24;4916:35;4970:6;4960:16;;;;;;;3844:1138;;;;;;;:::o;4987:260::-;5055:6;5063;5116:2;5104:9;5095:7;5091:23;5087:32;5084:52;;;5132:1;5129;5122:12;5084:52;5155:29;5174:9;5155:29;:::i;:::-;5145:39;;5203:38;5237:2;5226:9;5222:18;5203:38;:::i;5252:356::-;5454:2;5436:21;;;5473:18;;;5466:30;5532:34;5527:2;5512:18;;5505:62;5599:2;5584:18;;5252:356::o;5613:380::-;5692:1;5688:12;;;;5735;;;5756:61;;5810:4;5802:6;5798:17;5788:27;;5756:61;5863:2;5855:6;5852:14;5832:18;5829:38;5826:161;;;5909:10;5904:3;5900:20;5897:1;5890:31;5944:4;5941:1;5934:15;5972:4;5969:1;5962:15;5826:161;;5613:380;;;:::o;7238:413::-;7440:2;7422:21;;;7479:2;7459:18;;;7452:30;7518:34;7513:2;7498:18;;7491:62;-1:-1:-1;;;7584:2:1;7569:18;;7562:47;7641:3;7626:19;;7238:413::o;8687:127::-;8748:10;8743:3;8739:20;8736:1;8729:31;8779:4;8776:1;8769:15;8803:4;8800:1;8793:15;8819:128;8859:3;8890:1;8886:6;8883:1;8880:13;8877:39;;;8896:18;;:::i;:::-;-1:-1:-1;8932:9:1;;8819:128::o;8952:168::-;8992:7;9058:1;9054;9050:6;9046:14;9043:1;9040:21;9035:1;9028:9;9021:17;9017:45;9014:71;;;9065:18;;:::i;:::-;-1:-1:-1;9105:9:1;;8952:168::o;9125:135::-;9164:3;-1:-1:-1;;9185:17:1;;9182:43;;;9205:18;;:::i;:::-;-1:-1:-1;9252:1:1;9241:13;;9125:135::o;9681:637::-;9961:3;9999:6;9993:13;10015:53;10061:6;10056:3;10049:4;10041:6;10037:17;10015:53;:::i;:::-;10131:13;;10090:16;;;;10153:57;10131:13;10090:16;10187:4;10175:17;;10153:57;:::i;:::-;-1:-1:-1;;;10232:20:1;;10261:22;;;10310:1;10299:13;;9681:637;-1:-1:-1;;;;9681:637:1:o;11958:125::-;11998:4;12026:1;12023;12020:8;12017:34;;;12031:18;;:::i;:::-;-1:-1:-1;12068:9:1;;11958:125::o;12442:414::-;12644:2;12626:21;;;12683:2;12663:18;;;12656:30;12722:34;12717:2;12702:18;;12695:62;-1:-1:-1;;;12788:2:1;12773:18;;12766:48;12846:3;12831:19;;12442:414::o;12861:127::-;12922:10;12917:3;12913:20;12910:1;12903:31;12953:4;12950:1;12943:15;12977:4;12974:1;12967:15;12993:120;13033:1;13059;13049:35;;13064:18;;:::i;:::-;-1:-1:-1;13098:9:1;;12993:120::o;13118:112::-;13150:1;13176;13166:35;;13181:18;;:::i;:::-;-1:-1:-1;13215:9:1;;13118:112::o;13235:127::-;13296:10;13291:3;13287:20;13284:1;13277:31;13327:4;13324:1;13317:15;13351:4;13348:1;13341:15;13367:489;-1:-1:-1;;;;;13636:15:1;;;13618:34;;13688:15;;13683:2;13668:18;;13661:43;13735:2;13720:18;;13713:34;;;13783:3;13778:2;13763:18;;13756:31;;;13561:4;;13804:46;;13830:19;;13822:6;13804:46;:::i;:::-;13796:54;13367:489;-1:-1:-1;;;;;;13367:489:1:o;13861:249::-;13930:6;13983:2;13971:9;13962:7;13958:23;13954:32;13951:52;;;13999:1;13996;13989:12;13951:52;14031:9;14025:16;14050:30;14074:5;14050:30;:::i

Swarm Source

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