ETH Price: $3,403.02 (+2.62%)
Gas: 4.01 Gwei

Token

Koala Doods (KD)
 

Overview

Max Total Supply

28 KD

Holders

14

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 KD
0xaE33E6d251D8669e512d071482CBB8A9Ca50A25A
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:
KoalaDoods

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/contract.sol





pragma solidity >=0.7.0 <0.9.0;




contract KoalaDoods is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  
  uint256 public cost = 0.035 ether;
  uint256 public initCost = 0.03 ether;
  uint256 public maxSupply = 8900;
  uint256 public maxMintAmountPerTx = 20;

  constructor() ERC721("Koala Doods", "KD") {
    
    _mintLoop(msg.sender, 2);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
   
    if(supply.current()<500){
        require(msg.value >= initCost * _mintAmount, "Insufficient funds!");
    }
    else{
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    _mintLoop(msg.sender, _mintAmount);
  }
  
  

  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  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 <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    

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



  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setInitCost(uint256 _initCost) public onlyOwner {
    initCost = _initCost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }



  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function withdraw() public onlyOwner {
   
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initCost","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":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_initCost","type":"uint256"}],"name":"setInitCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600891620004f4565b50667c585087238000600955666a94d74f430000600a556122c4600b556014600c553480156200004a57600080fd5b50604080518082018252600b81526a4b6f616c6120446f6f647360a81b60208083019182528351808501909452600284526112d160f21b9084015281519192916200009891600091620004f4565b508051620000ae906001906020840190620004f4565b505050620000cb620000c5620000de60201b60201c565b620000e2565b620000d833600262000134565b620006d4565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156200018e576200015760076200019360201b620010bc1760201c565b62000179836200017360076200019c60201b620010c51760201c565b620001a0565b806200018581620006a0565b91505062000137565b505050565b80546001019055565b5490565b620001c2828260405180602001604052806000815250620001c660201b60201c565b5050565b620001d283836200023d565b620001e1600084848462000385565b6200018e5760405162461bcd60e51b81526020600482015260326024820152600080516020620026bb83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b6001600160a01b038216620002955760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000234565b6000818152600260205260409020546001600160a01b031615620002fc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000234565b6001600160a01b03821660009081526003602052604081208054600192906200032790849062000648565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620003a6846001600160a01b0316620004ee60201b620010c91760201c565b15620004e257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620003e0903390899088908890600401620005cd565b602060405180830381600087803b158015620003fb57600080fd5b505af19250505080156200042e575060408051601f3d908101601f191682019092526200042b918101906200059a565b60015b620004c7573d8080156200045f576040519150601f19603f3d011682016040523d82523d6000602084013e62000464565b606091505b508051620004bf5760405162461bcd60e51b81526020600482015260326024820152600080516020620026bb83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000234565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620004e6565b5060015b949350505050565b3b151590565b828054620005029062000663565b90600052602060002090601f01602090048101928262000526576000855562000571565b82601f106200054157805160ff191683800117855562000571565b8280016001018555821562000571579182015b828111156200057157825182559160200191906001019062000554565b506200057f92915062000583565b5090565b5b808211156200057f576000815560010162000584565b600060208284031215620005ad57600080fd5b81516001600160e01b031981168114620005c657600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b828110156200061c5785810182015185820160a001528101620005fe565b828111156200062f57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600082198211156200065e576200065e620006be565b500190565b600181811c908216806200067857607f821691505b602082108114156200069a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620006b757620006b7620006be565b5060010190565b634e487b7160e01b600052601160045260246000fd5b611fd780620006e46000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146104fa578063e985e9c514610510578063efbd73f414610559578063f2fde38b1461057957600080fd5b8063a22cb4651461047a578063b071401b1461049a578063b88d4fde146104ba578063c87b56dd146104da57600080fd5b80638da5cb5b116100d15780638da5cb5b1461041e57806394354fd01461043c57806395d89b4114610452578063a0712d681461046757600080fd5b8063715018a6146103c95780637ec4a659146103de578063840f51f9146103fe57600080fd5b806323b872dd1161016f57806344a0d68a1161013e57806344a0d68a1461035457806362b99ad4146103745780636352211e1461038957806370a08231146103a957600080fd5b806323b872dd146102d25780633ccfd60b146102f257806342842e0e14610307578063438b63001461032757600080fd5b8063081812fc116101ab578063081812fc1461024d578063095ea7b31461028557806313faede6146102a757806318160ddd146102bd57600080fd5b806301ffc9a7146101d2578063052f079a1461020757806306fdde031461022b575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611ba5565b610599565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021d600a5481565b6040519081526020016101fe565b34801561023757600080fd5b506102406105eb565b6040516101fe9190611d50565b34801561025957600080fd5b5061026d610268366004611c28565b61067d565b6040516001600160a01b0390911681526020016101fe565b34801561029157600080fd5b506102a56102a0366004611b7b565b610717565b005b3480156102b357600080fd5b5061021d60095481565b3480156102c957600080fd5b5061021d61082d565b3480156102de57600080fd5b506102a56102ed366004611a87565b61083d565b3480156102fe57600080fd5b506102a561086e565b34801561031357600080fd5b506102a5610322366004611a87565b61090c565b34801561033357600080fd5b50610347610342366004611a39565b610927565b6040516101fe9190611d0c565b34801561036057600080fd5b506102a561036f366004611c28565b610a08565b34801561038057600080fd5b50610240610a37565b34801561039557600080fd5b5061026d6103a4366004611c28565b610ac5565b3480156103b557600080fd5b5061021d6103c4366004611a39565b610b3c565b3480156103d557600080fd5b506102a5610bc3565b3480156103ea57600080fd5b506102a56103f9366004611bdf565b610bf9565b34801561040a57600080fd5b506102a5610419366004611c28565b610c3a565b34801561042a57600080fd5b506006546001600160a01b031661026d565b34801561044857600080fd5b5061021d600c5481565b34801561045e57600080fd5b50610240610c69565b6102a5610475366004611c28565b610c78565b34801561048657600080fd5b506102a5610495366004611b3f565b610df1565b3480156104a657600080fd5b506102a56104b5366004611c28565b610dfc565b3480156104c657600080fd5b506102a56104d5366004611ac3565b610e2b565b3480156104e657600080fd5b506102406104f5366004611c28565b610e63565b34801561050657600080fd5b5061021d600b5481565b34801561051c57600080fd5b506101f261052b366004611a54565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056557600080fd5b506102a5610574366004611c41565b610f3e565b34801561058557600080fd5b506102a5610594366004611a39565b611024565b60006001600160e01b031982166380ac58cd60e01b14806105ca57506001600160e01b03198216635b5e139f60e01b145b806105e557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105fa90611ec9565b80601f016020809104026020016040519081016040528092919081815260200182805461062690611ec9565b80156106735780601f1061064857610100808354040283529160200191610673565b820191906000526020600020905b81548152906001019060200180831161065657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106fb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061072282610ac5565b9050806001600160a01b0316836001600160a01b031614156107905760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f2565b336001600160a01b03821614806107ac57506107ac813361052b565b61081e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f2565b61082883836110cf565b505050565b600061083860075490565b905090565b610847338261113d565b6108635760405162461bcd60e51b81526004016106f290611dea565b610828838383611234565b6006546001600160a01b031633146108985760405162461bcd60e51b81526004016106f290611db5565b60006108ac6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146108f6576040519150601f19603f3d011682016040523d82523d6000602084013e6108fb565b606091505b505090508061090957600080fd5b50565b61082883838360405180602001604052806000815250610e2b565b6060600061093483610b3c565b905060008167ffffffffffffffff81111561095157610951611f75565b60405190808252806020026020018201604052801561097a578160200160208202803683370190505b509050600160005b83811080156109935750600b548211155b156109fe5760006109a383610ac5565b9050866001600160a01b0316816001600160a01b031614156109eb57828483815181106109d2576109d2611f5f565b6020908102919091010152816109e781611f04565b9250505b826109f581611f04565b93505050610982565b5090949350505050565b6006546001600160a01b03163314610a325760405162461bcd60e51b81526004016106f290611db5565b600955565b60088054610a4490611ec9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7090611ec9565b8015610abd5780601f10610a9257610100808354040283529160200191610abd565b820191906000526020600020905b815481529060010190602001808311610aa057829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b0316806105e55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106f2565b60006001600160a01b038216610ba75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f2565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610bed5760405162461bcd60e51b81526004016106f290611db5565b610bf760006113d4565b565b6006546001600160a01b03163314610c235760405162461bcd60e51b81526004016106f290611db5565b8051610c3690600890602084019061190e565b5050565b6006546001600160a01b03163314610c645760405162461bcd60e51b81526004016106f290611db5565b600a55565b6060600180546105fa90611ec9565b80600081118015610c8b5750600c548111155b610cce5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016106f2565b600b5481610cdb60075490565b610ce59190611e3b565b1115610d2a5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106f2565b6101f4610d3660075490565b1015610d945781600a54610d4a9190611e67565b341015610d8f5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106f2565b610de7565b81600954610da29190611e67565b341015610de75760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106f2565b610c363383611426565b610c36338383611463565b6006546001600160a01b03163314610e265760405162461bcd60e51b81526004016106f290611db5565b600c55565b610e35338361113d565b610e515760405162461bcd60e51b81526004016106f290611dea565b610e5d84848484611532565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ee25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f2565b6000610eec611565565b90506000815111610f0c5760405180602001604052806000815250610f37565b80610f1684611574565b604051602001610f27929190611c90565b6040516020818303038152906040525b9392505050565b81600081118015610f515750600c548111155b610f945760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016106f2565b600b5481610fa160075490565b610fab9190611e3b565b1115610ff05760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106f2565b6006546001600160a01b0316331461101a5760405162461bcd60e51b81526004016106f290611db5565b6108288284611426565b6006546001600160a01b0316331461104e5760405162461bcd60e51b81526004016106f290611db5565b6001600160a01b0381166110b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f2565b610909816113d4565b80546001019055565b5490565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110482610ac5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111b65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f2565b60006111c183610ac5565b9050806001600160a01b0316846001600160a01b031614806111fc5750836001600160a01b03166111f18461067d565b6001600160a01b0316145b8061122c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661124782610ac5565b6001600160a01b0316146112af5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f2565b6001600160a01b0382166113115760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f2565b61131c6000826110cf565b6001600160a01b0383166000908152600360205260408120805460019290611345908490611e86565b90915550506001600160a01b0382166000908152600360205260408120805460019290611373908490611e3b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156108285761143f600780546001019055565b6114518361144c60075490565b611672565b8061145b81611f04565b915050611429565b816001600160a01b0316836001600160a01b031614156114c55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61153d848484611234565b6115498484848461168c565b610e5d5760405162461bcd60e51b81526004016106f290611d63565b6060600880546105fa90611ec9565b6060816115985750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115c257806115ac81611f04565b91506115bb9050600a83611e53565b915061159c565b60008167ffffffffffffffff8111156115dd576115dd611f75565b6040519080825280601f01601f191660200182016040528015611607576020820181803683370190505b5090505b841561122c5761161c600183611e86565b9150611629600a86611f1f565b611634906030611e3b565b60f81b81838151811061164957611649611f5f565b60200101906001600160f81b031916908160001a90535061166b600a86611e53565b945061160b565b610c36828260405180602001604052806000815250611799565b60006001600160a01b0384163b1561178e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116d0903390899088908890600401611ccf565b602060405180830381600087803b1580156116ea57600080fd5b505af192505050801561171a575060408051601f3d908101601f1916820190925261171791810190611bc2565b60015b611774573d808015611748576040519150601f19603f3d011682016040523d82523d6000602084013e61174d565b606091505b50805161176c5760405162461bcd60e51b81526004016106f290611d63565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061122c565b506001949350505050565b6117a383836117cc565b6117b0600084848461168c565b6108285760405162461bcd60e51b81526004016106f290611d63565b6001600160a01b0382166118225760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f2565b6000818152600260205260409020546001600160a01b0316156118875760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f2565b6001600160a01b03821660009081526003602052604081208054600192906118b0908490611e3b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461191a90611ec9565b90600052602060002090601f01602090048101928261193c5760008555611982565b82601f1061195557805160ff1916838001178555611982565b82800160010185558215611982579182015b82811115611982578251825591602001919060010190611967565b5061198e929150611992565b5090565b5b8082111561198e5760008155600101611993565b600067ffffffffffffffff808411156119c2576119c2611f75565b604051601f8501601f19908116603f011681019082821181831017156119ea576119ea611f75565b81604052809350858152868686011115611a0357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a3457600080fd5b919050565b600060208284031215611a4b57600080fd5b610f3782611a1d565b60008060408385031215611a6757600080fd5b611a7083611a1d565b9150611a7e60208401611a1d565b90509250929050565b600080600060608486031215611a9c57600080fd5b611aa584611a1d565b9250611ab360208501611a1d565b9150604084013590509250925092565b60008060008060808587031215611ad957600080fd5b611ae285611a1d565b9350611af060208601611a1d565b925060408501359150606085013567ffffffffffffffff811115611b1357600080fd5b8501601f81018713611b2457600080fd5b611b33878235602084016119a7565b91505092959194509250565b60008060408385031215611b5257600080fd5b611b5b83611a1d565b915060208301358015158114611b7057600080fd5b809150509250929050565b60008060408385031215611b8e57600080fd5b611b9783611a1d565b946020939093013593505050565b600060208284031215611bb757600080fd5b8135610f3781611f8b565b600060208284031215611bd457600080fd5b8151610f3781611f8b565b600060208284031215611bf157600080fd5b813567ffffffffffffffff811115611c0857600080fd5b8201601f81018413611c1957600080fd5b61122c848235602084016119a7565b600060208284031215611c3a57600080fd5b5035919050565b60008060408385031215611c5457600080fd5b82359150611a7e60208401611a1d565b60008151808452611c7c816020860160208601611e9d565b601f01601f19169290920160200192915050565b60008351611ca2818460208801611e9d565b835190830190611cb6818360208801611e9d565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d0290830184611c64565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d4457835183529284019291840191600101611d28565b50909695505050505050565b602081526000610f376020830184611c64565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e4e57611e4e611f33565b500190565b600082611e6257611e62611f49565b500490565b6000816000190483118215151615611e8157611e81611f33565b500290565b600082821015611e9857611e98611f33565b500390565b60005b83811015611eb8578181015183820152602001611ea0565b83811115610e5d5750506000910152565b600181811c90821680611edd57607f821691505b60208210811415611efe57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f1857611f18611f33565b5060010190565b600082611f2e57611f2e611f49565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461090957600080fdfea2646970667358221220b722d6d2645ff103c83d0e75786dc455e7bbf74e28d2729f41787eb627923a9f64736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e204552433732315265

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146104fa578063e985e9c514610510578063efbd73f414610559578063f2fde38b1461057957600080fd5b8063a22cb4651461047a578063b071401b1461049a578063b88d4fde146104ba578063c87b56dd146104da57600080fd5b80638da5cb5b116100d15780638da5cb5b1461041e57806394354fd01461043c57806395d89b4114610452578063a0712d681461046757600080fd5b8063715018a6146103c95780637ec4a659146103de578063840f51f9146103fe57600080fd5b806323b872dd1161016f57806344a0d68a1161013e57806344a0d68a1461035457806362b99ad4146103745780636352211e1461038957806370a08231146103a957600080fd5b806323b872dd146102d25780633ccfd60b146102f257806342842e0e14610307578063438b63001461032757600080fd5b8063081812fc116101ab578063081812fc1461024d578063095ea7b31461028557806313faede6146102a757806318160ddd146102bd57600080fd5b806301ffc9a7146101d2578063052f079a1461020757806306fdde031461022b575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611ba5565b610599565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021d600a5481565b6040519081526020016101fe565b34801561023757600080fd5b506102406105eb565b6040516101fe9190611d50565b34801561025957600080fd5b5061026d610268366004611c28565b61067d565b6040516001600160a01b0390911681526020016101fe565b34801561029157600080fd5b506102a56102a0366004611b7b565b610717565b005b3480156102b357600080fd5b5061021d60095481565b3480156102c957600080fd5b5061021d61082d565b3480156102de57600080fd5b506102a56102ed366004611a87565b61083d565b3480156102fe57600080fd5b506102a561086e565b34801561031357600080fd5b506102a5610322366004611a87565b61090c565b34801561033357600080fd5b50610347610342366004611a39565b610927565b6040516101fe9190611d0c565b34801561036057600080fd5b506102a561036f366004611c28565b610a08565b34801561038057600080fd5b50610240610a37565b34801561039557600080fd5b5061026d6103a4366004611c28565b610ac5565b3480156103b557600080fd5b5061021d6103c4366004611a39565b610b3c565b3480156103d557600080fd5b506102a5610bc3565b3480156103ea57600080fd5b506102a56103f9366004611bdf565b610bf9565b34801561040a57600080fd5b506102a5610419366004611c28565b610c3a565b34801561042a57600080fd5b506006546001600160a01b031661026d565b34801561044857600080fd5b5061021d600c5481565b34801561045e57600080fd5b50610240610c69565b6102a5610475366004611c28565b610c78565b34801561048657600080fd5b506102a5610495366004611b3f565b610df1565b3480156104a657600080fd5b506102a56104b5366004611c28565b610dfc565b3480156104c657600080fd5b506102a56104d5366004611ac3565b610e2b565b3480156104e657600080fd5b506102406104f5366004611c28565b610e63565b34801561050657600080fd5b5061021d600b5481565b34801561051c57600080fd5b506101f261052b366004611a54565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056557600080fd5b506102a5610574366004611c41565b610f3e565b34801561058557600080fd5b506102a5610594366004611a39565b611024565b60006001600160e01b031982166380ac58cd60e01b14806105ca57506001600160e01b03198216635b5e139f60e01b145b806105e557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105fa90611ec9565b80601f016020809104026020016040519081016040528092919081815260200182805461062690611ec9565b80156106735780601f1061064857610100808354040283529160200191610673565b820191906000526020600020905b81548152906001019060200180831161065657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106fb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061072282610ac5565b9050806001600160a01b0316836001600160a01b031614156107905760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f2565b336001600160a01b03821614806107ac57506107ac813361052b565b61081e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f2565b61082883836110cf565b505050565b600061083860075490565b905090565b610847338261113d565b6108635760405162461bcd60e51b81526004016106f290611dea565b610828838383611234565b6006546001600160a01b031633146108985760405162461bcd60e51b81526004016106f290611db5565b60006108ac6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146108f6576040519150601f19603f3d011682016040523d82523d6000602084013e6108fb565b606091505b505090508061090957600080fd5b50565b61082883838360405180602001604052806000815250610e2b565b6060600061093483610b3c565b905060008167ffffffffffffffff81111561095157610951611f75565b60405190808252806020026020018201604052801561097a578160200160208202803683370190505b509050600160005b83811080156109935750600b548211155b156109fe5760006109a383610ac5565b9050866001600160a01b0316816001600160a01b031614156109eb57828483815181106109d2576109d2611f5f565b6020908102919091010152816109e781611f04565b9250505b826109f581611f04565b93505050610982565b5090949350505050565b6006546001600160a01b03163314610a325760405162461bcd60e51b81526004016106f290611db5565b600955565b60088054610a4490611ec9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7090611ec9565b8015610abd5780601f10610a9257610100808354040283529160200191610abd565b820191906000526020600020905b815481529060010190602001808311610aa057829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b0316806105e55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106f2565b60006001600160a01b038216610ba75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f2565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610bed5760405162461bcd60e51b81526004016106f290611db5565b610bf760006113d4565b565b6006546001600160a01b03163314610c235760405162461bcd60e51b81526004016106f290611db5565b8051610c3690600890602084019061190e565b5050565b6006546001600160a01b03163314610c645760405162461bcd60e51b81526004016106f290611db5565b600a55565b6060600180546105fa90611ec9565b80600081118015610c8b5750600c548111155b610cce5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016106f2565b600b5481610cdb60075490565b610ce59190611e3b565b1115610d2a5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106f2565b6101f4610d3660075490565b1015610d945781600a54610d4a9190611e67565b341015610d8f5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106f2565b610de7565b81600954610da29190611e67565b341015610de75760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106f2565b610c363383611426565b610c36338383611463565b6006546001600160a01b03163314610e265760405162461bcd60e51b81526004016106f290611db5565b600c55565b610e35338361113d565b610e515760405162461bcd60e51b81526004016106f290611dea565b610e5d84848484611532565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ee25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f2565b6000610eec611565565b90506000815111610f0c5760405180602001604052806000815250610f37565b80610f1684611574565b604051602001610f27929190611c90565b6040516020818303038152906040525b9392505050565b81600081118015610f515750600c548111155b610f945760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016106f2565b600b5481610fa160075490565b610fab9190611e3b565b1115610ff05760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106f2565b6006546001600160a01b0316331461101a5760405162461bcd60e51b81526004016106f290611db5565b6108288284611426565b6006546001600160a01b0316331461104e5760405162461bcd60e51b81526004016106f290611db5565b6001600160a01b0381166110b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f2565b610909816113d4565b80546001019055565b5490565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110482610ac5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111b65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f2565b60006111c183610ac5565b9050806001600160a01b0316846001600160a01b031614806111fc5750836001600160a01b03166111f18461067d565b6001600160a01b0316145b8061122c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661124782610ac5565b6001600160a01b0316146112af5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f2565b6001600160a01b0382166113115760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f2565b61131c6000826110cf565b6001600160a01b0383166000908152600360205260408120805460019290611345908490611e86565b90915550506001600160a01b0382166000908152600360205260408120805460019290611373908490611e3b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156108285761143f600780546001019055565b6114518361144c60075490565b611672565b8061145b81611f04565b915050611429565b816001600160a01b0316836001600160a01b031614156114c55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61153d848484611234565b6115498484848461168c565b610e5d5760405162461bcd60e51b81526004016106f290611d63565b6060600880546105fa90611ec9565b6060816115985750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115c257806115ac81611f04565b91506115bb9050600a83611e53565b915061159c565b60008167ffffffffffffffff8111156115dd576115dd611f75565b6040519080825280601f01601f191660200182016040528015611607576020820181803683370190505b5090505b841561122c5761161c600183611e86565b9150611629600a86611f1f565b611634906030611e3b565b60f81b81838151811061164957611649611f5f565b60200101906001600160f81b031916908160001a90535061166b600a86611e53565b945061160b565b610c36828260405180602001604052806000815250611799565b60006001600160a01b0384163b1561178e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116d0903390899088908890600401611ccf565b602060405180830381600087803b1580156116ea57600080fd5b505af192505050801561171a575060408051601f3d908101601f1916820190925261171791810190611bc2565b60015b611774573d808015611748576040519150601f19603f3d011682016040523d82523d6000602084013e61174d565b606091505b50805161176c5760405162461bcd60e51b81526004016106f290611d63565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061122c565b506001949350505050565b6117a383836117cc565b6117b0600084848461168c565b6108285760405162461bcd60e51b81526004016106f290611d63565b6001600160a01b0382166118225760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f2565b6000818152600260205260409020546001600160a01b0316156118875760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f2565b6001600160a01b03821660009081526003602052604081208054600192906118b0908490611e3b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461191a90611ec9565b90600052602060002090601f01602090048101928261193c5760008555611982565b82601f1061195557805160ff1916838001178555611982565b82800160010185558215611982579182015b82811115611982578251825591602001919060010190611967565b5061198e929150611992565b5090565b5b8082111561198e5760008155600101611993565b600067ffffffffffffffff808411156119c2576119c2611f75565b604051601f8501601f19908116603f011681019082821181831017156119ea576119ea611f75565b81604052809350858152868686011115611a0357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a3457600080fd5b919050565b600060208284031215611a4b57600080fd5b610f3782611a1d565b60008060408385031215611a6757600080fd5b611a7083611a1d565b9150611a7e60208401611a1d565b90509250929050565b600080600060608486031215611a9c57600080fd5b611aa584611a1d565b9250611ab360208501611a1d565b9150604084013590509250925092565b60008060008060808587031215611ad957600080fd5b611ae285611a1d565b9350611af060208601611a1d565b925060408501359150606085013567ffffffffffffffff811115611b1357600080fd5b8501601f81018713611b2457600080fd5b611b33878235602084016119a7565b91505092959194509250565b60008060408385031215611b5257600080fd5b611b5b83611a1d565b915060208301358015158114611b7057600080fd5b809150509250929050565b60008060408385031215611b8e57600080fd5b611b9783611a1d565b946020939093013593505050565b600060208284031215611bb757600080fd5b8135610f3781611f8b565b600060208284031215611bd457600080fd5b8151610f3781611f8b565b600060208284031215611bf157600080fd5b813567ffffffffffffffff811115611c0857600080fd5b8201601f81018413611c1957600080fd5b61122c848235602084016119a7565b600060208284031215611c3a57600080fd5b5035919050565b60008060408385031215611c5457600080fd5b82359150611a7e60208401611a1d565b60008151808452611c7c816020860160208601611e9d565b601f01601f19169290920160200192915050565b60008351611ca2818460208801611e9d565b835190830190611cb6818360208801611e9d565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d0290830184611c64565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d4457835183529284019291840191600101611d28565b50909695505050505050565b602081526000610f376020830184611c64565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e4e57611e4e611f33565b500190565b600082611e6257611e62611f49565b500490565b6000816000190483118215151615611e8157611e81611f33565b500290565b600082821015611e9857611e98611f33565b500390565b60005b83811015611eb8578181015183820152602001611ea0565b83811115610e5d5750506000910152565b600181811c90821680611edd57607f821691505b60208210811415611efe57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f1857611f18611f33565b5060010190565b600082611f2e57611f2e611f49565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461090957600080fdfea2646970667358221220b722d6d2645ff103c83d0e75786dc455e7bbf74e28d2729f41787eb627923a9f64736f6c63430008070033

