ETH Price: $3,438.91 (+1.39%)
Gas: 4 Gwei

Token

CHADGOD (CHADGOD)
 

Overview

Max Total Supply

184 CHADGOD

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zoomercell.eth
Balance
1 CHADGOD
0x192a2ff96d045bb859b81b4343e0d80583f768b2
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:
CHADGOD

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// https://www.zeus10000.com/

// File: contracts/IMintableNft.sol

interface IMintableNft{
    /// @dev mint item (only for factories)
    /// @param toAddress receiving address
    function mint(
        address toAddress
    ) external;
}
// 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/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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/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/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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// 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: contracts/CHADGOD.sol

// https://www.zeus10000.com/




contract CHADGOD is Ownable, ERC721Enumerable, IMintableNft {
    uint256 public constant maxMintCount = 1000;
    uint256 _mintedCount;
    mapping(address => bool) public factories; // factories, that can mint tokens
    string public baseURI;
    string public secretMetaURI =
        "ipfs://QmTfK5mZ9xTvGDDZ4A58piutXTo2jxnxfrgmQjQdSrrdQV";
    bool public mintEnable;

    constructor() ERC721("CHADGOD", "CHADGOD") {}

    function setFactory(address newFactory, bool isFactory) external onlyOwner {
        factories[newFactory] = isFactory;
    }

    /// @dev mint item (only for factories)
    /// @param toAddress receiving address
    function mint(address toAddress) external override {
        require(factories[msg.sender], "only for factories");
        require(_mintedCount < maxMintCount, "all tokens are minted");
        require(mintEnable, "mint is not enabled");
        _mint(toAddress, ++_mintedCount);
    }

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }

    function setSecretMetaURI(string calldata newSecretMetaURI)
        external
        onlyOwner
    {
        secretMetaURI = newSecretMetaURI;
    }

    function setMintEnable(bool newMintEnable) external onlyOwner {
        mintEnable = newMintEnable;
    }

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

    function mintedCount() external view returns (uint256) {
        return _mintedCount;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (bytes(baseURI).length == 0) return secretMetaURI;
        else return super.tokenURI(tokenId);
    }
}

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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"factories","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toAddress","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"secretMetaURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFactory","type":"address"},{"internalType":"bool","name":"isFactory","type":"bool"}],"name":"setFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newMintEnable","type":"bool"}],"name":"setMintEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newSecretMetaURI","type":"string"}],"name":"setSecretMetaURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

