ETH Price: $3,502.73 (+0.09%)
Gas: 5 Gwei

Token

KIDz (KIDZ)
 

Overview

Max Total Supply

3,000 KIDZ

Holders

470

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 KIDZ
0x4d76bcf1093222561cd1c5a2e9db0c515caa152b
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:
KIDz

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-27
*/

// 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/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 (last updated v4.5.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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: KIDz.sol


pragma solidity ^0.8.13;




contract KIDz is ERC721, Ownable, Pausable {
    uint256 public constant MAX_SUPPLY = 3000;
    uint256 public minted = 2559;

    uint256 public idMigrated;
    string private baseURI;
    uint256 public totalSupply;

    IERC721 public oldCollection;

    constructor() ERC721("KIDz", "KIDZ") {
        oldCollection = IERC721(0xDa416FC5EAdDb67d3710AEbBf1923c2357C7d511);
    }

    function airdropMultiple(address[] memory _to) external onlyOwner {
        for (uint256 i = 0; i < _to.length; i++) {
            airdrop(_to[i]);
        }
    }

    function airdrop(address _to) public onlyOwner {
        require(_to != address(0), "Zero address");
        require(minted + 1 <= MAX_SUPPLY, "Minting would exceed max supply");
        minted++;
        totalSupply++;
        _safeMint(_to, minted);
    }

    function migrateNFT(uint256 _number) external onlyOwner {
        require(idMigrated + _number <= 2559, "Invalid migration number");
        uint256 _lastIndex = idMigrated;
        idMigrated += _number;
        for (uint256 i = _lastIndex + 1; i <= idMigrated; i++) {
            _safeMint(oldCollection.ownerOf(i), i);
        }
        totalSupply += _number;
    }

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

    /**
     * @param _owner Address for which to return wallet info
     * @return Array of tokens in _owner's wallet
     */
    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }
            currentTokenId++;
        }
        return ownedTokenIds;
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

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

    function setBaseURI(string memory uri) external onlyOwner {
        baseURI = uri;
    }
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"airdropMultiple","outputs":[],"stateMutability":"nonpayable","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":[],"name":"idMigrated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"}],"name":"migrateNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minted","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":"oldCollection","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uri","type":"string"}],"name":"setBaseURI","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