Deployed Bytecode Sourcemap

37764:3581:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25240:305;;;;;;;;;;-1:-1:-1;25240:305:0;;;;;:::i;:::-;;:::i;:::-;;;6919:14:1;;6912:22;6894:41;;6882:2;6867:18;25240:305:0;;;;;;;;37993:36;;;;;;;;;;;;;;;;;;;14744:25:1;;;14732:2;14717:18;37993:36:0;14598:177:1;26185:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27744:221::-;;;;;;;;;;-1:-1:-1;27744:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5580:32:1;;;5562:51;;5550:2;5535:18;27744:221:0;5416:203:1;27267:411:0;;;;;;;;;;-1:-1:-1;27267:411:0;;;;;:::i;:::-;;:::i;:::-;;37955:33;;;;;;;;;;;;;;;;38446:89;;;;;;;;;;;;;:::i;28494:339::-;;;;;;;;;;-1:-1:-1;28494:339:0;;;;;:::i;:::-;;:::i;40555:467::-;;;;;;;;;;;;;:::i;28904:185::-;;;;;;;;;;-1:-1:-1;28904:185:0;;;;;:::i;:::-;;:::i;39054:635::-;;;;;;;;;;-1:-1:-1;39054:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40133:74::-;;;;;;;;;;-1:-1:-1;40133:74:0;;;;;:::i;:::-;;:::i;37918:28::-;;;;;;;;;;;;;:::i;25879:239::-;;;;;;;;;;-1:-1:-1;25879:239:0;;;;;:::i;:::-;;:::i;25609:208::-;;;;;;;;;;-1:-1:-1;25609:208:0;;;;;:::i;:::-;;:::i;6228:103::-;;;;;;;;;;;;;:::i;40449:100::-;;;;;;;;;;-1:-1:-1;40449:100:0;;;;;:::i;:::-;;:::i;40213:90::-;;;;;;;;;;-1:-1:-1;40213:90:0;;;;;:::i;:::-;;:::i;5577:87::-;;;;;;;;;;-1:-1:-1;5650:6:0;;-1:-1:-1;;;;;5650:6:0;5577:87;;38070:38;;;;;;;;;;;;;;;;26354:104;;;;;;;;;;;;;:::i;38541:338::-;;;;;;:::i;:::-;;:::i;28037:155::-;;;;;;;;;;-1:-1:-1;28037:155:0;;;;;:::i;:::-;;:::i;40309:130::-;;;;;;;;;;-1:-1:-1;40309:130:0;;;;;:::i;:::-;;:::i;29160:328::-;;;;;;;;;;-1:-1:-1;29160:328:0;;;;;:::i;:::-;;:::i;39695:428::-;;;;;;;;;;-1:-1:-1;39695:428:0;;;;;:::i;:::-;;:::i;38034:31::-;;;;;;;;;;;;;;;;28263:164;;;;;;;;;;-1:-1:-1;28263:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28384:25:0;;;28360:4;28384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28263:164;38893:155;;;;;;;;;;-1:-1:-1;38893:155:0;;;;;:::i;:::-;;:::i;6486:201::-;;;;;;;;;;-1:-1:-1;6486:201:0;;;;;:::i;:::-;;:::i;25240:305::-;25342:4;-1:-1:-1;;;;;;25379:40:0;;-1:-1:-1;;;25379:40:0;;:105;;-1:-1:-1;;;;;;;25436:48:0;;-1:-1:-1;;;25436:48:0;25379:105;:158;;;-1:-1:-1;;;;;;;;;;18118:40:0;;;25501:36;25359:178;25240:305;-1:-1:-1;;25240:305:0:o;26185:100::-;26239:13;26272:5;26265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26185:100;:::o;27744:221::-;27820:7;31087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31087:16:0;27840:73;;;;-1:-1:-1;;;27840:73:0;;11683:2:1;27840:73:0;;;11665:21:1;11722:2;11702:18;;;11695:30;11761:34;11741:18;;;11734:62;-1:-1:-1;;;11812:18:1;;;11805:42;11864:19;;27840:73:0;;;;;;;;;-1:-1:-1;27933:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27933:24:0;;27744:221::o;27267:411::-;27348:13;27364:23;27379:7;27364:14;:23::i;:::-;27348:39;;27412:5;-1:-1:-1;;;;;27406:11:0;:2;-1:-1:-1;;;;;27406:11:0;;;27398:57;;;;-1:-1:-1;;;27398:57:0;;13283:2:1;27398:57:0;;;13265:21:1;13322:2;13302:18;;;13295:30;13361:34;13341:18;;;13334:62;-1:-1:-1;;;13412:18:1;;;13405:31;13453:19;;27398:57:0;13081:397:1;27398:57:0;4381:10;-1:-1:-1;;;;;27490:21:0;;;;:62;;-1:-1:-1;27515:37:0;27532:5;4381:10;28263:164;:::i;27515:37::-;27468:168;;;;-1:-1:-1;;;27468:168:0;;10076:2:1;27468:168:0;;;10058:21:1;10115:2;10095:18;;;10088:30;10154:34;10134:18;;;10127:62;10225:26;10205:18;;;10198:54;10269:19;;27468:168:0;9874:420:1;27468:168:0;27649:21;27658:2;27662:7;27649:8;:21::i;:::-;27337:341;27267:411;;:::o;38446:89::-;38490:7;38513:16;:6;997:14;;905:114;38513:16;38506:23;;38446:89;:::o;28494:339::-;28689:41;4381:10;28722:7;28689:18;:41::i;:::-;28681:103;;;;-1:-1:-1;;;28681:103:0;;;;;;;:::i;:::-;28797:28;28807:4;28813:2;28817:7;28797:9;:28::i;40555:467::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;40844:7:::1;40865;5650:6:::0;;-1:-1:-1;;;;;5650:6:0;;5577:87;40865:7:::1;-1:-1:-1::0;;;;;40857:21:0::1;40886;40857:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40843:69;;;40927:2;40919:11;;;::::0;::::1;;40592:430;40555:467::o:0;28904:185::-;29042:39;29059:4;29065:2;29069:7;29042:39;;;;;;;;;;;;:16;:39::i;39054:635::-;39129:16;39157:23;39183:17;39193:6;39183:9;:17::i;:::-;39157:43;;39207:30;39254:15;39240:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39240:30:0;-1:-1:-1;39207:63:0;-1:-1:-1;39302:1:0;39277:22;39346:309;39371:15;39353;:33;:64;;;;;39408:9;;39390:14;:27;;39353:64;39346:309;;;39428:25;39456:23;39464:14;39456:7;:23::i;:::-;39428:51;;39515:6;-1:-1:-1;;;;;39494:27:0;:17;-1:-1:-1;;;;;39494:27:0;;39490:131;;;39567:14;39534:13;39548:15;39534:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;39594:17;;;;:::i;:::-;;;;39490:131;39631:16;;;;:::i;:::-;;;;39419:236;39346:309;;;-1:-1:-1;39670:13:0;;39054:635;-1:-1:-1;;;;39054:635:0:o;40133:74::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;40189:4:::1;:12:::0;40133:74::o;37918:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25879:239::-;25951:7;25987:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25987:16:0;26022:19;26014:73;;;;-1:-1:-1;;;26014:73:0;;10912:2:1;26014:73:0;;;10894:21:1;10951:2;10931:18;;;10924:30;10990:34;10970:18;;;10963:62;-1:-1:-1;;;11041:18:1;;;11034:39;11090:19;;26014:73:0;10710:405:1;25609:208:0;25681:7;-1:-1:-1;;;;;25709:19:0;;25701:74;;;;-1:-1:-1;;;25701:74:0;;10501:2:1;25701:74:0;;;10483:21:1;10540:2;10520:18;;;10513:30;10579:34;10559:18;;;10552:62;-1:-1:-1;;;10630:18:1;;;10623:40;10680:19;;25701:74:0;10299:406:1;25701:74:0;-1:-1:-1;;;;;;25793:16:0;;;;;:9;:16;;;;;;;25609:208::o;6228:103::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;6293:30:::1;6320:1;6293:18;:30::i;:::-;6228:103::o:0;40449:100::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;40521:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40449:100:::0;:::o;40213:90::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;40277:8:::1;:20:::0;40213:90::o;26354:104::-;26410:13;26443:7;26436:14;;;;;:::i;38541:338::-;38606:11;38280:1;38266:11;:15;:52;;;;;38300:18;;38285:11;:33;;38266:52;38258:85;;;;-1:-1:-1;;;38258:85:0;;8555:2:1;38258:85:0;;;8537:21:1;8594:2;8574:18;;;8567:30;-1:-1:-1;;;8613:18:1;;;8606:50;8673:18;;38258:85:0;8353:344:1;38258:85:0;38392:9;;38377:11;38358:16;:6;997:14;;905:114;38358:16;:30;;;;:::i;:::-;:43;;38350:76;;;;-1:-1:-1;;;38350:76:0;;13685:2:1;38350:76:0;;;13667:21:1;13724:2;13704:18;;;13697:30;-1:-1:-1;;;13743:18:1;;;13736:50;13803:18;;38350:76:0;13483:344:1;38350:76:0;38651:3:::1;38634:16;:6;997:14:::0;;905:114;38634:16:::1;:20;38631:202;;;38698:11;38687:8;;:22;;;;:::i;:::-;38674:9;:35;;38666:67;;;::::0;-1:-1:-1;;;38666:67:0;;14452:2:1;38666:67:0::1;::::0;::::1;14434:21:1::0;14491:2;14471:18;;;14464:30;-1:-1:-1;;;14510:18:1;;;14503:49;14569:18;;38666:67:0::1;14250:343:1::0;38666:67:0::1;38631:202;;;38790:11;38783:4;;:18;;;;:::i;:::-;38770:9;:31;;38762:63;;;::::0;-1:-1:-1;;;38762:63:0;;14452:2:1;38762:63:0::1;::::0;::::1;14434:21:1::0;14491:2;14471:18;;;14464:30;-1:-1:-1;;;14510:18:1;;;14503:49;14569:18;;38762:63:0::1;14250:343:1::0;38762:63:0::1;38839:34;38849:10;38861:11;38839:9;:34::i;28037:155::-:0;28132:52;4381:10;28165:8;28175;28132:18;:52::i;40309:130::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;40393:18:::1;:40:::0;40309:130::o;29160:328::-;29335:41;4381:10;29368:7;29335:18;:41::i;:::-;29327:103;;;;-1:-1:-1;;;29327:103:0;;;;;;;:::i;:::-;29441:39;29455:4;29461:2;29465:7;29474:5;29441:13;:39::i;:::-;29160:328;;;;:::o;39695:428::-;31063:4;31087:16;;;:7;:16;;;;;;39794:13;;-1:-1:-1;;;;;31087:16:0;39819:98;;;;-1:-1:-1;;;39819:98:0;;12867:2:1;39819:98:0;;;12849:21:1;12906:2;12886:18;;;12879:30;12945:34;12925:18;;;12918:62;-1:-1:-1;;;12996:18:1;;;12989:45;13051:19;;39819:98:0;12665:411:1;39819:98:0;39934:28;39965:10;:8;:10::i;:::-;39934:41;;40020:1;39995:14;39989:28;:32;:128;;;;;;;;;;;;;;;;;40057:14;40073:19;:8;:17;:19::i;:::-;40040:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39989:128;39982:135;39695:428;-1:-1:-1;;;39695:428:0:o;38893:155::-;38979:11;38280:1;38266:11;:15;:52;;;;;38300:18;;38285:11;:33;;38266:52;38258:85;;;;-1:-1:-1;;;38258:85:0;;8555:2:1;38258:85:0;;;8537:21:1;8594:2;8574:18;;;8567:30;-1:-1:-1;;;8613:18:1;;;8606:50;8673:18;;38258:85:0;8353:344:1;38258:85:0;38392:9;;38377:11;38358:16;:6;997:14;;905:114;38358:16;:30;;;;:::i;:::-;:43;;38350:76;;;;-1:-1:-1;;;38350:76:0;;13685:2:1;38350:76:0;;;13667:21:1;13724:2;13704:18;;;13697:30;-1:-1:-1;;;13743:18:1;;;13736:50;13803:18;;38350:76:0;13483:344:1;38350:76:0;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23:::1;5789:68;;;;-1:-1:-1::0;;;5789:68:0::1;;;;;;;:::i;:::-;39009:33:::2;39019:9;39030:11;39009:9;:33::i;6486:201::-:0;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6575:22:0;::::1;6567:73;;;::::0;-1:-1:-1;;;6567:73:0;;7791:2:1;6567:73:0::1;::::0;::::1;7773:21:1::0;7830:2;7810:18;;;7803:30;7869:34;7849:18;;;7842:62;-1:-1:-1;;;7920:18:1;;;7913:36;7966:19;;6567:73:0::1;7589:402:1::0;6567:73:0::1;6651:28;6670:8;6651:18;:28::i;1027:127::-:0;1116:19;;1134:1;1116:19;;;1027:127::o;905:114::-;997:14;;905:114::o;7865:387::-;8188:20;8236:8;;;7865:387::o;34980:174::-;35055:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35055:29:0;-1:-1:-1;;;;;35055:29:0;;;;;;;;:24;;35109:23;35055:24;35109:14;:23::i;:::-;-1:-1:-1;;;;;35100:46:0;;;;;;;;;;;34980:174;;:::o;31292:348::-;31385:4;31087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31087:16:0;31402:73;;;;-1:-1:-1;;;31402:73:0;;9663:2:1;31402:73:0;;;9645:21:1;9702:2;9682:18;;;9675:30;9741:34;9721:18;;;9714:62;-1:-1:-1;;;9792:18:1;;;9785:42;9844:19;;31402:73:0;9461:408:1;31402:73:0;31486:13;31502:23;31517:7;31502:14;:23::i;:::-;31486:39;;31555:5;-1:-1:-1;;;;;31544:16:0;:7;-1:-1:-1;;;;;31544:16:0;;:51;;;;31588:7;-1:-1:-1;;;;;31564:31:0;:20;31576:7;31564:11;:20::i;:::-;-1:-1:-1;;;;;31564:31:0;;31544:51;:87;;;-1:-1:-1;;;;;;28384:25:0;;;28360:4;28384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31599:32;31536:96;31292:348;-1:-1:-1;;;;31292:348:0:o;34284:578::-;34443:4;-1:-1:-1;;;;;34416:31:0;:23;34431:7;34416:14;:23::i;:::-;-1:-1:-1;;;;;34416:31:0;;34408:85;;;;-1:-1:-1;;;34408:85:0;;12457:2:1;34408:85:0;;;12439:21:1;12496:2;12476:18;;;12469:30;12535:34;12515:18;;;12508:62;-1:-1:-1;;;12586:18:1;;;12579:39;12635:19;;34408:85:0;12255:405:1;34408:85:0;-1:-1:-1;;;;;34512:16:0;;34504:65;;;;-1:-1:-1;;;34504:65:0;;8904:2:1;34504:65:0;;;8886:21:1;8943:2;8923:18;;;8916:30;8982:34;8962:18;;;8955:62;-1:-1:-1;;;9033:18:1;;;9026:34;9077:19;;34504:65:0;8702:400:1;34504:65:0;34686:29;34703:1;34707:7;34686:8;:29::i;:::-;-1:-1:-1;;;;;34728:15:0;;;;;;:9;:15;;;;;:20;;34747:1;;34728:15;:20;;34747:1;;34728:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34759:13:0;;;;;;:9;:13;;;;;:18;;34776:1;;34759:13;:18;;34776:1;;34759:18;:::i;:::-;;;;-1:-1:-1;;34788:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34788:21:0;-1:-1:-1;;;;;34788:21:0;;;;;;;;;34827:27;;34788:16;;34827:27;;;;;;;34284:578;;;:::o;6847:191::-;6940:6;;;-1:-1:-1;;;;;6957:17:0;;;-1:-1:-1;;;;;;6957:17:0;;;;;;;6990:40;;6940:6;;;6957:17;6940:6;;6990:40;;6921:16;;6990:40;6910:128;6847:191;:::o;41028:204::-;41108:9;41103:124;41127:11;41123:1;:15;41103:124;;;41154:18;:6;1116:19;;1134:1;1116:19;;;1027:127;41154:18;41181:38;41191:9;41202:16;:6;997:14;;905:114;41202:16;41181:9;:38::i;:::-;41140:3;;;;:::i;:::-;;;;41103:124;;35296:315;35451:8;-1:-1:-1;;;;;35442:17:0;:5;-1:-1:-1;;;;;35442:17:0;;;35434:55;;;;-1:-1:-1;;;35434:55:0;;9309:2:1;35434:55:0;;;9291:21:1;9348:2;9328:18;;;9321:30;9387:27;9367:18;;;9360:55;9432:18;;35434:55:0;9107:349:1;35434:55:0;-1:-1:-1;;;;;35500:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35500:46:0;;;;;;;;;;35562:41;;6894::1;;;35562::0;;6867:18:1;35562:41:0;;;;;;;35296:315;;;:::o;30370:::-;30527:28;30537:4;30543:2;30547:7;30527:9;:28::i;:::-;30574:48;30597:4;30603:2;30607:7;30616:5;30574:22;:48::i;:::-;30566:111;;;;-1:-1:-1;;;30566:111:0;;;;;;;:::i;41238:104::-;41298:13;41327:9;41320:16;;;;;:::i;1863:723::-;1919:13;2140:10;2136:53;;-1:-1:-1;;2167:10:0;;;;;;;;;;;;-1:-1:-1;;;2167:10:0;;;;;1863:723::o;2136:53::-;2214:5;2199:12;2255:78;2262:9;;2255:78;;2288:8;;;;:::i;:::-;;-1:-1:-1;2311:10:0;;-1:-1:-1;2319:2:0;2311:10;;:::i;:::-;;;2255:78;;;2343:19;2375:6;2365:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2365:17:0;;2343:39;;2393:154;2400:10;;2393:154;;2427:11;2437:1;2427:11;;:::i;:::-;;-1:-1:-1;2496:10:0;2504:2;2496:5;:10;:::i;:::-;2483:24;;:2;:24;:::i;:::-;2470:39;;2453:6;2460;2453:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2453:56:0;;;;;;;;-1:-1:-1;2524:11:0;2533:2;2524:11;;:::i;:::-;;;2393:154;;31982:110;32058:26;32068:2;32072:7;32058:26;;;;;;;;;;;;:9;:26::i;36176:799::-;36331:4;-1:-1:-1;;;;;36352:13:0;;8188:20;8236:8;36348:620;;36388:72;;-1:-1:-1;;;36388:72:0;;-1:-1:-1;;;;;36388:36:0;;;;;:72;;4381:10;;36439:4;;36445:7;;36454:5;;36388:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36388:72:0;;;;;;;;-1:-1:-1;;36388:72:0;;;;;;;;;;;;:::i;:::-;;;36384:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36630:13:0;;36626:272;;36673:60;;-1:-1:-1;;;36673:60:0;;;;;;;:::i;36626:272::-;36848:6;36842:13;36833:6;36829:2;36825:15;36818:38;36384:529;-1:-1:-1;;;;;;36511:51:0;-1:-1:-1;;;36511:51:0;;-1:-1:-1;36504:58:0;;36348:620;-1:-1:-1;36952:4:0;36176:799;;;;;;:::o;32319:321::-;32449:18;32455:2;32459:7;32449:5;:18::i;:::-;32500:54;32531:1;32535:2;32539:7;32548:5;32500:22;:54::i;:::-;32478:154;;;;-1:-1:-1;;;32478:154:0;;;;;;;:::i;32976:382::-;-1:-1:-1;;;;;33056:16:0;;33048:61;;;;-1:-1:-1;;;33048:61:0;;11322:2:1;33048:61:0;;;11304:21:1;;;11341:18;;;11334:30;11400:34;11380:18;;;11373:62;11452:18;;33048:61:0;11120:356:1;33048:61:0;31063:4;31087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31087:16:0;:30;33120:58;;;;-1:-1:-1;;;33120:58:0;;8198:2:1;33120:58:0;;;8180:21:1;8237:2;8217:18;;;8210:30;8276;8256:18;;;8249:58;8324:18;;33120:58:0;7996:352:1;33120:58:0;-1:-1:-1;;;;;33249:13:0;;;;;;:9;:13;;;;;:18;;33266:1;;33249:13;:18;;33266:1;;33249:18;:::i;:::-;;;;-1:-1:-1;;33278:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33278:21:0;-1:-1:-1;;;;;33278:21:0;;;;;;;;33317:33;;33278:16;;;33317:33;;33278:16;;33317:33;32976:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:254::-;4111:6;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4224:9;4211:23;4201:33;;4253:38;4287:2;4276:9;4272:18;4253:38;:::i;4302:257::-;4343:3;4381:5;4375:12;4408:6;4403:3;4396:19;4424:63;4480:6;4473:4;4468:3;4464:14;4457:4;4450:5;4446:16;4424:63;:::i;:::-;4541:2;4520:15;-1:-1:-1;;4516:29:1;4507:39;;;;4548:4;4503:50;;4302:257;-1:-1:-1;;4302:257:1:o;4564:637::-;4844:3;4882:6;4876:13;4898:53;4944:6;4939:3;4932:4;4924:6;4920:17;4898:53;:::i;:::-;5014:13;;4973:16;;;;5036:57;5014:13;4973:16;5070:4;5058:17;;5036:57;:::i;:::-;-1:-1:-1;;;5115:20:1;;5144:22;;;5193:1;5182:13;;4564:637;-1:-1:-1;;;;4564:637:1:o;5624:488::-;-1:-1:-1;;;;;5893:15:1;;;5875:34;;5945:15;;5940:2;5925:18;;5918:43;5992:2;5977:18;;5970:34;;;6040:3;6035:2;6020:18;;6013:31;;;5818:4;;6061:45;;6086:19;;6078:6;6061:45;:::i;:::-;6053:53;5624:488;-1:-1:-1;;;;;;5624:488:1:o;6117:632::-;6288:2;6340:21;;;6410:13;;6313:18;;;6432:22;;;6259:4;;6288:2;6511:15;;;;6485:2;6470:18;;;6259:4;6554:169;6568:6;6565:1;6562:13;6554:169;;;6629:13;;6617:26;;6698:15;;;;6663:12;;;;6590:1;6583:9;6554:169;;;-1:-1:-1;6740:3:1;;6117:632;-1:-1:-1;;;;;;6117:632:1:o;6946:219::-;7095:2;7084:9;7077:21;7058:4;7115:44;7155:2;7144:9;7140:18;7132:6;7115:44;:::i;7170:414::-;7372:2;7354:21;;;7411:2;7391:18;;;7384:30;7450:34;7445:2;7430:18;;7423:62;-1:-1:-1;;;7516:2:1;7501:18;;7494:48;7574:3;7559:19;;7170:414::o;11894:356::-;12096:2;12078:21;;;12115:18;;;12108:30;12174:34;12169:2;12154:18;;12147:62;12241:2;12226:18;;11894:356::o;13832:413::-;14034:2;14016:21;;;14073:2;14053:18;;;14046:30;14112:34;14107:2;14092:18;;14085:62;-1:-1:-1;;;14178:2:1;14163:18;;14156:47;14235:3;14220:19;;13832:413::o;14780:128::-;14820:3;14851:1;14847:6;14844:1;14841:13;14838:39;;;14857:18;;:::i;:::-;-1:-1:-1;14893:9:1;;14780:128::o;14913:120::-;14953:1;14979;14969:35;;14984:18;;:::i;:::-;-1:-1:-1;15018:9:1;;14913:120::o;15038:168::-;15078:7;15144:1;15140;15136:6;15132:14;15129:1;15126:21;15121:1;15114:9;15107:17;15103:45;15100:71;;;15151:18;;:::i;:::-;-1:-1:-1;15191:9:1;;15038:168::o;15211:125::-;15251:4;15279:1;15276;15273:8;15270:34;;;15284:18;;:::i;:::-;-1:-1:-1;15321:9:1;;15211:125::o;15341:258::-;15413:1;15423:113;15437:6;15434:1;15431:13;15423:113;;;15513:11;;;15507:18;15494:11;;;15487:39;15459:2;15452:10;15423:113;;;15554:6;15551:1;15548:13;15545:48;;;-1:-1:-1;;15589:1:1;15571:16;;15564:27;15341:258::o;15604:380::-;15683:1;15679:12;;;;15726;;;15747:61;;15801:4;15793:6;15789:17;15779:27;;15747:61;15854:2;15846:6;15843:14;15823:18;15820:38;15817:161;;;15900:10;15895:3;15891:20;15888:1;15881:31;15935:4;15932:1;15925:15;15963:4;15960:1;15953:15;15817:161;;15604:380;;;:::o;15989:135::-;16028:3;-1:-1:-1;;16049:17:1;;16046:43;;;16069:18;;:::i;:::-;-1:-1:-1;16116:1:1;16105:13;;15989:135::o;16129:112::-;16161:1;16187;16177:35;;16192:18;;:::i;:::-;-1:-1:-1;16226:9:1;;16129:112::o;16246:127::-;16307:10;16302:3;16298:20;16295:1;16288:31;16338:4;16335:1;16328:15;16362:4;16359:1;16352:15;16378:127;16439:10;16434:3;16430:20;16427:1;16420:31;16470:4;16467:1;16460:15;16494:4;16491:1;16484:15;16510:127;16571:10;16566:3;16562:20;16559:1;16552:31;16602:4;16599:1;16592:15;16626:4;16623:1;16616:15;16642:127;16703:10;16698:3;16694:20;16691:1;16684:31;16734:4;16731:1;16724:15;16758:4;16755:1;16748:15;16774:131;-1:-1:-1;;;;;;16848:32:1;;16838:43;;16828:71;;16895:1;16892;16885:12

Swarm Source

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