60e060405260356080818152906200215260a03980516200002991600e916020909101906200011a565b503480156200003757600080fd5b506040518060400160405280600781526020016610d2105111d3d160ca1b8152506040518060400160405280600781526020016610d2105111d3d160ca1b815250620000926200008c620000c660201b60201c565b620000ca565b8151620000a79060019060208501906200011a565b508051620000bd9060029060208401906200011a565b505050620001fd565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200012890620001c0565b90600052602060002090601f0160209004810192826200014c576000855562000197565b82601f106200016757805160ff191683800117855562000197565b8280016001018555821562000197579182015b82811115620001975782518255916020019190600101906200017a565b50620001a5929150620001a9565b5090565b5b80821115620001a55760008155600101620001aa565b600181811c90821680620001d557607f821691505b60208210811415620001f757634e487b7160e01b600052602260045260246000fd5b50919050565b611f45806200020d6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80636c0360eb11610104578063a22cb465116100a2578063cf721b1511610071578063cf721b15146103bf578063e985e9c5146103c7578063f2fde38b14610403578063fab526891461041657600080fd5b8063a22cb46514610379578063b88d4fde1461038c578063c1e1ce291461039f578063c87b56dd146103ac57600080fd5b8063715018a6116100de578063715018a6146103455780638da5cb5b1461034d57806395d89b411461035e578063981fb0471461036657600080fd5b80636c0360eb1461031757806370a082311461031f57806371013c101461033257600080fd5b806323b872dd1161017c5780634f6ccce71161014b5780634f6ccce7146102cb57806355f804b3146102de5780636352211e146102f15780636a6278421461030457600080fd5b806323b872dd146102895780632f745c591461029c57806332c60eef146102af57806342842e0e146102b857600080fd5b8063081812fc116101b8578063081812fc14610231578063095ea7b31461025c57806318160ddd1461026f5780631b5714b71461028157600080fd5b806301912133146101df57806301ffc9a7146101f457806306fdde031461021c575b600080fd5b6101f26101ed366004611ba4565b610439565b005b610207610202366004611b6a565b61047d565b60405190151581526020015b60405180910390f35b6102246104a8565b6040516102139190611cc7565b61024461023f366004611c16565b61053a565b6040516001600160a01b039091168152602001610213565b6101f261026a366004611b25565b6105cf565b6009545b604051908152602001610213565b6102246106e0565b6101f26102973660046119e3565b61076e565b6102736102aa366004611b25565b61079f565b6102736103e881565b6101f26102c63660046119e3565b610835565b6102736102d9366004611c16565b610850565b6101f26102ec366004611ba4565b6108e3565b6102446102ff366004611c16565b610919565b6101f2610312366004611995565b610990565b610224610a97565b61027361032d366004611995565b610aa4565b6101f2610340366004611afb565b610b2b565b6101f2610b80565b6000546001600160a01b0316610244565b610224610bb6565b6101f2610374366004611b4f565b610bc5565b6101f2610387366004611afb565b610c02565b6101f261039a366004611a1f565b610c11565b600f546102079060ff1681565b6102246103ba366004611c16565b610c49565b600b54610273565b6102076103d53660046119b0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101f2610411366004611995565b610d00565b610207610424366004611995565b600c6020526000908152604090205460ff1681565b6000546001600160a01b0316331461046c5760405162461bcd60e51b815260040161046390611d2c565b60405180910390fd5b610478600e83836118d5565b505050565b60006001600160e01b0319821663780e9d6360e01b14806104a257506104a282610d98565b92915050565b6060600180546104b790611e21565b80601f01602080910402602001604051908101604052809291908181526020018280546104e390611e21565b80156105305780601f1061050557610100808354040283529160200191610530565b820191906000526020600020905b81548152906001019060200180831161051357829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166105b35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610463565b506000908152600560205260409020546001600160a01b031690565b60006105da82610919565b9050806001600160a01b0316836001600160a01b031614156106485760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610463565b336001600160a01b0382161480610664575061066481336103d5565b6106d65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610463565b6104788383610de8565b600e80546106ed90611e21565b80601f016020809104026020016040519081016040528092919081815260200182805461071990611e21565b80156107665780601f1061073b57610100808354040283529160200191610766565b820191906000526020600020905b81548152906001019060200180831161074957829003601f168201915b505050505081565b6107783382610e56565b6107945760405162461bcd60e51b815260040161046390611d61565b610478838383610f4d565b60006107aa83610aa4565b821061080c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610463565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b61047883838360405180602001604052806000815250610c11565b600061085b60095490565b82106108be5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610463565b600982815481106108d1576108d1611ecd565b90600052602060002001549050919050565b6000546001600160a01b0316331461090d5760405162461bcd60e51b815260040161046390611d2c565b610478600d83836118d5565b6000818152600360205260408120546001600160a01b0316806104a25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610463565b336000908152600c602052604090205460ff166109e45760405162461bcd60e51b81526020600482015260126024820152716f6e6c7920666f7220666163746f7269657360701b6044820152606401610463565b6103e8600b5410610a2f5760405162461bcd60e51b8152602060048201526015602482015274185b1b081d1bdad95b9cc8185c99481b5a5b9d1959605a1b6044820152606401610463565b600f5460ff16610a775760405162461bcd60e51b81526020600482015260136024820152721b5a5b9d081a5cc81b9bdd08195b98589b1959606a1b6044820152606401610463565b610a9481600b60008154610a8a90611e5c565b91829055506110f8565b50565b600d80546106ed90611e21565b60006001600160a01b038216610b0f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610463565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610b555760405162461bcd60e51b815260040161046390611d2c565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610baa5760405162461bcd60e51b815260040161046390611d2c565b610bb46000611246565b565b6060600280546104b790611e21565b6000546001600160a01b03163314610bef5760405162461bcd60e51b815260040161046390611d2c565b600f805460ff1916911515919091179055565b610c0d338383611296565b5050565b610c1b3383610e56565b610c375760405162461bcd60e51b815260040161046390611d61565b610c4384848484611365565b50505050565b6060600d8054610c5890611e21565b15159050610cf257600e8054610c6d90611e21565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9990611e21565b8015610ce65780601f10610cbb57610100808354040283529160200191610ce6565b820191906000526020600020905b815481529060010190602001808311610cc957829003601f168201915b50505050509050919050565b6104a282611398565b919050565b6000546001600160a01b03163314610d2a5760405162461bcd60e51b815260040161046390611d2c565b6001600160a01b038116610d8f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610463565b610a9481611246565b60006001600160e01b031982166380ac58cd60e01b1480610dc957506001600160e01b03198216635b5e139f60e01b145b806104a257506301ffc9a760e01b6001600160e01b03198316146104a2565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e1d82610919565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316610ecf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610463565b6000610eda83610919565b9050806001600160a01b0316846001600160a01b03161480610f155750836001600160a01b0316610f0a8461053a565b6001600160a01b0316145b80610f4557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f6082610919565b6001600160a01b031614610fc85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610463565b6001600160a01b03821661102a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610463565b611035838383611473565b611040600082610de8565b6001600160a01b0383166000908152600460205260408120805460019290611069908490611dde565b90915550506001600160a01b0382166000908152600460205260408120805460019290611097908490611db2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821661114e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610463565b6000818152600360205260409020546001600160a01b0316156111b35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610463565b6111bf60008383611473565b6001600160a01b03821660009081526004602052604081208054600192906111e8908490611db2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156112f85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610463565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611370848484610f4d565b61137c8484848461152b565b610c435760405162461bcd60e51b815260040161046390611cda565b6000818152600360205260409020546060906001600160a01b03166114175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610463565b6000611421611638565b90506000815111611441576040518060200160405280600081525061146c565b8061144b84611647565b60405160200161145c929190611c5b565b6040516020818303038152906040525b9392505050565b6001600160a01b0383166114ce576114c981600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6114f1565b816001600160a01b0316836001600160a01b0316146114f1576114f18382611745565b6001600160a01b03821661150857610478816117e2565b826001600160a01b0316826001600160a01b031614610478576104788282611891565b60006001600160a01b0384163b1561162d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061156f903390899088908890600401611c8a565b602060405180830381600087803b15801561158957600080fd5b505af19250505080156115b9575060408051601f3d908101601f191682019092526115b691810190611b87565b60015b611613573d8080156115e7576040519150601f19603f3d011682016040523d82523d6000602084013e6115ec565b606091505b50805161160b5760405162461bcd60e51b815260040161046390611cda565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f45565b506001949350505050565b6060600d80546104b790611e21565b60608161166b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611695578061167f81611e5c565b915061168e9050600a83611dca565b915061166f565b60008167ffffffffffffffff8111156116b0576116b0611ee3565b6040519080825280601f01601f1916602001820160405280156116da576020820181803683370190505b5090505b8415610f45576116ef600183611dde565b91506116fc600a86611e77565b611707906030611db2565b60f81b81838151811061171c5761171c611ecd565b60200101906001600160f81b031916908160001a90535061173e600a86611dca565b94506116de565b6000600161175284610aa4565b61175c9190611dde565b6000838152600860205260409020549091508082146117af576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906117f490600190611dde565b6000838152600a60205260408120546009805493945090928490811061181c5761181c611ecd565b90600052602060002001549050806009838154811061183d5761183d611ecd565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061187557611875611eb7565b6001900381819060005260206000200160009055905550505050565b600061189c83610aa4565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546118e190611e21565b90600052602060002090601f0160209004810192826119035760008555611949565b82601f1061191c5782800160ff19823516178555611949565b82800160010185558215611949579182015b8281111561194957823582559160200191906001019061192e565b50611955929150611959565b5090565b5b80821115611955576000815560010161195a565b80356001600160a01b0381168114610cfb57600080fd5b80358015158114610cfb57600080fd5b6000602082840312156119a757600080fd5b61146c8261196e565b600080604083850312156119c357600080fd5b6119cc8361196e565b91506119da6020840161196e565b90509250929050565b6000806000606084860312156119f857600080fd5b611a018461196e565b9250611a0f6020850161196e565b9150604084013590509250925092565b60008060008060808587031215611a3557600080fd5b611a3e8561196e565b9350611a4c6020860161196e565b925060408501359150606085013567ffffffffffffffff80821115611a7057600080fd5b818701915087601f830112611a8457600080fd5b813581811115611a9657611a96611ee3565b604051601f8201601f19908116603f01168101908382118183101715611abe57611abe611ee3565b816040528281528a6020848701011115611ad757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611b0e57600080fd5b611b178361196e565b91506119da60208401611985565b60008060408385031215611b3857600080fd5b611b418361196e565b946020939093013593505050565b600060208284031215611b6157600080fd5b61146c82611985565b600060208284031215611b7c57600080fd5b813561146c81611ef9565b600060208284031215611b9957600080fd5b815161146c81611ef9565b60008060208385031215611bb757600080fd5b823567ffffffffffffffff80821115611bcf57600080fd5b818501915085601f830112611be357600080fd5b813581811115611bf257600080fd5b866020828501011115611c0457600080fd5b60209290920196919550909350505050565b600060208284031215611c2857600080fd5b5035919050565b60008151808452611c47816020860160208601611df5565b601f01601f19169290920160200192915050565b60008351611c6d818460208801611df5565b835190830190611c81818360208801611df5565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cbd90830184611c2f565b9695505050505050565b60208152600061146c6020830184611c2f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611dc557611dc5611e8b565b500190565b600082611dd957611dd9611ea1565b500490565b600082821015611df057611df0611e8b565b500390565b60005b83811015611e10578181015183820152602001611df8565b83811115610c435750506000910152565b600181811c90821680611e3557607f821691505b60208210811415611e5657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e7057611e70611e8b565b5060010190565b600082611e8657611e86611ea1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a9457600080fdfea2646970667358221220ccb457fcd4296617f469e1b752fb9094d5830cd4f29c4c24c9a867b9cd3eed6b64736f6c63430008070033697066733a2f2f516d54664b356d5a397854764744445a344135387069757458546f326a786e786672676d516a5164537272645156

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80636c0360eb11610104578063a22cb465116100a2578063cf721b1511610071578063cf721b15146103bf578063e985e9c5146103c7578063f2fde38b14610403578063fab526891461041657600080fd5b8063a22cb46514610379578063b88d4fde1461038c578063c1e1ce291461039f578063c87b56dd146103ac57600080fd5b8063715018a6116100de578063715018a6146103455780638da5cb5b1461034d57806395d89b411461035e578063981fb0471461036657600080fd5b80636c0360eb1461031757806370a082311461031f57806371013c101461033257600080fd5b806323b872dd1161017c5780634f6ccce71161014b5780634f6ccce7146102cb57806355f804b3146102de5780636352211e146102f15780636a6278421461030457600080fd5b806323b872dd146102895780632f745c591461029c57806332c60eef146102af57806342842e0e146102b857600080fd5b8063081812fc116101b8578063081812fc14610231578063095ea7b31461025c57806318160ddd1461026f5780631b5714b71461028157600080fd5b806301912133146101df57806301ffc9a7146101f457806306fdde031461021c575b600080fd5b6101f26101ed366004611ba4565b610439565b005b610207610202366004611b6a565b61047d565b60405190151581526020015b60405180910390f35b6102246104a8565b6040516102139190611cc7565b61024461023f366004611c16565b61053a565b6040516001600160a01b039091168152602001610213565b6101f261026a366004611b25565b6105cf565b6009545b604051908152602001610213565b6102246106e0565b6101f26102973660046119e3565b61076e565b6102736102aa366004611b25565b61079f565b6102736103e881565b6101f26102c63660046119e3565b610835565b6102736102d9366004611c16565b610850565b6101f26102ec366004611ba4565b6108e3565b6102446102ff366004611c16565b610919565b6101f2610312366004611995565b610990565b610224610a97565b61027361032d366004611995565b610aa4565b6101f2610340366004611afb565b610b2b565b6101f2610b80565b6000546001600160a01b0316610244565b610224610bb6565b6101f2610374366004611b4f565b610bc5565b6101f2610387366004611afb565b610c02565b6101f261039a366004611a1f565b610c11565b600f546102079060ff1681565b6102246103ba366004611c16565b610c49565b600b54610273565b6102076103d53660046119b0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101f2610411366004611995565b610d00565b610207610424366004611995565b600c6020526000908152604090205460ff1681565b6000546001600160a01b0316331461046c5760405162461bcd60e51b815260040161046390611d2c565b60405180910390fd5b610478600e83836118d5565b505050565b60006001600160e01b0319821663780e9d6360e01b14806104a257506104a282610d98565b92915050565b6060600180546104b790611e21565b80601f01602080910402602001604051908101604052809291908181526020018280546104e390611e21565b80156105305780601f1061050557610100808354040283529160200191610530565b820191906000526020600020905b81548152906001019060200180831161051357829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166105b35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610463565b506000908152600560205260409020546001600160a01b031690565b60006105da82610919565b9050806001600160a01b0316836001600160a01b031614156106485760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610463565b336001600160a01b0382161480610664575061066481336103d5565b6106d65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610463565b6104788383610de8565b600e80546106ed90611e21565b80601f016020809104026020016040519081016040528092919081815260200182805461071990611e21565b80156107665780601f1061073b57610100808354040283529160200191610766565b820191906000526020600020905b81548152906001019060200180831161074957829003601f168201915b505050505081565b6107783382610e56565b6107945760405162461bcd60e51b815260040161046390611d61565b610478838383610f4d565b60006107aa83610aa4565b821061080c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610463565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b61047883838360405180602001604052806000815250610c11565b600061085b60095490565b82106108be5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610463565b600982815481106108d1576108d1611ecd565b90600052602060002001549050919050565b6000546001600160a01b0316331461090d5760405162461bcd60e51b815260040161046390611d2c565b610478600d83836118d5565b6000818152600360205260408120546001600160a01b0316806104a25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610463565b336000908152600c602052604090205460ff166109e45760405162461bcd60e51b81526020600482015260126024820152716f6e6c7920666f7220666163746f7269657360701b6044820152606401610463565b6103e8600b5410610a2f5760405162461bcd60e51b8152602060048201526015602482015274185b1b081d1bdad95b9cc8185c99481b5a5b9d1959605a1b6044820152606401610463565b600f5460ff16610a775760405162461bcd60e51b81526020600482015260136024820152721b5a5b9d081a5cc81b9bdd08195b98589b1959606a1b6044820152606401610463565b610a9481600b60008154610a8a90611e5c565b91829055506110f8565b50565b600d80546106ed90611e21565b60006001600160a01b038216610b0f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610463565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610b555760405162461bcd60e51b815260040161046390611d2c565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610baa5760405162461bcd60e51b815260040161046390611d2c565b610bb46000611246565b565b6060600280546104b790611e21565b6000546001600160a01b03163314610bef5760405162461bcd60e51b815260040161046390611d2c565b600f805460ff1916911515919091179055565b610c0d338383611296565b5050565b610c1b3383610e56565b610c375760405162461bcd60e51b815260040161046390611d61565b610c4384848484611365565b50505050565b6060600d8054610c5890611e21565b15159050610cf257600e8054610c6d90611e21565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9990611e21565b8015610ce65780601f10610cbb57610100808354040283529160200191610ce6565b820191906000526020600020905b815481529060010190602001808311610cc957829003601f168201915b50505050509050919050565b6104a282611398565b919050565b6000546001600160a01b03163314610d2a5760405162461bcd60e51b815260040161046390611d2c565b6001600160a01b038116610d8f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610463565b610a9481611246565b60006001600160e01b031982166380ac58cd60e01b1480610dc957506001600160e01b03198216635b5e139f60e01b145b806104a257506301ffc9a760e01b6001600160e01b03198316146104a2565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e1d82610919565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316610ecf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610463565b6000610eda83610919565b9050806001600160a01b0316846001600160a01b03161480610f155750836001600160a01b0316610f0a8461053a565b6001600160a01b0316145b80610f4557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f6082610919565b6001600160a01b031614610fc85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610463565b6001600160a01b03821661102a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610463565b611035838383611473565b611040600082610de8565b6001600160a01b0383166000908152600460205260408120805460019290611069908490611dde565b90915550506001600160a01b0382166000908152600460205260408120805460019290611097908490611db2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821661114e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610463565b6000818152600360205260409020546001600160a01b0316156111b35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610463565b6111bf60008383611473565b6001600160a01b03821660009081526004602052604081208054600192906111e8908490611db2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156112f85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610463565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611370848484610f4d565b61137c8484848461152b565b610c435760405162461bcd60e51b815260040161046390611cda565b6000818152600360205260409020546060906001600160a01b03166114175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610463565b6000611421611638565b90506000815111611441576040518060200160405280600081525061146c565b8061144b84611647565b60405160200161145c929190611c5b565b6040516020818303038152906040525b9392505050565b6001600160a01b0383166114ce576114c981600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6114f1565b816001600160a01b0316836001600160a01b0316146114f1576114f18382611745565b6001600160a01b03821661150857610478816117e2565b826001600160a01b0316826001600160a01b031614610478576104788282611891565b60006001600160a01b0384163b1561162d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061156f903390899088908890600401611c8a565b602060405180830381600087803b15801561158957600080fd5b505af19250505080156115b9575060408051601f3d908101601f191682019092526115b691810190611b87565b60015b611613573d8080156115e7576040519150601f19603f3d011682016040523d82523d6000602084013e6115ec565b606091505b50805161160b5760405162461bcd60e51b815260040161046390611cda565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f45565b506001949350505050565b6060600d80546104b790611e21565b60608161166b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611695578061167f81611e5c565b915061168e9050600a83611dca565b915061166f565b60008167ffffffffffffffff8111156116b0576116b0611ee3565b6040519080825280601f01601f1916602001820160405280156116da576020820181803683370190505b5090505b8415610f45576116ef600183611dde565b91506116fc600a86611e77565b611707906030611db2565b60f81b81838151811061171c5761171c611ecd565b60200101906001600160f81b031916908160001a90535061173e600a86611dca565b94506116de565b6000600161175284610aa4565b61175c9190611dde565b6000838152600860205260409020549091508082146117af576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906117f490600190611dde565b6000838152600a60205260408120546009805493945090928490811061181c5761181c611ecd565b90600052602060002001549050806009838154811061183d5761183d611ecd565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061187557611875611eb7565b6001900381819060005260206000200160009055905550505050565b600061189c83610aa4565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546118e190611e21565b90600052602060002090601f0160209004810192826119035760008555611949565b82601f1061191c5782800160ff19823516178555611949565b82800160010185558215611949579182015b8281111561194957823582559160200191906001019061192e565b50611955929150611959565b5090565b5b80821115611955576000815560010161195a565b80356001600160a01b0381168114610cfb57600080fd5b80358015158114610cfb57600080fd5b6000602082840312156119a757600080fd5b61146c8261196e565b600080604083850312156119c357600080fd5b6119cc8361196e565b91506119da6020840161196e565b90509250929050565b6000806000606084860312156119f857600080fd5b611a018461196e565b9250611a0f6020850161196e565b9150604084013590509250925092565b60008060008060808587031215611a3557600080fd5b611a3e8561196e565b9350611a4c6020860161196e565b925060408501359150606085013567ffffffffffffffff80821115611a7057600080fd5b818701915087601f830112611a8457600080fd5b813581811115611a9657611a96611ee3565b604051601f8201601f19908116603f01168101908382118183101715611abe57611abe611ee3565b816040528281528a6020848701011115611ad757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611b0e57600080fd5b611b178361196e565b91506119da60208401611985565b60008060408385031215611b3857600080fd5b611b418361196e565b946020939093013593505050565b600060208284031215611b6157600080fd5b61146c82611985565b600060208284031215611b7c57600080fd5b813561146c81611ef9565b600060208284031215611b9957600080fd5b815161146c81611ef9565b60008060208385031215611bb757600080fd5b823567ffffffffffffffff80821115611bcf57600080fd5b818501915085601f830112611be357600080fd5b813581811115611bf257600080fd5b866020828501011115611c0457600080fd5b60209290920196919550909350505050565b600060208284031215611c2857600080fd5b5035919050565b60008151808452611c47816020860160208601611df5565b601f01601f19169290920160200192915050565b60008351611c6d818460208801611df5565b835190830190611c81818360208801611df5565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cbd90830184611c2f565b9695505050505050565b60208152600061146c6020830184611c2f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611dc557611dc5611e8b565b500190565b600082611dd957611dd9611ea1565b500490565b600082821015611df057611df0611e8b565b500390565b60005b83811015611e10578181015183820152602001611df8565b83811115610c435750506000910152565b600181811c90821680611e3557607f821691505b60208210811415611e5657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e7057611e70611e8b565b5060010190565b600082611e8657611e86611ea1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a9457600080fdfea2646970667358221220ccb457fcd4296617f469e1b752fb9094d5830cd4f29c4c24c9a867b9cd3eed6b64736f6c63430008070033