60806040526109ff6007553480156200001757600080fd5b506040518060400160405280600481526020016325a4a23d60e11b8152506040518060400160405280600481526020016325a4a22d60e11b81525081600090805190602001906200006a9291906200012c565b508051620000809060019060208401906200012c565b5050506200009d62000097620000d660201b60201c565b620000da565b6006805460ff60a01b19169055600b80546001600160a01b03191673da416fc5eaddb67d3710aebbf1923c2357c7d5111790556200020e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013a90620001d2565b90600052602060002090601f0160209004810192826200015e5760008555620001a9565b82601f106200017957805160ff1916838001178555620001a9565b82800160010185558215620001a9579182015b82811115620001a95782518255916020019190600101906200018c565b50620001b7929150620001bb565b5090565b5b80821115620001b75760008155600101620001bc565b600181811c90821680620001e757607f821691505b6020821081036200020857634e487b7160e01b600052602260045260246000fd5b50919050565b611f1c806200021e6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636352211e11610104578063a22cb465116100a2578063e985e9c511610071578063e985e9c5146103ae578063f2fde38b146103ea578063f33a8955146103fd578063fd507f751461040657600080fd5b8063a22cb46514610362578063ac2cbbd714610375578063b88d4fde14610388578063c87b56dd1461039b57600080fd5b806371e5d61d116100de57806371e5d61d1461032e5780638456cb59146103415780638da5cb5b1461034957806395d89b411461035a57600080fd5b80636352211e1461030057806370a0823114610313578063715018a61461032657600080fd5b806332cb6b0c11610171578063438b63001161014b578063438b6300146102b25780634f02c420146102d257806355f804b3146102db5780635c975abb146102ee57600080fd5b806332cb6b0c1461028e5780633f4ba83a1461029757806342842e0e1461029f57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c57806318160ddd1461025157806321860a051461026857806323b872dd1461027b57600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e2366004611872565b610419565b60405190151581526020015b60405180910390f35b61020461046b565b6040516101f391906118e7565b61022461021f3660046118fa565b6104fd565b6040516001600160a01b0390911681526020016101f3565b61024f61024a366004611928565b610597565b005b61025a600a5481565b6040519081526020016101f3565b61024f610276366004611954565b6106ac565b61024f610289366004611971565b6107b4565b61025a610bb881565b61024f6107e5565b61024f6102ad366004611971565b610819565b6102c56102c0366004611954565b610834565b6040516101f391906119b2565b61025a60075481565b61024f6102e9366004611a95565b610914565b600654600160a01b900460ff166101e7565b61022461030e3660046118fa565b610955565b61025a610321366004611954565b6109cc565b61024f610a53565b61024f61033c3660046118fa565b610a87565b61024f610be5565b6006546001600160a01b0316610224565b610204610c17565b61024f610370366004611ade565b610c26565b600b54610224906001600160a01b031681565b61024f610396366004611b1c565b610c31565b6102046103a93660046118fa565b610c69565b6101e76103bc366004611b9c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61024f6103f8366004611954565b610d44565b61025a60085481565b61024f610414366004611bca565b610ddc565b60006001600160e01b031982166380ac58cd60e01b148061044a57506001600160e01b03198216635b5e139f60e01b145b8061046557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461047a90611c7c565b80601f01602080910402602001604051908101604052809291908181526020018280546104a690611c7c565b80156104f35780601f106104c8576101008083540402835291602001916104f3565b820191906000526020600020905b8154815290600101906020018083116104d657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661057b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105a282610955565b9050806001600160a01b0316836001600160a01b03160361060f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610572565b336001600160a01b038216148061062b575061062b81336103bc565b61069d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610572565b6106a78383610e46565b505050565b6006546001600160a01b031633146106d65760405162461bcd60e51b815260040161057290611cb6565b6001600160a01b03811661071b5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606401610572565b610bb8600754600161072d9190611d01565b111561077b5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c79006044820152606401610572565b6007805490600061078b83611d19565b9091555050600a80549060006107a083611d19565b91905055506107b181600754610eb4565b50565b6107be3382610ece565b6107da5760405162461bcd60e51b815260040161057290611d32565b6106a7838383610fc5565b6006546001600160a01b0316331461080f5760405162461bcd60e51b815260040161057290611cb6565b61081761116c565b565b6106a783838360405180602001604052806000815250610c31565b60606000610841836109cc565b905060008167ffffffffffffffff81111561085e5761085e6119f6565b604051908082528060200260200182016040528015610887578160200160208202803683370190505b509050600160005b83811080156108a05750610bb88211155b1561090a5760006108b083610955565b9050866001600160a01b0316816001600160a01b0316036108f757828483815181106108de576108de611d83565b6020908102919091010152816108f381611d19565b9250505b8261090181611d19565b9350505061088f565b5090949350505050565b6006546001600160a01b0316331461093e5760405162461bcd60e51b815260040161057290611cb6565b80516109519060099060208401906117c3565b5050565b6000818152600260205260408120546001600160a01b0316806104655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610572565b60006001600160a01b038216610a375760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610572565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a7d5760405162461bcd60e51b815260040161057290611cb6565b6108176000611209565b6006546001600160a01b03163314610ab15760405162461bcd60e51b815260040161057290611cb6565b6109ff81600854610ac29190611d01565b1115610b105760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964206d6967726174696f6e206e756d62657200000000000000006044820152606401610572565b600880549082906000610b238385611d01565b9091555060009050610b36826001611d01565b90505b6008548111610bc957600b546040516331a9108f60e11b815260048101839052610bb7916001600160a01b031690636352211e90602401602060405180830381865afa158015610b8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb19190611d99565b82610eb4565b80610bc181611d19565b915050610b39565b5081600a6000828254610bdc9190611d01565b90915550505050565b6006546001600160a01b03163314610c0f5760405162461bcd60e51b815260040161057290611cb6565b61081761125b565b60606001805461047a90611c7c565b6109513383836112e3565b610c3b3383610ece565b610c575760405162461bcd60e51b815260040161057290611d32565b610c63848484846113b1565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ce85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610572565b6000610cf26113e4565b90506000815111610d125760405180602001604052806000815250610d3d565b80610d1c846113f3565b604051602001610d2d929190611db6565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610d6e5760405162461bcd60e51b815260040161057290611cb6565b6001600160a01b038116610dd35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610572565b6107b181611209565b6006546001600160a01b03163314610e065760405162461bcd60e51b815260040161057290611cb6565b60005b815181101561095157610e34828281518110610e2757610e27611d83565b60200260200101516106ac565b80610e3e81611d19565b915050610e09565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e7b82610955565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6109518282604051806020016040528060008152506114f4565b6000818152600260205260408120546001600160a01b0316610f475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610572565b6000610f5283610955565b9050806001600160a01b0316846001600160a01b03161480610f8d5750836001600160a01b0316610f82846104fd565b6001600160a01b0316145b80610fbd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610fd882610955565b6001600160a01b03161461103c5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610572565b6001600160a01b03821661109e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610572565b6110a9838383611527565b6110b4600082610e46565b6001600160a01b03831660009081526003602052604081208054600192906110dd908490611de5565b90915550506001600160a01b038216600090815260036020526040812080546001929061110b908490611d01565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600654600160a01b900460ff166111bc5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610572565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600654600160a01b900460ff16156112a85760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610572565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111ec3390565b816001600160a01b0316836001600160a01b0316036113445760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610572565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113bc848484610fc5565b6113c884848484611574565b610c635760405162461bcd60e51b815260040161057290611dfc565b60606009805461047a90611c7c565b60608160000361141a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611444578061142e81611d19565b915061143d9050600a83611e64565b915061141e565b60008167ffffffffffffffff81111561145f5761145f6119f6565b6040519080825280601f01601f191660200182016040528015611489576020820181803683370190505b5090505b8415610fbd5761149e600183611de5565b91506114ab600a86611e78565b6114b6906030611d01565b60f81b8183815181106114cb576114cb611d83565b60200101906001600160f81b031916908160001a9053506114ed600a86611e64565b945061148d565b6114fe8383611675565b61150b6000848484611574565b6106a75760405162461bcd60e51b815260040161057290611dfc565b600654600160a01b900460ff16156106a75760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610572565b60006001600160a01b0384163b1561166a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115b8903390899088908890600401611e8c565b6020604051808303816000875af19250505080156115f3575060408051601f3d908101601f191682019092526115f091810190611ec9565b60015b611650573d808015611621576040519150601f19603f3d011682016040523d82523d6000602084013e611626565b606091505b5080516000036116485760405162461bcd60e51b815260040161057290611dfc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fbd565b506001949350505050565b6001600160a01b0382166116cb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610572565b6000818152600260205260409020546001600160a01b0316156117305760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610572565b61173c60008383611527565b6001600160a01b0382166000908152600360205260408120805460019290611765908490611d01565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546117cf90611c7c565b90600052602060002090601f0160209004810192826117f15760008555611837565b82601f1061180a57805160ff1916838001178555611837565b82800160010185558215611837579182015b8281111561183757825182559160200191906001019061181c565b50611843929150611847565b5090565b5b808211156118435760008155600101611848565b6001600160e01b0319811681146107b157600080fd5b60006020828403121561188457600080fd5b8135610d3d8161185c565b60005b838110156118aa578181015183820152602001611892565b83811115610c635750506000910152565b600081518084526118d381602086016020860161188f565b601f01601f19169290920160200192915050565b602081526000610d3d60208301846118bb565b60006020828403121561190c57600080fd5b5035919050565b6001600160a01b03811681146107b157600080fd5b6000806040838503121561193b57600080fd5b823561194681611913565b946020939093013593505050565b60006020828403121561196657600080fd5b8135610d3d81611913565b60008060006060848603121561198657600080fd5b833561199181611913565b925060208401356119a181611913565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b818110156119ea578351835292840192918401916001016119ce565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611a3557611a356119f6565b604052919050565b600067ffffffffffffffff831115611a5757611a576119f6565b611a6a601f8401601f1916602001611a0c565b9050828152838383011115611a7e57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611aa757600080fd5b813567ffffffffffffffff811115611abe57600080fd5b8201601f81018413611acf57600080fd5b610fbd84823560208401611a3d565b60008060408385031215611af157600080fd5b8235611afc81611913565b915060208301358015158114611b1157600080fd5b809150509250929050565b60008060008060808587031215611b3257600080fd5b8435611b3d81611913565b93506020850135611b4d81611913565b925060408501359150606085013567ffffffffffffffff811115611b7057600080fd5b8501601f81018713611b8157600080fd5b611b9087823560208401611a3d565b91505092959194509250565b60008060408385031215611baf57600080fd5b8235611bba81611913565b91506020830135611b1181611913565b60006020808385031215611bdd57600080fd5b823567ffffffffffffffff80821115611bf557600080fd5b818501915085601f830112611c0957600080fd5b813581811115611c1b57611c1b6119f6565b8060051b9150611c2c848301611a0c565b8181529183018401918481019088841115611c4657600080fd5b938501935b83851015611c705784359250611c6083611913565b8282529385019390850190611c4b565b98975050505050505050565b600181811c90821680611c9057607f821691505b602082108103611cb057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d1457611d14611ceb565b500190565b600060018201611d2b57611d2b611ceb565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611dab57600080fd5b8151610d3d81611913565b60008351611dc881846020880161188f565b835190830190611ddc81836020880161188f565b01949350505050565b600082821015611df757611df7611ceb565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611e7357611e73611e4e565b500490565b600082611e8757611e87611e4e565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ebf908301846118bb565b9695505050505050565b600060208284031215611edb57600080fd5b8151610d3d8161185c56fea2646970667358221220f9897dce06f1171ac5466236ab5b048848f4c06e8c3bfc5bdba2a395f7c1aa6a64736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636352211e11610104578063a22cb465116100a2578063e985e9c511610071578063e985e9c5146103ae578063f2fde38b146103ea578063f33a8955146103fd578063fd507f751461040657600080fd5b8063a22cb46514610362578063ac2cbbd714610375578063b88d4fde14610388578063c87b56dd1461039b57600080fd5b806371e5d61d116100de57806371e5d61d1461032e5780638456cb59146103415780638da5cb5b1461034957806395d89b411461035a57600080fd5b80636352211e1461030057806370a0823114610313578063715018a61461032657600080fd5b806332cb6b0c11610171578063438b63001161014b578063438b6300146102b25780634f02c420146102d257806355f804b3146102db5780635c975abb146102ee57600080fd5b806332cb6b0c1461028e5780633f4ba83a1461029757806342842e0e1461029f57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c57806318160ddd1461025157806321860a051461026857806323b872dd1461027b57600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e2366004611872565b610419565b60405190151581526020015b60405180910390f35b61020461046b565b6040516101f391906118e7565b61022461021f3660046118fa565b6104fd565b6040516001600160a01b0390911681526020016101f3565b61024f61024a366004611928565b610597565b005b61025a600a5481565b6040519081526020016101f3565b61024f610276366004611954565b6106ac565b61024f610289366004611971565b6107b4565b61025a610bb881565b61024f6107e5565b61024f6102ad366004611971565b610819565b6102c56102c0366004611954565b610834565b6040516101f391906119b2565b61025a60075481565b61024f6102e9366004611a95565b610914565b600654600160a01b900460ff166101e7565b61022461030e3660046118fa565b610955565b61025a610321366004611954565b6109cc565b61024f610a53565b61024f61033c3660046118fa565b610a87565b61024f610be5565b6006546001600160a01b0316610224565b610204610c17565b61024f610370366004611ade565b610c26565b600b54610224906001600160a01b031681565b61024f610396366004611b1c565b610c31565b6102046103a93660046118fa565b610c69565b6101e76103bc366004611b9c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61024f6103f8366004611954565b610d44565b61025a60085481565b61024f610414366004611bca565b610ddc565b60006001600160e01b031982166380ac58cd60e01b148061044a57506001600160e01b03198216635b5e139f60e01b145b8061046557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461047a90611c7c565b80601f01602080910402602001604051908101604052809291908181526020018280546104a690611c7c565b80156104f35780601f106104c8576101008083540402835291602001916104f3565b820191906000526020600020905b8154815290600101906020018083116104d657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661057b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105a282610955565b9050806001600160a01b0316836001600160a01b03160361060f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610572565b336001600160a01b038216148061062b575061062b81336103bc565b61069d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610572565b6106a78383610e46565b505050565b6006546001600160a01b031633146106d65760405162461bcd60e51b815260040161057290611cb6565b6001600160a01b03811661071b5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606401610572565b610bb8600754600161072d9190611d01565b111561077b5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c79006044820152606401610572565b6007805490600061078b83611d19565b9091555050600a80549060006107a083611d19565b91905055506107b181600754610eb4565b50565b6107be3382610ece565b6107da5760405162461bcd60e51b815260040161057290611d32565b6106a7838383610fc5565b6006546001600160a01b0316331461080f5760405162461bcd60e51b815260040161057290611cb6565b61081761116c565b565b6106a783838360405180602001604052806000815250610c31565b60606000610841836109cc565b905060008167ffffffffffffffff81111561085e5761085e6119f6565b604051908082528060200260200182016040528015610887578160200160208202803683370190505b509050600160005b83811080156108a05750610bb88211155b1561090a5760006108b083610955565b9050866001600160a01b0316816001600160a01b0316036108f757828483815181106108de576108de611d83565b6020908102919091010152816108f381611d19565b9250505b8261090181611d19565b9350505061088f565b5090949350505050565b6006546001600160a01b0316331461093e5760405162461bcd60e51b815260040161057290611cb6565b80516109519060099060208401906117c3565b5050565b6000818152600260205260408120546001600160a01b0316806104655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610572565b60006001600160a01b038216610a375760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610572565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a7d5760405162461bcd60e51b815260040161057290611cb6565b6108176000611209565b6006546001600160a01b03163314610ab15760405162461bcd60e51b815260040161057290611cb6565b6109ff81600854610ac29190611d01565b1115610b105760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964206d6967726174696f6e206e756d62657200000000000000006044820152606401610572565b600880549082906000610b238385611d01565b9091555060009050610b36826001611d01565b90505b6008548111610bc957600b546040516331a9108f60e11b815260048101839052610bb7916001600160a01b031690636352211e90602401602060405180830381865afa158015610b8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb19190611d99565b82610eb4565b80610bc181611d19565b915050610b39565b5081600a6000828254610bdc9190611d01565b90915550505050565b6006546001600160a01b03163314610c0f5760405162461bcd60e51b815260040161057290611cb6565b61081761125b565b60606001805461047a90611c7c565b6109513383836112e3565b610c3b3383610ece565b610c575760405162461bcd60e51b815260040161057290611d32565b610c63848484846113b1565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ce85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610572565b6000610cf26113e4565b90506000815111610d125760405180602001604052806000815250610d3d565b80610d1c846113f3565b604051602001610d2d929190611db6565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610d6e5760405162461bcd60e51b815260040161057290611cb6565b6001600160a01b038116610dd35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610572565b6107b181611209565b6006546001600160a01b03163314610e065760405162461bcd60e51b815260040161057290611cb6565b60005b815181101561095157610e34828281518110610e2757610e27611d83565b60200260200101516106ac565b80610e3e81611d19565b915050610e09565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e7b82610955565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6109518282604051806020016040528060008152506114f4565b6000818152600260205260408120546001600160a01b0316610f475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610572565b6000610f5283610955565b9050806001600160a01b0316846001600160a01b03161480610f8d5750836001600160a01b0316610f82846104fd565b6001600160a01b0316145b80610fbd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610fd882610955565b6001600160a01b03161461103c5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610572565b6001600160a01b03821661109e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610572565b6110a9838383611527565b6110b4600082610e46565b6001600160a01b03831660009081526003602052604081208054600192906110dd908490611de5565b90915550506001600160a01b038216600090815260036020526040812080546001929061110b908490611d01565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600654600160a01b900460ff166111bc5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610572565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600654600160a01b900460ff16156112a85760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610572565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111ec3390565b816001600160a01b0316836001600160a01b0316036113445760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610572565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113bc848484610fc5565b6113c884848484611574565b610c635760405162461bcd60e51b815260040161057290611dfc565b60606009805461047a90611c7c565b60608160000361141a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611444578061142e81611d19565b915061143d9050600a83611e64565b915061141e565b60008167ffffffffffffffff81111561145f5761145f6119f6565b6040519080825280601f01601f191660200182016040528015611489576020820181803683370190505b5090505b8415610fbd5761149e600183611de5565b91506114ab600a86611e78565b6114b6906030611d01565b60f81b8183815181106114cb576114cb611d83565b60200101906001600160f81b031916908160001a9053506114ed600a86611e64565b945061148d565b6114fe8383611675565b61150b6000848484611574565b6106a75760405162461bcd60e51b815260040161057290611dfc565b600654600160a01b900460ff16156106a75760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610572565b60006001600160a01b0384163b1561166a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115b8903390899088908890600401611e8c565b6020604051808303816000875af19250505080156115f3575060408051601f3d908101601f191682019092526115f091810190611ec9565b60015b611650573d808015611621576040519150601f19603f3d011682016040523d82523d6000602084013e611626565b606091505b5080516000036116485760405162461bcd60e51b815260040161057290611dfc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fbd565b506001949350505050565b6001600160a01b0382166116cb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610572565b6000818152600260205260409020546001600160a01b0316156117305760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610572565b61173c60008383611527565b6001600160a01b0382166000908152600360205260408120805460019290611765908490611d01565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546117cf90611c7c565b90600052602060002090601f0160209004810192826117f15760008555611837565b82601f1061180a57805160ff1916838001178555611837565b82800160010185558215611837579182015b8281111561183757825182559160200191906001019061181c565b50611843929150611847565b5090565b5b808211156118435760008155600101611848565b6001600160e01b0319811681146107b157600080fd5b60006020828403121561188457600080fd5b8135610d3d8161185c565b60005b838110156118aa578181015183820152602001611892565b83811115610c635750506000910152565b600081518084526118d381602086016020860161188f565b601f01601f19169290920160200192915050565b602081526000610d3d60208301846118bb565b60006020828403121561190c57600080fd5b5035919050565b6001600160a01b03811681146107b157600080fd5b6000806040838503121561193b57600080fd5b823561194681611913565b946020939093013593505050565b60006020828403121561196657600080fd5b8135610d3d81611913565b60008060006060848603121561198657600080fd5b833561199181611913565b925060208401356119a181611913565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b818110156119ea578351835292840192918401916001016119ce565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611a3557611a356119f6565b604052919050565b600067ffffffffffffffff831115611a5757611a576119f6565b611a6a601f8401601f1916602001611a0c565b9050828152838383011115611a7e57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611aa757600080fd5b813567ffffffffffffffff811115611abe57600080fd5b8201601f81018413611acf57600080fd5b610fbd84823560208401611a3d565b60008060408385031215611af157600080fd5b8235611afc81611913565b915060208301358015158114611b1157600080fd5b809150509250929050565b60008060008060808587031215611b3257600080fd5b8435611b3d81611913565b93506020850135611b4d81611913565b925060408501359150606085013567ffffffffffffffff811115611b7057600080fd5b8501601f81018713611b8157600080fd5b611b9087823560208401611a3d565b91505092959194509250565b60008060408385031215611baf57600080fd5b8235611bba81611913565b91506020830135611b1181611913565b60006020808385031215611bdd57600080fd5b823567ffffffffffffffff80821115611bf557600080fd5b818501915085601f830112611c0957600080fd5b813581811115611c1b57611c1b6119f6565b8060051b9150611c2c848301611a0c565b8181529183018401918481019088841115611c4657600080fd5b938501935b83851015611c705784359250611c6083611913565b8282529385019390850190611c4b565b98975050505050505050565b600181811c90821680611c9057607f821691505b602082108103611cb057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d1457611d14611ceb565b500190565b600060018201611d2b57611d2b611ceb565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611dab57600080fd5b8151610d3d81611913565b60008351611dc881846020880161188f565b835190830190611ddc81836020880161188f565b01949350505050565b600082821015611df757611df7611ceb565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611e7357611e73611e4e565b500490565b600082611e8757611e87611e4e565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ebf908301846118bb565b9695505050505050565b600060208284031215611edb57600080fd5b8151610d3d8161185c56fea2646970667358221220f9897dce06f1171ac5466236ab5b048848f4c06e8c3bfc5bdba2a395f7c1aa6a64736f6c634300080d0033