Deployed Bytecode Sourcemap

44740:1819:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45816:153;;;;;;:::i;:::-;;:::i;:::-;;35989:224;;;;;;:::i;:::-;;:::i;:::-;;;5881:14:1;;5874:22;5856:41;;5844:2;5829:18;35989:224:0;;;;;;;;23483:100;;;:::i;:::-;;;;;;;:::i;25042:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5179:32:1;;;5161:51;;5149:2;5134:18;25042:221:0;5015:203:1;24565:411:0;;;;;;:::i;:::-;;:::i;36629:113::-;36717:10;:17;36629:113;;;14530:25:1;;;14518:2;14503:18;36629:113:0;14384:177:1;44995:94:0;;;:::i;25792:339::-;;;;;;:::i;:::-;;:::i;36297:256::-;;;;;;:::i;:::-;;:::i;44807:43::-;;44846:4;44807:43;;26202:185;;;;;;:::i;:::-;;:::i;36819:233::-;;;;;;:::i;:::-;;:::i;45702:106::-;;;;;;:::i;:::-;;:::i;23177:239::-;;;;;;:::i;:::-;;:::i;45404:290::-;;;;;;:::i;:::-;;:::i;44967:21::-;;;:::i;22907:208::-;;;;;;:::i;:::-;;:::i;45180:127::-;;;;;;:::i;:::-;;:::i;43850:103::-;;;:::i;43199:87::-;43245:7;43272:6;-1:-1:-1;;;;;43272:6:0;43199:87;;23652:104;;;:::i;45977:107::-;;;;;;:::i;:::-;;:::i;25335:155::-;;;;;;:::i;:::-;;:::i;26458:328::-;;;;;;:::i;:::-;;:::i;45096:22::-;;;;;;;;;46301:255;;;;;;:::i;:::-;;:::i;46200:93::-;46273:12;;46200:93;;25561:164;;;;;;:::i;:::-;-1:-1:-1;;;;;25682:25:0;;;25658:4;25682:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25561:164;44108:201;;;;;;:::i;:::-;;:::i;44884:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;45816:153;43245:7;43272:6;-1:-1:-1;;;;;43272:6:0;21012:10;43419:23;43411:68;;;;-1:-1:-1;;;43411:68:0;;;;;;;:::i;:::-;;;;;;;;;45929:32:::1;:13;45945:16:::0;;45929:32:::1;:::i;:::-;;45816:153:::0;;:::o;35989:224::-;36091:4;-1:-1:-1;;;;;;36115:50:0;;-1:-1:-1;;;36115:50:0;;:90;;;36169:36;36193:11;36169:23;:36::i;:::-;36108:97;35989:224;-1:-1:-1;;35989:224:0:o;23483:100::-;23537:13;23570:5;23563:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23483:100;:::o;25042:221::-;25118:7;28385:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28385:16:0;25138:73;;;;-1:-1:-1;;;25138:73:0;;11753:2:1;25138:73:0;;;11735:21:1;11792:2;11772:18;;;11765:30;11831:34;11811:18;;;11804:62;-1:-1:-1;;;11882:18:1;;;11875:42;11934:19;;25138:73:0;11551:408:1;25138:73:0;-1:-1:-1;25231:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25231:24:0;;25042:221::o;24565:411::-;24646:13;24662:23;24677:7;24662:14;:23::i;:::-;24646:39;;24710:5;-1:-1:-1;;;;;24704:11:0;:2;-1:-1:-1;;;;;24704:11:0;;;24696:57;;;;-1:-1:-1;;;24696:57:0;;13353:2:1;24696:57:0;;;13335:21:1;13392:2;13372:18;;;13365:30;13431:34;13411:18;;;13404:62;-1:-1:-1;;;13482:18:1;;;13475:31;13523:19;;24696:57:0;13151:397:1;24696:57:0;21012:10;-1:-1:-1;;;;;24788:21:0;;;;:62;;-1:-1:-1;24813:37:0;24830:5;21012:10;25561:164;:::i;24813:37::-;24766:168;;;;-1:-1:-1;;;24766:168:0;;9799:2:1;24766:168:0;;;9781:21:1;9838:2;9818:18;;;9811:30;9877:34;9857:18;;;9850:62;9948:26;9928:18;;;9921:54;9992:19;;24766:168:0;9597:420:1;24766:168:0;24947:21;24956:2;24960:7;24947:8;:21::i;44995:94::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25792:339::-;25987:41;21012:10;26020:7;25987:18;:41::i;:::-;25979:103;;;;-1:-1:-1;;;25979:103:0;;;;;;;:::i;:::-;26095:28;26105:4;26111:2;26115:7;26095:9;:28::i;36297:256::-;36394:7;36430:23;36447:5;36430:16;:23::i;:::-;36422:5;:31;36414:87;;;;-1:-1:-1;;;36414:87:0;;6334:2:1;36414:87:0;;;6316:21:1;6373:2;6353:18;;;6346:30;6412:34;6392:18;;;6385:62;-1:-1:-1;;;6463:18:1;;;6456:41;6514:19;;36414:87:0;6132:407:1;36414:87:0;-1:-1:-1;;;;;;36519:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36297:256::o;26202:185::-;26340:39;26357:4;26363:2;26367:7;26340:39;;;;;;;;;;;;:16;:39::i;36819:233::-;36894:7;36930:30;36717:10;:17;;36629:113;36930:30;36922:5;:38;36914:95;;;;-1:-1:-1;;;36914:95:0;;14173:2:1;36914:95:0;;;14155:21:1;14212:2;14192:18;;;14185:30;14251:34;14231:18;;;14224:62;-1:-1:-1;;;14302:18:1;;;14295:42;14354:19;;36914:95:0;13971:408:1;36914:95:0;37027:10;37038:5;37027:17;;;;;;;;:::i;:::-;;;;;;;;;37020:24;;36819:233;;;:::o;45702:106::-;43245:7;43272:6;-1:-1:-1;;;;;43272:6:0;21012:10;43419:23;43411:68;;;;-1:-1:-1;;;43411:68:0;;;;;;;:::i;:::-;45780:20:::1;:7;45790:10:::0;;45780:20:::1;:::i;23177:239::-:0;23249:7;23285:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23285:16:0;23320:19;23312:73;;;;-1:-1:-1;;;23312:73:0;;10635:2:1;23312:73:0;;;10617:21:1;10674:2;10654:18;;;10647:30;10713:34;10693:18;;;10686:62;-1:-1:-1;;;10764:18:1;;;10757:39;10813:19;;23312:73:0;10433:405:1;45404:290:0;45484:10;45474:21;;;;:9;:21;;;;;;;;45466:52;;;;-1:-1:-1;;;45466:52:0;;11406:2:1;45466:52:0;;;11388:21:1;11445:2;11425:18;;;11418:30;-1:-1:-1;;;11464:18:1;;;11457:48;11522:18;;45466:52:0;11204:342:1;45466:52:0;44846:4;45537:12;;:27;45529:61;;;;-1:-1:-1;;;45529:61:0;;8688:2:1;45529:61:0;;;8670:21:1;8727:2;8707:18;;;8700:30;-1:-1:-1;;;8746:18:1;;;8739:51;8807:18;;45529:61:0;8486:345:1;45529:61:0;45609:10;;;;45601:42;;;;-1:-1:-1;;;45601:42:0;;9451:2:1;45601:42:0;;;9433:21:1;9490:2;9470:18;;;9463:30;-1:-1:-1;;;9509:18:1;;;9502:49;9568:18;;45601:42:0;9249:343:1;45601:42:0;45654:32;45660:9;45673:12;;45671:14;;;;;:::i;:::-;;;;;-1:-1:-1;45654:5:0;:32::i;:::-;45404:290;:::o;44967:21::-;;;;;;;:::i;22907:208::-;22979:7;-1:-1:-1;;;;;23007:19:0;;22999:74;;;;-1:-1:-1;;;22999:74:0;;10224:2:1;22999:74:0;;;10206:21:1;10263:2;10243:18;;;10236:30;10302:34;10282:18;;;10275:62;-1:-1:-1;;;10353:18:1;;;10346:40;10403:19;;22999:74:0;10022:406:1;22999:74:0;-1:-1:-1;;;;;;23091:16:0;;;;;:9;:16;;;;;;;22907:208::o;45180:127::-;43245:7;43272:6;-1:-1:-1;;;;;43272:6:0;21012:10;43419:23;43411:68;;;;-1:-1:-1;;;43411:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45266:21:0;;;::::1;;::::0;;;:9:::1;:21;::::0;;;;:33;;-1:-1:-1;;45266:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45180:127::o;43850:103::-;43245:7;43272:6;-1:-1:-1;;;;;43272:6:0;21012:10;43419:23;43411:68;;;;-1:-1:-1;;;43411:68:0;;;;;;;:::i;:::-;43915:30:::1;43942:1;43915:18;:30::i;:::-;43850:103::o:0;23652:104::-;23708:13;23741:7;23734:14;;;;;:::i;45977:107::-;43245:7;43272:6;-1:-1:-1;;;;;43272:6:0;21012:10;43419:23;43411:68;;;;-1:-1:-1;;;43411:68:0;;;;;;;:::i;:::-;46050:10:::1;:26:::0;;-1:-1:-1;;46050:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45977:107::o;25335:155::-;25430:52;21012:10;25463:8;25473;25430:18;:52::i;:::-;25335:155;;:::o;26458:328::-;26633:41;21012:10;26666:7;26633:18;:41::i;:::-;26625:103;;;;-1:-1:-1;;;26625:103:0;;;;;;;:::i;:::-;26739:39;26753:4;26759:2;26763:7;26772:5;26739:13;:39::i;:::-;26458:328;;;;:::o;46301:255::-;46419:13;46460:7;46454:21;;;;;:::i;:::-;:26;46450:98;;-1:-1:-1;46450:98:0;;46489:13;46482:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46301:255;;;:::o;46450:98::-;46525:23;46540:7;46525:14;:23::i;46450:98::-;46301:255;;;:::o;44108:201::-;43245:7;43272:6;-1:-1:-1;;;;;43272:6:0;21012:10;43419:23;43411:68;;;;-1:-1:-1;;;43411:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44197:22:0;::::1;44189:73;;;::::0;-1:-1:-1;;;44189:73:0;;7165:2:1;44189:73:0::1;::::0;::::1;7147:21:1::0;7204:2;7184:18;;;7177:30;7243:34;7223:18;;;7216:62;-1:-1:-1;;;7294:18:1;;;7287:36;7340:19;;44189:73:0::1;6963:402:1::0;44189:73:0::1;44273:28;44292:8;44273:18;:28::i;22538:305::-:0;22640:4;-1:-1:-1;;;;;;22677:40:0;;-1:-1:-1;;;22677:40:0;;:105;;-1:-1:-1;;;;;;;22734:48:0;;-1:-1:-1;;;22734:48:0;22677:105;:158;;;-1:-1:-1;;;;;;;;;;13450:40:0;;;22799:36;13341:157;32278:174;32353:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32353:29:0;-1:-1:-1;;;;;32353:29:0;;;;;;;;:24;;32407:23;32353:24;32407:14;:23::i;:::-;-1:-1:-1;;;;;32398:46:0;;;;;;;;;;;32278:174;;:::o;28590:348::-;28683:4;28385:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28385:16:0;28700:73;;;;-1:-1:-1;;;28700:73:0;;9038:2:1;28700:73:0;;;9020:21:1;9077:2;9057:18;;;9050:30;9116:34;9096:18;;;9089:62;-1:-1:-1;;;9167:18:1;;;9160:42;9219:19;;28700:73:0;8836:408:1;28700:73:0;28784:13;28800:23;28815:7;28800:14;:23::i;:::-;28784:39;;28853:5;-1:-1:-1;;;;;28842:16:0;:7;-1:-1:-1;;;;;28842:16:0;;:51;;;;28886:7;-1:-1:-1;;;;;28862:31:0;:20;28874:7;28862:11;:20::i;:::-;-1:-1:-1;;;;;28862:31:0;;28842:51;:87;;;-1:-1:-1;;;;;;25682:25:0;;;25658:4;25682:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28897:32;28834:96;28590:348;-1:-1:-1;;;;28590:348:0:o;31582:578::-;31741:4;-1:-1:-1;;;;;31714:31:0;:23;31729:7;31714:14;:23::i;:::-;-1:-1:-1;;;;;31714:31:0;;31706:85;;;;-1:-1:-1;;;31706:85:0;;12527:2:1;31706:85:0;;;12509:21:1;12566:2;12546:18;;;12539:30;12605:34;12585:18;;;12578:62;-1:-1:-1;;;12656:18:1;;;12649:39;12705:19;;31706:85:0;12325:405:1;31706:85:0;-1:-1:-1;;;;;31810:16:0;;31802:65;;;;-1:-1:-1;;;31802:65:0;;7929:2:1;31802:65:0;;;7911:21:1;7968:2;7948:18;;;7941:30;8007:34;7987:18;;;7980:62;-1:-1:-1;;;8058:18:1;;;8051:34;8102:19;;31802:65:0;7727:400:1;31802:65:0;31880:39;31901:4;31907:2;31911:7;31880:20;:39::i;:::-;31984:29;32001:1;32005:7;31984:8;:29::i;:::-;-1:-1:-1;;;;;32026:15:0;;;;;;:9;:15;;;;;:20;;32045:1;;32026:15;:20;;32045:1;;32026:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32057:13:0;;;;;;:9;:13;;;;;:18;;32074:1;;32057:13;:18;;32074:1;;32057:18;:::i;:::-;;;;-1:-1:-1;;32086:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32086:21:0;-1:-1:-1;;;;;32086:21:0;;;;;;;;;32125:27;;32086:16;;32125:27;;;;;;;31582:578;;;:::o;30274:382::-;-1:-1:-1;;;;;30354:16:0;;30346:61;;;;-1:-1:-1;;;30346:61:0;;11045:2:1;30346:61:0;;;11027:21:1;;;11064:18;;;11057:30;11123:34;11103:18;;;11096:62;11175:18;;30346:61:0;10843:356:1;30346:61:0;28361:4;28385:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28385:16:0;:30;30418:58;;;;-1:-1:-1;;;30418:58:0;;7572:2:1;30418:58:0;;;7554:21:1;7611:2;7591:18;;;7584:30;7650;7630:18;;;7623:58;7698:18;;30418:58:0;7370:352:1;30418:58:0;30489:45;30518:1;30522:2;30526:7;30489:20;:45::i;:::-;-1:-1:-1;;;;;30547:13:0;;;;;;:9;:13;;;;;:18;;30564:1;;30547:13;:18;;30564:1;;30547:18;:::i;:::-;;;;-1:-1:-1;;30576:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30576:21:0;-1:-1:-1;;;;;30576:21:0;;;;;;;;30615:33;;30576:16;;;30615:33;;30576:16;;30615:33;30274:382;;:::o;44469:191::-;44543:16;44562:6;;-1:-1:-1;;;;;44579:17:0;;;-1:-1:-1;;;;;;44579:17:0;;;;;;44612:40;;44562:6;;;;;;;44612:40;;44543:16;44612:40;44532:128;44469:191;:::o;32594:315::-;32749:8;-1:-1:-1;;;;;32740:17:0;:5;-1:-1:-1;;;;;32740:17:0;;;32732:55;;;;-1:-1:-1;;;32732:55:0;;8334:2:1;32732:55:0;;;8316:21:1;8373:2;8353:18;;;8346:30;8412:27;8392:18;;;8385:55;8457:18;;32732:55:0;8132:349:1;32732:55:0;-1:-1:-1;;;;;32798:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;32798:46:0;;;;;;;;;;32860:41;;5856::1;;;32860::0;;5829:18:1;32860:41:0;;;;;;;32594:315;;;:::o;27668:::-;27825:28;27835:4;27841:2;27845:7;27825:9;:28::i;:::-;27872:48;27895:4;27901:2;27905:7;27914:5;27872:22;:48::i;:::-;27864:111;;;;-1:-1:-1;;;27864:111:0;;;;;;;:::i;23827:334::-;28361:4;28385:16;;;:7;:16;;;;;;23900:13;;-1:-1:-1;;;;;28385:16:0;23926:76;;;;-1:-1:-1;;;23926:76:0;;12937:2:1;23926:76:0;;;12919:21:1;12976:2;12956:18;;;12949:30;13015:34;12995:18;;;12988:62;-1:-1:-1;;;13066:18:1;;;13059:45;13121:19;;23926:76:0;12735:411:1;23926:76:0;24015:21;24039:10;:8;:10::i;:::-;24015:34;;24091:1;24073:7;24067:21;:25;:86;;;;;;;;;;;;;;;;;24119:7;24128:18;:7;:16;:18::i;:::-;24102:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24067:86;24060:93;23827:334;-1:-1:-1;;;23827:334:0:o;37665:589::-;-1:-1:-1;;;;;37871:18:0;;37867:187;;37906:40;37938:7;39081:10;:17;;39054:24;;;;:15;:24;;;;;:44;;;39109:24;;;;;;;;;;;;38977:164;37906:40;37867:187;;;37976:2;-1:-1:-1;;;;;37968:10:0;:4;-1:-1:-1;;;;;37968:10:0;;37964:90;;37995:47;38028:4;38034:7;37995:32;:47::i;:::-;-1:-1:-1;;;;;38068:16:0;;38064:183;;38101:45;38138:7;38101:36;:45::i;38064:183::-;38174:4;-1:-1:-1;;;;;38168:10:0;:2;-1:-1:-1;;;;;38168:10:0;;38164:83;;38195:40;38223:2;38227:7;38195:27;:40::i;33474:799::-;33629:4;-1:-1:-1;;;;;33650:13:0;;3520:20;3568:8;33646:620;;33686:72;;-1:-1:-1;;;33686:72:0;;-1:-1:-1;;;;;33686:36:0;;;;;:72;;21012:10;;33737:4;;33743:7;;33752:5;;33686:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33686:72:0;;;;;;;;-1:-1:-1;;33686:72:0;;;;;;;;;;;;:::i;:::-;;;33682:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33928:13:0;;33924:272;;33971:60;;-1:-1:-1;;;33971:60:0;;;;;;;:::i;33924:272::-;34146:6;34140:13;34131:6;34127:2;34123:15;34116:38;33682:529;-1:-1:-1;;;;;;33809:51:0;-1:-1:-1;;;33809:51:0;;-1:-1:-1;33802:58:0;;33646:620;-1:-1:-1;34250:4:0;33474:799;;;;;;:::o;46092:100::-;46144:13;46177:7;46170:14;;;;;:::i;618:723::-;674:13;895:10;891:53;;-1:-1:-1;;922:10:0;;;;;;;;;;;;-1:-1:-1;;;922:10:0;;;;;618:723::o;891:53::-;969:5;954:12;1010:78;1017:9;;1010:78;;1043:8;;;;:::i;:::-;;-1:-1:-1;1066:10:0;;-1:-1:-1;1074:2:0;1066:10;;:::i;:::-;;;1010:78;;;1098:19;1130:6;1120:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1120:17:0;;1098:39;;1148:154;1155:10;;1148:154;;1182:11;1192:1;1182:11;;:::i;:::-;;-1:-1:-1;1251:10:0;1259:2;1251:5;:10;:::i;:::-;1238:24;;:2;:24;:::i;:::-;1225:39;;1208:6;1215;1208:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1208:56:0;;;;;;;;-1:-1:-1;1279:11:0;1288:2;1279:11;;:::i;:::-;;;1148:154;;39768:988;40034:22;40084:1;40059:22;40076:4;40059:16;:22::i;:::-;:26;;;;:::i;:::-;40096:18;40117:26;;;:17;:26;;;;;;40034:51;;-1:-1:-1;40250:28:0;;;40246:328;;-1:-1:-1;;;;;40317:18:0;;40295:19;40317:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40368:30;;;;;;:44;;;40485:30;;:17;:30;;;;;:43;;;40246:328;-1:-1:-1;40670:26:0;;;;:17;:26;;;;;;;;40663:33;;;-1:-1:-1;;;;;40714:18:0;;;;;:12;:18;;;;;:34;;;;;;;40707:41;39768:988::o;41051:1079::-;41329:10;:17;41304:22;;41329:21;;41349:1;;41329:21;:::i;:::-;41361:18;41382:24;;;:15;:24;;;;;;41755:10;:26;;41304:46;;-1:-1:-1;41382:24:0;;41304:46;;41755:26;;;;;;:::i;:::-;;;;;;;;;41733:48;;41819:11;41794:10;41805;41794:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41899:28;;;:15;:28;;;;;;;:41;;;42071:24;;;;;42064:31;42106:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41122:1008;;;41051:1079;:::o;38555:221::-;38640:14;38657:20;38674:2;38657:16;:20::i;:::-;-1:-1:-1;;;;;38688:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38733:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38555:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:160;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:180::-;2863:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:52;;;2932:1;2929;2922:12;2884:52;2955:26;2971:9;2955:26;:::i;2992:245::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3158:9;3145:23;3177:30;3201:5;3177:30;:::i;3242:249::-;3311:6;3364:2;3352:9;3343:7;3339:23;3335:32;3332:52;;;3380:1;3377;3370:12;3332:52;3412:9;3406:16;3431:30;3455:5;3431:30;:::i;3496:592::-;3567:6;3575;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3684:9;3671:23;3713:18;3754:2;3746:6;3743:14;3740:34;;;3770:1;3767;3760:12;3740:34;3808:6;3797:9;3793:22;3783:32;;3853:7;3846:4;3842:2;3838:13;3834:27;3824:55;;3875:1;3872;3865:12;3824:55;3915:2;3902:16;3941:2;3933:6;3930:14;3927:34;;;3957:1;3954;3947:12;3927:34;4002:7;3997:2;3988:6;3984:2;3980:15;3976:24;3973:37;3970:57;;;4023:1;4020;4013:12;3970:57;4054:2;4046:11;;;;;4076:6;;-1:-1:-1;3496:592:1;;-1:-1:-1;;;;3496:592:1:o;4093:180::-;4152:6;4205:2;4193:9;4184:7;4180:23;4176:32;4173:52;;;4221:1;4218;4211:12;4173:52;-1:-1:-1;4244:23:1;;4093:180;-1:-1:-1;4093:180:1:o;4278:257::-;4319:3;4357:5;4351:12;4384:6;4379:3;4372:19;4400:63;4456:6;4449:4;4444:3;4440:14;4433:4;4426:5;4422:16;4400:63;:::i;:::-;4517:2;4496:15;-1:-1:-1;;4492:29:1;4483:39;;;;4524:4;4479:50;;4278:257;-1:-1:-1;;4278:257:1:o;4540:470::-;4719:3;4757:6;4751:13;4773:53;4819:6;4814:3;4807:4;4799:6;4795:17;4773:53;:::i;:::-;4889:13;;4848:16;;;;4911:57;4889:13;4848:16;4945:4;4933:17;;4911:57;:::i;:::-;4984:20;;4540:470;-1:-1:-1;;;;4540:470:1:o;5223:488::-;-1:-1:-1;;;;;5492:15:1;;;5474:34;;5544:15;;5539:2;5524:18;;5517:43;5591:2;5576:18;;5569:34;;;5639:3;5634:2;5619:18;;5612:31;;;5417:4;;5660:45;;5685:19;;5677:6;5660:45;:::i;:::-;5652:53;5223:488;-1:-1:-1;;;;;;5223:488:1:o;5908:219::-;6057:2;6046:9;6039:21;6020:4;6077:44;6117:2;6106:9;6102:18;6094:6;6077:44;:::i;6544:414::-;6746:2;6728:21;;;6785:2;6765:18;;;6758:30;6824:34;6819:2;6804:18;;6797:62;-1:-1:-1;;;6890:2:1;6875:18;;6868:48;6948:3;6933:19;;6544:414::o;11964:356::-;12166:2;12148:21;;;12185:18;;;12178:30;12244:34;12239:2;12224:18;;12217:62;12311:2;12296:18;;11964:356::o;13553:413::-;13755:2;13737:21;;;13794:2;13774:18;;;13767:30;13833:34;13828:2;13813:18;;13806:62;-1:-1:-1;;;13899:2:1;13884:18;;13877:47;13956:3;13941:19;;13553:413::o;14566:128::-;14606:3;14637:1;14633:6;14630:1;14627:13;14624:39;;;14643:18;;:::i;:::-;-1:-1:-1;14679:9:1;;14566:128::o;14699:120::-;14739:1;14765;14755:35;;14770:18;;:::i;:::-;-1:-1:-1;14804:9:1;;14699:120::o;14824:125::-;14864:4;14892:1;14889;14886:8;14883:34;;;14897:18;;:::i;:::-;-1:-1:-1;14934:9:1;;14824:125::o;14954:258::-;15026:1;15036:113;15050:6;15047:1;15044:13;15036:113;;;15126:11;;;15120:18;15107:11;;;15100:39;15072:2;15065:10;15036:113;;;15167:6;15164:1;15161:13;15158:48;;;-1:-1:-1;;15202:1:1;15184:16;;15177:27;14954:258::o;15217:380::-;15296:1;15292:12;;;;15339;;;15360:61;;15414:4;15406:6;15402:17;15392:27;;15360:61;15467:2;15459:6;15456:14;15436:18;15433:38;15430:161;;;15513:10;15508:3;15504:20;15501:1;15494:31;15548:4;15545:1;15538:15;15576:4;15573:1;15566:15;15430:161;;15217:380;;;:::o;15602:135::-;15641:3;-1:-1:-1;;15662:17:1;;15659:43;;;15682:18;;:::i;:::-;-1:-1:-1;15729:1:1;15718:13;;15602:135::o;15742:112::-;15774:1;15800;15790:35;;15805:18;;:::i;:::-;-1:-1:-1;15839:9:1;;15742:112::o;15859:127::-;15920:10;15915:3;15911:20;15908:1;15901:31;15951:4;15948:1;15941:15;15975:4;15972:1;15965:15;15991:127;16052:10;16047:3;16043:20;16040:1;16033:31;16083:4;16080:1;16073:15;16107:4;16104:1;16097:15;16123:127;16184:10;16179:3;16175:20;16172:1;16165:31;16215:4;16212:1;16205:15;16239:4;16236:1;16229:15;16255:127;16316:10;16311:3;16307:20;16304:1;16297:31;16347:4;16344:1;16337:15;16371:4;16368:1;16361:15;16387:127;16448:10;16443:3;16439:20;16436:1;16429:31;16479:4;16476:1;16469:15;16503:4;16500:1;16493:15;16519:131;-1:-1:-1;;;;;;16593:32:1;;16583:43;;16573:71;;16640:1;16637;16630:12

Swarm Source

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