Deployed Bytecode Sourcemap

39598:2643:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26427:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26427:305:0;;;;;;;;27372:100;;;:::i;:::-;;;;;;;:::i;28931:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28931:221:0;1528:203:1;28454:411:0;;;;;;:::i;:::-;;:::i;:::-;;39794:26;;;;;;;;;2338:25:1;;;2326:2;2311:18;39794:26:0;2192:177:1;40172:263:0;;;;;;:::i;:::-;;:::i;29681:339::-;;;;;;:::i;:::-;;:::i;39648:41::-;;39685:4;39648:41;;41965:67;;;:::i;30091:185::-;;;;;;:::i;:::-;;:::i;41170:716::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39696:28::-;;;;;;42148:90;;;;;;:::i;:::-;;:::i;4149:86::-;4220:7;;-1:-1:-1;;;4220:7:0;;;;4149:86;;27066:239;;;;;;:::i;:::-;;:::i;26796:208::-;;;;;;:::i;:::-;;:::i;7048:103::-;;;:::i;40443:377::-;;;;;;:::i;:::-;;:::i;41894:63::-;;;:::i;6397:87::-;6470:6;;-1:-1:-1;;;;;6470:6:0;6397:87;;27541:104;;;:::i;29224:155::-;;;;;;:::i;:::-;;:::i;39829:28::-;;;;;-1:-1:-1;;;;;39829:28:0;;;30347:328;;;;;;:::i;:::-;;:::i;27716:334::-;;;;;;:::i;:::-;;:::i;29450:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;29571:25:0;;;29547:4;29571:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29450:164;7306:201;;;;;;:::i;:::-;;:::i;39733:25::-;;;;;;39997:167;;;;;;:::i;:::-;;:::i;26427:305::-;26529:4;-1:-1:-1;;;;;;26566:40:0;;-1:-1:-1;;;26566:40:0;;:105;;-1:-1:-1;;;;;;;26623:48:0;;-1:-1:-1;;;26623:48:0;26566:105;:158;;;-1:-1:-1;;;;;;;;;;19290:40:0;;;26688:36;26546:178;26427:305;-1:-1:-1;;26427:305:0:o;27372:100::-;27426:13;27459:5;27452:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27372:100;:::o;28931:221::-;29007:7;32274:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32274:16:0;29027:73;;;;-1:-1:-1;;;29027:73:0;;8454:2:1;29027:73:0;;;8436:21:1;8493:2;8473:18;;;8466:30;8532:34;8512:18;;;8505:62;-1:-1:-1;;;8583:18:1;;;8576:42;8635:19;;29027:73:0;;;;;;;;;-1:-1:-1;29120:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29120:24:0;;28931:221::o;28454:411::-;28535:13;28551:23;28566:7;28551:14;:23::i;:::-;28535:39;;28599:5;-1:-1:-1;;;;;28593:11:0;:2;-1:-1:-1;;;;;28593:11:0;;28585:57;;;;-1:-1:-1;;;28585:57:0;;8867:2:1;28585:57:0;;;8849:21:1;8906:2;8886:18;;;8879:30;8945:34;8925:18;;;8918:62;-1:-1:-1;;;8996:18:1;;;8989:31;9037:19;;28585:57:0;8665:397:1;28585:57:0;2883:10;-1:-1:-1;;;;;28677:21:0;;;;:62;;-1:-1:-1;28702:37:0;28719:5;2883:10;29450:164;:::i;28702:37::-;28655:168;;;;-1:-1:-1;;;28655:168:0;;9269:2:1;28655:168:0;;;9251:21:1;9308:2;9288:18;;;9281:30;9347:34;9327:18;;;9320:62;9418:26;9398:18;;;9391:54;9462:19;;28655:168:0;9067:420:1;28655:168:0;28836:21;28845:2;28849:7;28836:8;:21::i;:::-;28524:341;28454:411;;:::o;40172:263::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40238:17:0;::::1;40230:42;;;::::0;-1:-1:-1;;;40230:42:0;;10055:2:1;40230:42:0::1;::::0;::::1;10037:21:1::0;10094:2;10074:18;;;10067:30;-1:-1:-1;;;10113:18:1;;;10106:42;10165:18;;40230:42:0::1;9853:336:1::0;40230:42:0::1;39685:4;40291:6;;40300:1;40291:10;;;;:::i;:::-;:24;;40283:68;;;::::0;-1:-1:-1;;;40283:68:0;;10661:2:1;40283:68:0::1;::::0;::::1;10643:21:1::0;10700:2;10680:18;;;10673:30;10739:33;10719:18;;;10712:61;10790:18;;40283:68:0::1;10459:355:1::0;40283:68:0::1;40362:6;:8:::0;;;:6:::1;:8;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;40381:11:0::1;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;40405:22;40415:3;40420:6;;40405:9;:22::i;:::-;40172:263:::0;:::o;29681:339::-;29876:41;2883:10;29909:7;29876:18;:41::i;:::-;29868:103;;;;-1:-1:-1;;;29868:103:0;;;;;;;:::i;:::-;29984:28;29994:4;30000:2;30004:7;29984:9;:28::i;41965:67::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;42014:10:::1;:8;:10::i;:::-;41965:67::o:0;30091:185::-;30229:39;30246:4;30252:2;30256:7;30229:39;;;;;;;;;;;;:16;:39::i;41170:716::-;41257:16;41291:23;41317:17;41327:6;41317:9;:17::i;:::-;41291:43;;41345:30;41392:15;41378:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41378:30:0;-1:-1:-1;41345:63:0;-1:-1:-1;41444:1:0;41419:22;41496:352;41521:15;41503;:33;:65;;;;;39685:4;41540:14;:28;;41503:65;41496:352;;;41585:25;41613:23;41621:14;41613:7;:23::i;:::-;41585:51;;41678:6;-1:-1:-1;;;;;41657:27:0;:17;-1:-1:-1;;;;;41657:27:0;;41653:153;;41738:14;41705:13;41719:15;41705:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;41773:17;;;;:::i;:::-;;;;41653:153;41820:16;;;;:::i;:::-;;;;41570:278;41496:352;;;-1:-1:-1;41865:13:0;;41170:716;-1:-1:-1;;;;41170:716:0:o;42148:90::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;42217:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42148:90:::0;:::o;27066:239::-;27138:7;27174:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27174:16:0;;27201:73;;;;-1:-1:-1;;;27201:73:0;;11711:2:1;27201:73:0;;;11693:21:1;11750:2;11730:18;;;11723:30;11789:34;11769:18;;;11762:62;-1:-1:-1;;;11840:18:1;;;11833:39;11889:19;;27201:73:0;11509:405:1;26796:208:0;26868:7;-1:-1:-1;;;;;26896:19:0;;26888:74;;;;-1:-1:-1;;;26888:74:0;;12121:2:1;26888:74:0;;;12103:21:1;12160:2;12140:18;;;12133:30;12199:34;12179:18;;;12172:62;-1:-1:-1;;;12250:18:1;;;12243:40;12300:19;;26888:74:0;11919:406:1;26888:74:0;-1:-1:-1;;;;;;26980:16:0;;;;;:9;:16;;;;;;;26796:208::o;7048:103::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;7113:30:::1;7140:1;7113:18;:30::i;40443:377::-:0;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;40542:4:::1;40531:7;40518:10;;:20;;;;:::i;:::-;:28;;40510:65;;;::::0;-1:-1:-1;;;40510:65:0;;12532:2:1;40510:65:0::1;::::0;::::1;12514:21:1::0;12571:2;12551:18;;;12544:30;12610:26;12590:18;;;12583:54;12654:18;;40510:65:0::1;12330:348:1::0;40510:65:0::1;40607:10;::::0;;;40642:7;;40586:18:::1;40628:21;40642:7:::0;40607:10;40628:21:::1;:::i;:::-;::::0;;;-1:-1:-1;40665:9:0::1;::::0;-1:-1:-1;40677:14:0::1;:10:::0;40690:1:::1;40677:14;:::i;:::-;40665:26;;40660:120;40698:10;;40693:1;:15;40660:120;;40740:13;::::0;:24:::1;::::0;-1:-1:-1;;;40740:24:0;;::::1;::::0;::::1;2338:25:1::0;;;40730:38:0::1;::::0;-1:-1:-1;;;;;40740:13:0::1;::::0;:21:::1;::::0;2311:18:1;;40740:24:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40766:1;40730:9;:38::i;:::-;40710:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40660:120;;;;40805:7;40790:11;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;40443:377:0:o;41894:63::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;41941:8:::1;:6;:8::i;27541:104::-:0;27597:13;27630:7;27623:14;;;;;:::i;29224:155::-;29319:52;2883:10;29352:8;29362;29319:18;:52::i;30347:328::-;30522:41;2883:10;30555:7;30522:18;:41::i;:::-;30514:103;;;;-1:-1:-1;;;30514:103:0;;;;;;;:::i;:::-;30628:39;30642:4;30648:2;30652:7;30661:5;30628:13;:39::i;:::-;30347:328;;;;:::o;27716:334::-;32250:4;32274:16;;;:7;:16;;;;;;27789:13;;-1:-1:-1;;;;;32274:16:0;27815:76;;;;-1:-1:-1;;;27815:76:0;;13141:2:1;27815:76:0;;;13123:21:1;13180:2;13160:18;;;13153:30;13219:34;13199:18;;;13192:62;-1:-1:-1;;;13270:18:1;;;13263:45;13325:19;;27815:76:0;12939:411:1;27815:76:0;27904:21;27928:10;:8;:10::i;:::-;27904:34;;27980:1;27962:7;27956:21;:25;:86;;;;;;;;;;;;;;;;;28008:7;28017:18;:7;:16;:18::i;:::-;27991:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27956:86;27949:93;27716:334;-1:-1:-1;;;27716:334:0:o;7306:201::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7395:22:0;::::1;7387:73;;;::::0;-1:-1:-1;;;7387:73:0;;14032:2:1;7387:73:0::1;::::0;::::1;14014:21:1::0;14071:2;14051:18;;;14044:30;14110:34;14090:18;;;14083:62;-1:-1:-1;;;14161:18:1;;;14154:36;14207:19;;7387:73:0::1;13830:402:1::0;7387:73:0::1;7471:28;7490:8;7471:18;:28::i;39997:167::-:0;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;40079:9:::1;40074:83;40098:3;:10;40094:1;:14;40074:83;;;40130:15;40138:3;40142:1;40138:6;;;;;;;;:::i;:::-;;;;;;;40130:7;:15::i;:::-;40110:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40074:83;;36331:174:::0;36406:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36406:29:0;-1:-1:-1;;;;;36406:29:0;;;;;;;;:24;;36460:23;36406:24;36460:14;:23::i;:::-;-1:-1:-1;;;;;36451:46:0;;;;;;;;;;;36331:174;;:::o;33169:110::-;33245:26;33255:2;33259:7;33245:26;;;;;;;;;;;;:9;:26::i;32479:348::-;32572:4;32274:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32274:16:0;32589:73;;;;-1:-1:-1;;;32589:73:0;;14439:2:1;32589:73:0;;;14421:21:1;14478:2;14458:18;;;14451:30;14517:34;14497:18;;;14490:62;-1:-1:-1;;;14568:18:1;;;14561:42;14620:19;;32589:73:0;14237:408:1;32589:73:0;32673:13;32689:23;32704:7;32689:14;:23::i;:::-;32673:39;;32742:5;-1:-1:-1;;;;;32731:16:0;:7;-1:-1:-1;;;;;32731:16:0;;:51;;;;32775:7;-1:-1:-1;;;;;32751:31:0;:20;32763:7;32751:11;:20::i;:::-;-1:-1:-1;;;;;32751:31:0;;32731:51;:87;;;-1:-1:-1;;;;;;29571:25:0;;;29547:4;29571:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32786:32;32723:96;32479:348;-1:-1:-1;;;;32479:348:0:o;35588:625::-;35747:4;-1:-1:-1;;;;;35720:31:0;:23;35735:7;35720:14;:23::i;:::-;-1:-1:-1;;;;;35720:31:0;;35712:81;;;;-1:-1:-1;;;35712:81:0;;14852:2:1;35712:81:0;;;14834:21:1;14891:2;14871:18;;;14864:30;14930:34;14910:18;;;14903:62;-1:-1:-1;;;14981:18:1;;;14974:35;15026:19;;35712:81:0;14650:401:1;35712:81:0;-1:-1:-1;;;;;35812:16:0;;35804:65;;;;-1:-1:-1;;;35804:65:0;;15258:2:1;35804:65:0;;;15240:21:1;15297:2;15277:18;;;15270:30;15336:34;15316:18;;;15309:62;-1:-1:-1;;;15387:18:1;;;15380:34;15431:19;;35804:65:0;15056:400:1;35804:65:0;35882:39;35903:4;35909:2;35913:7;35882:20;:39::i;:::-;35986:29;36003:1;36007:7;35986:8;:29::i;:::-;-1:-1:-1;;;;;36028:15:0;;;;;;:9;:15;;;;;:20;;36047:1;;36028:15;:20;;36047:1;;36028:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36059:13:0;;;;;;:9;:13;;;;;:18;;36076:1;;36059:13;:18;;36076:1;;36059:18;:::i;:::-;;;;-1:-1:-1;;36088:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36088:21:0;-1:-1:-1;;;;;36088:21:0;;;;;;;;;36127:27;;36088:16;;36127:27;;;;;;;28524:341;28454:411;;:::o;5208:120::-;4220:7;;-1:-1:-1;;;4220:7:0;;;;4744:41;;;;-1:-1:-1;;;4744:41:0;;15793:2:1;4744:41:0;;;15775:21:1;15832:2;15812:18;;;15805:30;-1:-1:-1;;;15851:18:1;;;15844:50;15911:18;;4744:41:0;15591:344:1;4744:41:0;5267:7:::1;:15:::0;;-1:-1:-1;;;;5267:15:0::1;::::0;;5298:22:::1;2883:10:::0;5307:12:::1;5298:22;::::0;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;5298:22:0::1;;;;;;;5208:120::o:0;7667:191::-;7760:6;;;-1:-1:-1;;;;;7777:17:0;;;-1:-1:-1;;;;;;7777:17:0;;;;;;;7810:40;;7760:6;;;7777:17;7760:6;;7810:40;;7741:16;;7810:40;7730:128;7667:191;:::o;4949:118::-;4220:7;;-1:-1:-1;;;4220:7:0;;;;4474:9;4466:38;;;;-1:-1:-1;;;4466:38:0;;16142:2:1;4466:38:0;;;16124:21:1;16181:2;16161:18;;;16154:30;-1:-1:-1;;;16200:18:1;;;16193:46;16256:18;;4466:38:0;15940:340:1;4466:38:0;5009:7:::1;:14:::0;;-1:-1:-1;;;;5009:14:0::1;-1:-1:-1::0;;;5009:14:0::1;::::0;;5039:20:::1;5046:12;2883:10:::0;;2803:98;36647:315;36802:8;-1:-1:-1;;;;;36793:17:0;:5;-1:-1:-1;;;;;36793:17:0;;36785:55;;;;-1:-1:-1;;;36785:55:0;;16487:2:1;36785:55:0;;;16469:21:1;16526:2;16506:18;;;16499:30;16565:27;16545:18;;;16538:55;16610:18;;36785:55:0;16285:349:1;36785:55:0;-1:-1:-1;;;;;36851:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36851:46:0;;;;;;;;;;36913:41;;540::1;;;36913::0;;513:18:1;36913:41:0;;;;;;;36647:315;;;:::o;31557:::-;31714:28;31724:4;31730:2;31734:7;31714:9;:28::i;:::-;31761:48;31784:4;31790:2;31794:7;31803:5;31761:22;:48::i;:::-;31753:111;;;;-1:-1:-1;;;31753:111:0;;;;;;;:::i;42040:100::-;42092:13;42125:7;42118:14;;;;;:::i;365:723::-;421:13;642:5;651:1;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;;33506:321;33636:18;33642:2;33646:7;33636:5;:18::i;:::-;33687:54;33718:1;33722:2;33726:7;33735:5;33687:22;:54::i;:::-;33665:154;;;;-1:-1:-1;;;33665:154:0;;;;;;;:::i;40828:203::-;4220:7;;-1:-1:-1;;;4220:7:0;;;;4474:9;4466:38;;;;-1:-1:-1;;;4466:38:0;;16142:2:1;4466:38:0;;;16124:21:1;16181:2;16161:18;;;16154:30;-1:-1:-1;;;16200:18:1;;;16193:46;16256:18;;4466:38:0;15940:340:1;37527:799:0;37682:4;-1:-1:-1;;;;;37703:13:0;;9393:19;:23;37699:620;;37739:72;;-1:-1:-1;;;37739:72:0;;-1:-1:-1;;;;;37739:36:0;;;;;:72;;2883:10;;37790:4;;37796:7;;37805:5;;37739:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37739:72:0;;;;;;;;-1:-1:-1;;37739:72:0;;;;;;;;;;;;:::i;:::-;;;37735:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37981:6;:13;37998:1;37981:18;37977:272;;38024:60;;-1:-1:-1;;;38024:60:0;;;;;;;:::i;37977:272::-;38199:6;38193:13;38184:6;38180:2;38176:15;38169:38;37735:529;-1:-1:-1;;;;;;37862:51:0;-1:-1:-1;;;37862:51:0;;-1:-1:-1;37855:58:0;;37699:620;-1:-1:-1;38303:4:0;37527:799;;;;;;:::o;34163:439::-;-1:-1:-1;;;;;34243:16:0;;34235:61;;;;-1:-1:-1;;;34235:61:0;;18382:2:1;34235:61:0;;;18364:21:1;;;18401:18;;;18394:30;18460:34;18440:18;;;18433:62;18512:18;;34235:61:0;18180:356:1;34235:61:0;32250:4;32274:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32274:16:0;:30;34307:58;;;;-1:-1:-1;;;34307:58:0;;18743:2:1;34307:58:0;;;18725:21:1;18782:2;18762:18;;;18755:30;18821;18801:18;;;18794:58;18869:18;;34307:58:0;18541:352:1;34307:58:0;34378:45;34407:1;34411:2;34415:7;34378:20;:45::i;:::-;-1:-1:-1;;;;;34436:13:0;;;;;;:9;:13;;;;;:18;;34453:1;;34436:13;:18;;34453:1;;34436:18;:::i;:::-;;;;-1:-1:-1;;34465:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34465:21:0;-1:-1:-1;;;;;34465:21:0;;;;;;;;34504:33;;34465:16;;;34504:33;;34465:16;;34504:33;42217:13:::1;42148:90:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:247::-;2433:6;2486:2;2474:9;2465:7;2461:23;2457:32;2454:52;;;2502:1;2499;2492:12;2454:52;2541:9;2528:23;2560:31;2585:5;2560:31;:::i;2626:456::-;2703:6;2711;2719;2772:2;2760:9;2751:7;2747:23;2743:32;2740:52;;;2788:1;2785;2778:12;2740:52;2827:9;2814:23;2846:31;2871:5;2846:31;:::i;:::-;2896:5;-1:-1:-1;2953:2:1;2938:18;;2925:32;2966:33;2925:32;2966:33;:::i;:::-;2626:456;;3018:7;;-1:-1:-1;;;3072:2:1;3057:18;;;;3044:32;;2626:456::o;3087:632::-;3258:2;3310:21;;;3380:13;;3283:18;;;3402:22;;;3229:4;;3258:2;3481:15;;;;3455:2;3440:18;;;3229:4;3524:169;3538:6;3535:1;3532:13;3524:169;;;3599:13;;3587:26;;3668:15;;;;3633:12;;;;3560:1;3553:9;3524:169;;;-1:-1:-1;3710:3:1;;3087:632;-1:-1:-1;;;;;;3087:632:1:o;3724:127::-;3785:10;3780:3;3776:20;3773:1;3766:31;3816:4;3813:1;3806:15;3840:4;3837:1;3830:15;3856:275;3927:2;3921:9;3992:2;3973:13;;-1:-1:-1;;3969:27:1;3957:40;;4027:18;4012:34;;4048:22;;;4009:62;4006:88;;;4074:18;;:::i;:::-;4110:2;4103:22;3856:275;;-1:-1:-1;3856:275:1:o;4136:407::-;4201:5;4235:18;4227:6;4224:30;4221:56;;;4257:18;;:::i;:::-;4295:57;4340:2;4319:15;;-1:-1:-1;;4315:29:1;4346:4;4311:40;4295:57;:::i;:::-;4286:66;;4375:6;4368:5;4361:21;4415:3;4406:6;4401:3;4397:16;4394:25;4391:45;;;4432:1;4429;4422:12;4391:45;4481:6;4476:3;4469:4;4462:5;4458:16;4445:43;4535:1;4528:4;4519:6;4512:5;4508:18;4504:29;4497:40;4136:407;;;;;:::o;4548:451::-;4617:6;4670:2;4658:9;4649:7;4645:23;4641:32;4638:52;;;4686:1;4683;4676:12;4638:52;4726:9;4713:23;4759:18;4751:6;4748:30;4745:50;;;4791:1;4788;4781:12;4745:50;4814:22;;4867:4;4859:13;;4855:27;-1:-1:-1;4845:55:1;;4896:1;4893;4886:12;4845:55;4919:74;4985:7;4980:2;4967:16;4962:2;4958;4954:11;4919:74;:::i;5004:416::-;5069:6;5077;5130:2;5118:9;5109:7;5105:23;5101:32;5098:52;;;5146:1;5143;5136:12;5098:52;5185:9;5172:23;5204:31;5229:5;5204:31;:::i;:::-;5254:5;-1:-1:-1;5311:2:1;5296:18;;5283:32;5353:15;;5346:23;5334:36;;5324:64;;5384:1;5381;5374:12;5324:64;5407:7;5397:17;;;5004:416;;;;;:::o;5648:795::-;5743:6;5751;5759;5767;5820:3;5808:9;5799:7;5795:23;5791:33;5788:53;;;5837:1;5834;5827:12;5788:53;5876:9;5863:23;5895:31;5920:5;5895:31;:::i;:::-;5945:5;-1:-1:-1;6002:2:1;5987:18;;5974:32;6015:33;5974:32;6015:33;:::i;:::-;6067:7;-1:-1:-1;6121:2:1;6106:18;;6093:32;;-1:-1:-1;6176:2:1;6161:18;;6148:32;6203:18;6192:30;;6189:50;;;6235:1;6232;6225:12;6189:50;6258:22;;6311:4;6303:13;;6299:27;-1:-1:-1;6289:55:1;;6340:1;6337;6330:12;6289:55;6363:74;6429:7;6424:2;6411:16;6406:2;6402;6398:11;6363:74;:::i;:::-;6353:84;;;5648:795;;;;;;;:::o;6448:388::-;6516:6;6524;6577:2;6565:9;6556:7;6552:23;6548:32;6545:52;;;6593:1;6590;6583:12;6545:52;6632:9;6619:23;6651:31;6676:5;6651:31;:::i;:::-;6701:5;-1:-1:-1;6758:2:1;6743:18;;6730:32;6771:33;6730:32;6771:33;:::i;6841:1021::-;6925:6;6956:2;6999;6987:9;6978:7;6974:23;6970:32;6967:52;;;7015:1;7012;7005:12;6967:52;7055:9;7042:23;7084:18;7125:2;7117:6;7114:14;7111:34;;;7141:1;7138;7131:12;7111:34;7179:6;7168:9;7164:22;7154:32;;7224:7;7217:4;7213:2;7209:13;7205:27;7195:55;;7246:1;7243;7236:12;7195:55;7282:2;7269:16;7304:2;7300;7297:10;7294:36;;;7310:18;;:::i;:::-;7356:2;7353:1;7349:10;7339:20;;7379:28;7403:2;7399;7395:11;7379:28;:::i;:::-;7441:15;;;7511:11;;;7507:20;;;7472:12;;;;7539:19;;;7536:39;;;7571:1;7568;7561:12;7536:39;7595:11;;;;7615:217;7631:6;7626:3;7623:15;7615:217;;;7711:3;7698:17;7685:30;;7728:31;7753:5;7728:31;:::i;:::-;7772:18;;;7648:12;;;;7810;;;;7615:217;;;7851:5;6841:1021;-1:-1:-1;;;;;;;;6841:1021:1:o;7867:380::-;7946:1;7942:12;;;;7989;;;8010:61;;8064:4;8056:6;8052:17;8042:27;;8010:61;8117:2;8109:6;8106:14;8086:18;8083:38;8080:161;;8163:10;8158:3;8154:20;8151:1;8144:31;8198:4;8195:1;8188:15;8226:4;8223:1;8216:15;8080:161;;7867:380;;;:::o;9492:356::-;9694:2;9676:21;;;9713:18;;;9706:30;9772:34;9767:2;9752:18;;9745:62;9839:2;9824:18;;9492:356::o;10194:127::-;10255:10;10250:3;10246:20;10243:1;10236:31;10286:4;10283:1;10276:15;10310:4;10307:1;10300:15;10326:128;10366:3;10397:1;10393:6;10390:1;10387:13;10384:39;;;10403:18;;:::i;:::-;-1:-1:-1;10439:9:1;;10326:128::o;10819:135::-;10858:3;10879:17;;;10876:43;;10899:18;;:::i;:::-;-1:-1:-1;10946:1:1;10935:13;;10819:135::o;10959:413::-;11161:2;11143:21;;;11200:2;11180:18;;;11173:30;11239:34;11234:2;11219:18;;11212:62;-1:-1:-1;;;11305:2:1;11290:18;;11283:47;11362:3;11347:19;;10959:413::o;11377:127::-;11438:10;11433:3;11429:20;11426:1;11419:31;11469:4;11466:1;11459:15;11493:4;11490:1;11483:15;12683:251;12753:6;12806:2;12794:9;12785:7;12781:23;12777:32;12774:52;;;12822:1;12819;12812:12;12774:52;12854:9;12848:16;12873:31;12898:5;12873:31;:::i;13355:470::-;13534:3;13572:6;13566:13;13588:53;13634:6;13629:3;13622:4;13614:6;13610:17;13588:53;:::i;:::-;13704:13;;13663:16;;;;13726:57;13704:13;13663:16;13760:4;13748:17;;13726:57;:::i;:::-;13799:20;;13355:470;-1:-1:-1;;;;13355:470:1:o;15461:125::-;15501:4;15529:1;15526;15523:8;15520:34;;;15534:18;;:::i;:::-;-1:-1:-1;15571:9:1;;15461:125::o;16639:414::-;16841:2;16823:21;;;16880:2;16860:18;;;16853:30;16919:34;16914:2;16899:18;;16892:62;-1:-1:-1;;;16985:2:1;16970:18;;16963:48;17043:3;17028:19;;16639:414::o;17058:127::-;17119:10;17114:3;17110:20;17107:1;17100:31;17150:4;17147:1;17140:15;17174:4;17171:1;17164:15;17190:120;17230:1;17256;17246:35;;17261:18;;:::i;:::-;-1:-1:-1;17295:9:1;;17190:120::o;17315:112::-;17347:1;17373;17363:35;;17378:18;;:::i;:::-;-1:-1:-1;17412:9:1;;17315:112::o;17432:489::-;-1:-1:-1;;;;;17701:15:1;;;17683:34;;17753:15;;17748:2;17733:18;;17726:43;17800:2;17785:18;;17778:34;;;17848:3;17843:2;17828:18;;17821:31;;;17626:4;;17869:46;;17895:19;;17887:6;17869:46;:::i;:::-;17861:54;17432:489;-1:-1:-1;;;;;;17432:489:1:o;17926:249::-;17995:6;18048:2;18036:9;18027:7;18023:23;18019:32;18016:52;;;18064:1;18061;18054:12;18016:52;18096:9;18090:16;18115:30;18139:5;18115:30;:::i

Swarm Source

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