ETH Price: $2,286.80 (+0.96%)

Token

It Is Wednesday My Dudes (ItIsWednesdayMyDudes)
 

Overview

Max Total Supply

115 ItIsWednesdayMyDudes

Holders

63

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 ItIsWednesdayMyDudes
0x05a5350a88cbacb3b4110c9b05f36fe1ad2f6309
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:
ItIsWednesdayMyDudes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-01
*/

// Sources flattened with hardhat v2.6.4 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

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/token/ERC721/[email protected]

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/[email protected]

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/token/ERC721/extensions/[email protected]

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/[email protected]

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/utils/[email protected]

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/utils/[email protected]

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/introspection/[email protected]

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/[email protected]

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 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/[email protected]

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/[email protected]

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/[email protected]

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/security/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


// File @openzeppelin/contracts/utils/math/[email protected]

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File contracts/ItIsWednesdayMyDudes.sol

pragma solidity ^0.8.7;



contract ItIsWednesdayMyDudes is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard {
    using SafeMath for uint256;
    using Strings for string;

    string private _baseUriString;
    bool public hasStarted = false;
    uint256 public maxTokens = 10000;
    uint256 public toadsAmount;
    uint256 public reservedTokensLeft = 100;
    uint256 public currentTokenPrice = 0.03333 ether;
    uint256 public constant MAX_MINTING_PER_TRANSACTION = 20;

    constructor(string memory baseUriString) ERC721("It Is Wednesday My Dudes", "ItIsWednesdayMyDudes") {
        setBaseUri(baseUriString);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

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

    function setBaseUri(string memory baseUriString) public onlyOwner {
        _baseUriString = baseUriString;
    }

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

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        string memory _tokenURI = super.tokenURI(tokenId);
        return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : "";
    }

    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    function _mintToad(address to, uint256 count) private {
        uint256 _toadsAmount = toadsAmount;
        for (uint256 i = 0; i < count; i++) {
            _toadsAmount++;
            _safeMint(to, _toadsAmount);
        }
        toadsAmount = _toadsAmount;
    }

    function mintToad(uint256 count) external payable nonReentrant {
        require(hasStarted == true
        && count > 0
        && count <= MAX_MINTING_PER_TRANSACTION
        && totalSupply().add(count) <= maxTokens.sub(reservedTokensLeft)
            && msg.value >= currentTokenPrice.mul(count)
        );
        _mintToad(msg.sender, count);
    }

    function mintToadReserved(address to, uint256 count) public onlyOwner {
        if (to == address(0)) {
            to = msg.sender;
        }
        require(count > 0 && count <= reservedTokensLeft);
        _mintToad(to, count);
        reservedTokensLeft -= count;
    }

    function stop() public onlyOwner {
        require(hasStarted == true);
        hasStarted = false;
    }

    function start() public onlyOwner {
        require(hasStarted == false);
        hasStarted = true;
    }

    function withdrawTo(address to, uint256 amount) public payable onlyOwner {
        require(amount > 0);
        if (to == address(0)) {
            to = msg.sender;
        }
        require(payable(to).send(amount));
    }

    function withdraw() public payable onlyOwner {
        require(payable(owner()).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseUriString","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTING_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintToad","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintToadReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTokensLeft","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUriString","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stop","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":[],"name":"toadsAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600d805460ff19169055612710600e556064601055667669755a5d20006011553480156200003157600080fd5b506040516200266b3803806200266b83398101604081905262000054916200028c565b604080518082018252601881527f4974204973205765646e6573646179204d79204475646573000000000000000060208083019182528351808501909452601484527f497449735765646e65736461794d794475646573000000000000000000000000908401528151919291620000ce91600091620001e6565b508051620000e4906001906020840190620001e6565b50505062000101620000fb6200011860201b60201c565b6200011c565b6001600b5562000111816200016e565b50620003bb565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001e290600c906020840190620001e6565b5050565b828054620001f49062000368565b90600052602060002090601f01602090048101928262000218576000855562000263565b82601f106200023357805160ff191683800117855562000263565b8280016001018555821562000263579182015b828111156200026357825182559160200191906001019062000246565b506200027192915062000275565b5090565b5b8082111562000271576000815560010162000276565b60006020808385031215620002a057600080fd5b82516001600160401b0380821115620002b857600080fd5b818501915085601f830112620002cd57600080fd5b815181811115620002e257620002e2620003a5565b604051601f8201601f19908116603f011681019083821181831017156200030d576200030d620003a5565b8160405282815288868487010111156200032657600080fd5b600093505b828410156200034a57848401860151818501870152928501926200032b565b828411156200035c5760008684830101525b98975050505050505050565b600181811c908216806200037d57607f821691505b602082108114156200039f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6122a080620003cb6000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063b30197f8116100a0578063c87b56dd1161006f578063c87b56dd1461052b578063c8e9b6131461054b578063e831574214610561578063e985e9c514610577578063f2fde38b146105c057600080fd5b8063b30197f8146104c3578063b88d4fde146104e3578063be9a655514610503578063bf3f21531461051857600080fd5b80638da5cb5b116100dc5780638da5cb5b1461045057806395d89b411461046e578063a0bcfc7f14610483578063a22cb465146104a357600080fd5b8063715018a6146103e257806371b3659e146103f757806383033ac11461040d5780638462151c1461042357600080fd5b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461036d5780635cd298381461038d5780636352211e146103a257806370a08231146103c257600080fd5b80632f745c591461030b5780633ccfd60b1461032b57806342842e0e1461033357806344691f7e1461035357600080fd5b8063095ea7b3116101c1578063095ea7b31461029957806318160ddd146102b9578063205c2878146102d857806323b872dd146102eb57600080fd5b806301ffc9a7146101f357806306fdde031461022857806307da68f51461024a578063081812fc14610261575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611e68565b6105e0565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6105f1565b60405161021f9190612009565b34801561025657600080fd5b5061025f610683565b005b34801561026d57600080fd5b5061028161027c366004611eeb565b6106d6565b6040516001600160a01b03909116815260200161021f565b3480156102a557600080fd5b5061025f6102b4366004611e3e565b61076b565b3480156102c557600080fd5b506008545b60405190815260200161021f565b61025f6102e6366004611e3e565b610881565b3480156102f757600080fd5b5061025f610306366004611d4a565b6108fc565b34801561031757600080fd5b506102ca610326366004611e3e565b61092d565b61025f6109c3565b34801561033f57600080fd5b5061025f61034e366004611d4a565b610a20565b34801561035f57600080fd5b50600d546102139060ff1681565b34801561037957600080fd5b506102ca610388366004611eeb565b610a3b565b34801561039957600080fd5b506102ca601481565b3480156103ae57600080fd5b506102816103bd366004611eeb565b610ace565b3480156103ce57600080fd5b506102ca6103dd366004611cfc565b610b45565b3480156103ee57600080fd5b5061025f610bcc565b34801561040357600080fd5b506102ca60115481565b34801561041957600080fd5b506102ca60105481565b34801561042f57600080fd5b5061044361043e366004611cfc565b610c00565b60405161021f9190611fc5565b34801561045c57600080fd5b50600a546001600160a01b0316610281565b34801561047a57600080fd5b5061023d610cbf565b34801561048f57600080fd5b5061025f61049e366004611ea2565b610cce565b3480156104af57600080fd5b5061025f6104be366004611e02565b610d0b565b3480156104cf57600080fd5b5061025f6104de366004611e3e565b610dd0565b3480156104ef57600080fd5b5061025f6104fe366004611d86565b610e4c565b34801561050f57600080fd5b5061025f610e84565b61025f610526366004611eeb565b610ecd565b34801561053757600080fd5b5061023d610546366004611eeb565b610fa8565b34801561055757600080fd5b506102ca600f5481565b34801561056d57600080fd5b506102ca600e5481565b34801561058357600080fd5b50610213610592366004611d17565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105cc57600080fd5b5061025f6105db366004611cfc565b610ffd565b60006105eb82611098565b92915050565b60606000805461060090612182565b80601f016020809104026020016040519081016040528092919081815260200182805461062c90612182565b80156106795780601f1061064e57610100808354040283529160200191610679565b820191906000526020600020905b81548152906001019060200180831161065c57829003601f168201915b5050505050905090565b600a546001600160a01b031633146106b65760405162461bcd60e51b81526004016106ad9061206e565b60405180910390fd5b600d5460ff1615156001146106ca57600080fd5b600d805460ff19169055565b6000818152600260205260408120546001600160a01b031661074f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ad565b506000908152600460205260409020546001600160a01b031690565b600061077682610ace565b9050806001600160a01b0316836001600160a01b031614156107e45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ad565b336001600160a01b038216148061080057506108008133610592565b6108725760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ad565b61087c83836110bd565b505050565b600a546001600160a01b031633146108ab5760405162461bcd60e51b81526004016106ad9061206e565b600081116108b857600080fd5b6001600160a01b0382166108ca573391505b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050506108f857600080fd5b5050565b610906338261112b565b6109225760405162461bcd60e51b81526004016106ad906120a3565b61087c838383611222565b600061093883610b45565b821061099a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106ad565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109ed5760405162461bcd60e51b81526004016106ad9061206e565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610a1e57600080fd5b565b61087c83838360405180602001604052806000815250610e4c565b6000610a4660085490565b8210610aa95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106ad565b60088281548110610abc57610abc612228565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105eb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ad565b60006001600160a01b038216610bb05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ad565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610bf65760405162461bcd60e51b81526004016106ad9061206e565b610a1e60006113cd565b60606000610c0d83610b45565b905080610c2e5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610c4957610c4961223e565b604051908082528060200260200182016040528015610c72578160200160208202803683370190505b50905060005b82811015610c2657610c8a858261092d565b828281518110610c9c57610c9c612228565b602090810291909101015280610cb1816121b7565b915050610c78565b50919050565b60606001805461060090612182565b600a546001600160a01b03163314610cf85760405162461bcd60e51b81526004016106ad9061206e565b80516108f890600c906020840190611bd1565b6001600160a01b038216331415610d645760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ad565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610dfa5760405162461bcd60e51b81526004016106ad9061206e565b6001600160a01b038216610e0c573391505b600081118015610e1e57506010548111155b610e2757600080fd5b610e31828261141f565b8060106000828254610e43919061213f565b90915550505050565b610e56338361112b565b610e725760405162461bcd60e51b81526004016106ad906120a3565b610e7e8484848461145e565b50505050565b600a546001600160a01b03163314610eae5760405162461bcd60e51b81526004016106ad9061206e565b600d5460ff1615610ebe57600080fd5b600d805460ff19166001179055565b6002600b541415610f205760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ad565b6002600b55600d5460ff1615156001148015610f3c5750600081115b8015610f49575060148111155b8015610f755750601054600e54610f5f91611491565b610f7282610f6c60085490565b9061149d565b11155b8015610f8d5750601154610f8990826114a9565b3410155b610f9657600080fd5b610fa0338261141f565b506001600b55565b60606000610fb5836114b5565b90506000815111610fd55760405180602001604052806000815250610ff6565b80604051602001610fe69190611f5f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110275760405162461bcd60e51b81526004016106ad9061206e565b6001600160a01b03811661108c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ad565b611095816113cd565b50565b60006001600160e01b0319821663780e9d6360e01b14806105eb57506105eb82611579565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110f282610ace565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111a45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ad565b60006111af83610ace565b9050806001600160a01b0316846001600160a01b031614806111ea5750836001600160a01b03166111df846106d6565b6001600160a01b0316145b8061121a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661123582610ace565b6001600160a01b03161461129d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ad565b6001600160a01b0382166112ff5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ad565b61130a8383836115c9565b6113156000826110bd565b6001600160a01b038316600090815260036020526040812080546001929061133e90849061213f565b90915550506001600160a01b038216600090815260036020526040812080546001929061136c9084906120f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f5460005b828110156114565781611437816121b7565b92505061144484836115d4565b8061144e816121b7565b915050611425565b50600f555050565b611469848484611222565b611475848484846115ee565b610e7e5760405162461bcd60e51b81526004016106ad9061201c565b6000610ff6828461213f565b6000610ff682846120f4565b6000610ff68284612120565b6000818152600260205260409020546060906001600160a01b03166115345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ad565b600061153e6116fb565b9050600081511161155e5760405180602001604052806000815250610ff6565b806115688461170a565b604051602001610fe6929190611f30565b60006001600160e01b031982166380ac58cd60e01b14806115aa57506001600160e01b03198216635b5e139f60e01b145b806105eb57506301ffc9a760e01b6001600160e01b03198316146105eb565b61087c838383611808565b6108f88282604051806020016040528060008152506118c0565b60006001600160a01b0384163b156116f057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611632903390899088908890600401611f88565b602060405180830381600087803b15801561164c57600080fd5b505af192505050801561167c575060408051601f3d908101601f1916820190925261167991810190611e85565b60015b6116d6573d8080156116aa576040519150601f19603f3d011682016040523d82523d6000602084013e6116af565b606091505b5080516116ce5760405162461bcd60e51b81526004016106ad9061201c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061121a565b506001949350505050565b6060600c805461060090612182565b60608161172e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117585780611742816121b7565b91506117519050600a8361210c565b9150611732565b60008167ffffffffffffffff8111156117735761177361223e565b6040519080825280601f01601f19166020018201604052801561179d576020820181803683370190505b5090505b841561121a576117b260018361213f565b91506117bf600a866121d2565b6117ca9060306120f4565b60f81b8183815181106117df576117df612228565b60200101906001600160f81b031916908160001a905350611801600a8661210c565b94506117a1565b6001600160a01b0383166118635761185e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611886565b816001600160a01b0316836001600160a01b0316146118865761188683826118f3565b6001600160a01b03821661189d5761087c81611990565b826001600160a01b0316826001600160a01b03161461087c5761087c8282611a3f565b6118ca8383611a83565b6118d760008484846115ee565b61087c5760405162461bcd60e51b81526004016106ad9061201c565b6000600161190084610b45565b61190a919061213f565b60008381526007602052604090205490915080821461195d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119a29060019061213f565b600083815260096020526040812054600880549394509092849081106119ca576119ca612228565b9060005260206000200154905080600883815481106119eb576119eb612228565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a2357611a23612212565b6001900381819060005260206000200160009055905550505050565b6000611a4a83610b45565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ad95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ad565b6000818152600260205260409020546001600160a01b031615611b3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ad565b611b4a600083836115c9565b6001600160a01b0382166000908152600360205260408120805460019290611b739084906120f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bdd90612182565b90600052602060002090601f016020900481019282611bff5760008555611c45565b82601f10611c1857805160ff1916838001178555611c45565b82800160010185558215611c45579182015b82811115611c45578251825591602001919060010190611c2a565b50611c51929150611c55565b5090565b5b80821115611c515760008155600101611c56565b600067ffffffffffffffff80841115611c8557611c8561223e565b604051601f8501601f19908116603f01168101908282118183101715611cad57611cad61223e565b81604052809350858152868686011115611cc657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cf757600080fd5b919050565b600060208284031215611d0e57600080fd5b610ff682611ce0565b60008060408385031215611d2a57600080fd5b611d3383611ce0565b9150611d4160208401611ce0565b90509250929050565b600080600060608486031215611d5f57600080fd5b611d6884611ce0565b9250611d7660208501611ce0565b9150604084013590509250925092565b60008060008060808587031215611d9c57600080fd5b611da585611ce0565b9350611db360208601611ce0565b925060408501359150606085013567ffffffffffffffff811115611dd657600080fd5b8501601f81018713611de757600080fd5b611df687823560208401611c6a565b91505092959194509250565b60008060408385031215611e1557600080fd5b611e1e83611ce0565b915060208301358015158114611e3357600080fd5b809150509250929050565b60008060408385031215611e5157600080fd5b611e5a83611ce0565b946020939093013593505050565b600060208284031215611e7a57600080fd5b8135610ff681612254565b600060208284031215611e9757600080fd5b8151610ff681612254565b600060208284031215611eb457600080fd5b813567ffffffffffffffff811115611ecb57600080fd5b8201601f81018413611edc57600080fd5b61121a84823560208401611c6a565b600060208284031215611efd57600080fd5b5035919050565b60008151808452611f1c816020860160208601612156565b601f01601f19169290920160200192915050565b60008351611f42818460208801612156565b835190830190611f56818360208801612156565b01949350505050565b60008251611f71818460208701612156565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fbb90830184611f04565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611ffd57835183529284019291840191600101611fe1565b50909695505050505050565b602081526000610ff66020830184611f04565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612107576121076121e6565b500190565b60008261211b5761211b6121fc565b500490565b600081600019048311821515161561213a5761213a6121e6565b500290565b600082821015612151576121516121e6565b500390565b60005b83811015612171578181015183820152602001612159565b83811115610e7e5750506000910152565b600181811c9082168061219657607f821691505b60208210811415610cb957634e487b7160e01b600052602260045260246000fd5b60006000198214156121cb576121cb6121e6565b5060010190565b6000826121e1576121e16121fc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461109557600080fdfea264697066735822122086dc1df11acbdb4766b51bbf20cbacf0aa315ad0d49fb3f4c0bbcd804bcf03f364736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f697469737765646e65736461796d7964756465732e696f2f636f6e74656e742f000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063b30197f8116100a0578063c87b56dd1161006f578063c87b56dd1461052b578063c8e9b6131461054b578063e831574214610561578063e985e9c514610577578063f2fde38b146105c057600080fd5b8063b30197f8146104c3578063b88d4fde146104e3578063be9a655514610503578063bf3f21531461051857600080fd5b80638da5cb5b116100dc5780638da5cb5b1461045057806395d89b411461046e578063a0bcfc7f14610483578063a22cb465146104a357600080fd5b8063715018a6146103e257806371b3659e146103f757806383033ac11461040d5780638462151c1461042357600080fd5b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461036d5780635cd298381461038d5780636352211e146103a257806370a08231146103c257600080fd5b80632f745c591461030b5780633ccfd60b1461032b57806342842e0e1461033357806344691f7e1461035357600080fd5b8063095ea7b3116101c1578063095ea7b31461029957806318160ddd146102b9578063205c2878146102d857806323b872dd146102eb57600080fd5b806301ffc9a7146101f357806306fdde031461022857806307da68f51461024a578063081812fc14610261575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611e68565b6105e0565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6105f1565b60405161021f9190612009565b34801561025657600080fd5b5061025f610683565b005b34801561026d57600080fd5b5061028161027c366004611eeb565b6106d6565b6040516001600160a01b03909116815260200161021f565b3480156102a557600080fd5b5061025f6102b4366004611e3e565b61076b565b3480156102c557600080fd5b506008545b60405190815260200161021f565b61025f6102e6366004611e3e565b610881565b3480156102f757600080fd5b5061025f610306366004611d4a565b6108fc565b34801561031757600080fd5b506102ca610326366004611e3e565b61092d565b61025f6109c3565b34801561033f57600080fd5b5061025f61034e366004611d4a565b610a20565b34801561035f57600080fd5b50600d546102139060ff1681565b34801561037957600080fd5b506102ca610388366004611eeb565b610a3b565b34801561039957600080fd5b506102ca601481565b3480156103ae57600080fd5b506102816103bd366004611eeb565b610ace565b3480156103ce57600080fd5b506102ca6103dd366004611cfc565b610b45565b3480156103ee57600080fd5b5061025f610bcc565b34801561040357600080fd5b506102ca60115481565b34801561041957600080fd5b506102ca60105481565b34801561042f57600080fd5b5061044361043e366004611cfc565b610c00565b60405161021f9190611fc5565b34801561045c57600080fd5b50600a546001600160a01b0316610281565b34801561047a57600080fd5b5061023d610cbf565b34801561048f57600080fd5b5061025f61049e366004611ea2565b610cce565b3480156104af57600080fd5b5061025f6104be366004611e02565b610d0b565b3480156104cf57600080fd5b5061025f6104de366004611e3e565b610dd0565b3480156104ef57600080fd5b5061025f6104fe366004611d86565b610e4c565b34801561050f57600080fd5b5061025f610e84565b61025f610526366004611eeb565b610ecd565b34801561053757600080fd5b5061023d610546366004611eeb565b610fa8565b34801561055757600080fd5b506102ca600f5481565b34801561056d57600080fd5b506102ca600e5481565b34801561058357600080fd5b50610213610592366004611d17565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105cc57600080fd5b5061025f6105db366004611cfc565b610ffd565b60006105eb82611098565b92915050565b60606000805461060090612182565b80601f016020809104026020016040519081016040528092919081815260200182805461062c90612182565b80156106795780601f1061064e57610100808354040283529160200191610679565b820191906000526020600020905b81548152906001019060200180831161065c57829003601f168201915b5050505050905090565b600a546001600160a01b031633146106b65760405162461bcd60e51b81526004016106ad9061206e565b60405180910390fd5b600d5460ff1615156001146106ca57600080fd5b600d805460ff19169055565b6000818152600260205260408120546001600160a01b031661074f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ad565b506000908152600460205260409020546001600160a01b031690565b600061077682610ace565b9050806001600160a01b0316836001600160a01b031614156107e45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ad565b336001600160a01b038216148061080057506108008133610592565b6108725760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ad565b61087c83836110bd565b505050565b600a546001600160a01b031633146108ab5760405162461bcd60e51b81526004016106ad9061206e565b600081116108b857600080fd5b6001600160a01b0382166108ca573391505b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050506108f857600080fd5b5050565b610906338261112b565b6109225760405162461bcd60e51b81526004016106ad906120a3565b61087c838383611222565b600061093883610b45565b821061099a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106ad565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109ed5760405162461bcd60e51b81526004016106ad9061206e565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610a1e57600080fd5b565b61087c83838360405180602001604052806000815250610e4c565b6000610a4660085490565b8210610aa95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106ad565b60088281548110610abc57610abc612228565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105eb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ad565b60006001600160a01b038216610bb05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ad565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610bf65760405162461bcd60e51b81526004016106ad9061206e565b610a1e60006113cd565b60606000610c0d83610b45565b905080610c2e5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610c4957610c4961223e565b604051908082528060200260200182016040528015610c72578160200160208202803683370190505b50905060005b82811015610c2657610c8a858261092d565b828281518110610c9c57610c9c612228565b602090810291909101015280610cb1816121b7565b915050610c78565b50919050565b60606001805461060090612182565b600a546001600160a01b03163314610cf85760405162461bcd60e51b81526004016106ad9061206e565b80516108f890600c906020840190611bd1565b6001600160a01b038216331415610d645760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ad565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610dfa5760405162461bcd60e51b81526004016106ad9061206e565b6001600160a01b038216610e0c573391505b600081118015610e1e57506010548111155b610e2757600080fd5b610e31828261141f565b8060106000828254610e43919061213f565b90915550505050565b610e56338361112b565b610e725760405162461bcd60e51b81526004016106ad906120a3565b610e7e8484848461145e565b50505050565b600a546001600160a01b03163314610eae5760405162461bcd60e51b81526004016106ad9061206e565b600d5460ff1615610ebe57600080fd5b600d805460ff19166001179055565b6002600b541415610f205760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ad565b6002600b55600d5460ff1615156001148015610f3c5750600081115b8015610f49575060148111155b8015610f755750601054600e54610f5f91611491565b610f7282610f6c60085490565b9061149d565b11155b8015610f8d5750601154610f8990826114a9565b3410155b610f9657600080fd5b610fa0338261141f565b506001600b55565b60606000610fb5836114b5565b90506000815111610fd55760405180602001604052806000815250610ff6565b80604051602001610fe69190611f5f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110275760405162461bcd60e51b81526004016106ad9061206e565b6001600160a01b03811661108c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ad565b611095816113cd565b50565b60006001600160e01b0319821663780e9d6360e01b14806105eb57506105eb82611579565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110f282610ace565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111a45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ad565b60006111af83610ace565b9050806001600160a01b0316846001600160a01b031614806111ea5750836001600160a01b03166111df846106d6565b6001600160a01b0316145b8061121a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661123582610ace565b6001600160a01b03161461129d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ad565b6001600160a01b0382166112ff5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ad565b61130a8383836115c9565b6113156000826110bd565b6001600160a01b038316600090815260036020526040812080546001929061133e90849061213f565b90915550506001600160a01b038216600090815260036020526040812080546001929061136c9084906120f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f5460005b828110156114565781611437816121b7565b92505061144484836115d4565b8061144e816121b7565b915050611425565b50600f555050565b611469848484611222565b611475848484846115ee565b610e7e5760405162461bcd60e51b81526004016106ad9061201c565b6000610ff6828461213f565b6000610ff682846120f4565b6000610ff68284612120565b6000818152600260205260409020546060906001600160a01b03166115345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ad565b600061153e6116fb565b9050600081511161155e5760405180602001604052806000815250610ff6565b806115688461170a565b604051602001610fe6929190611f30565b60006001600160e01b031982166380ac58cd60e01b14806115aa57506001600160e01b03198216635b5e139f60e01b145b806105eb57506301ffc9a760e01b6001600160e01b03198316146105eb565b61087c838383611808565b6108f88282604051806020016040528060008152506118c0565b60006001600160a01b0384163b156116f057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611632903390899088908890600401611f88565b602060405180830381600087803b15801561164c57600080fd5b505af192505050801561167c575060408051601f3d908101601f1916820190925261167991810190611e85565b60015b6116d6573d8080156116aa576040519150601f19603f3d011682016040523d82523d6000602084013e6116af565b606091505b5080516116ce5760405162461bcd60e51b81526004016106ad9061201c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061121a565b506001949350505050565b6060600c805461060090612182565b60608161172e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117585780611742816121b7565b91506117519050600a8361210c565b9150611732565b60008167ffffffffffffffff8111156117735761177361223e565b6040519080825280601f01601f19166020018201604052801561179d576020820181803683370190505b5090505b841561121a576117b260018361213f565b91506117bf600a866121d2565b6117ca9060306120f4565b60f81b8183815181106117df576117df612228565b60200101906001600160f81b031916908160001a905350611801600a8661210c565b94506117a1565b6001600160a01b0383166118635761185e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611886565b816001600160a01b0316836001600160a01b0316146118865761188683826118f3565b6001600160a01b03821661189d5761087c81611990565b826001600160a01b0316826001600160a01b03161461087c5761087c8282611a3f565b6118ca8383611a83565b6118d760008484846115ee565b61087c5760405162461bcd60e51b81526004016106ad9061201c565b6000600161190084610b45565b61190a919061213f565b60008381526007602052604090205490915080821461195d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119a29060019061213f565b600083815260096020526040812054600880549394509092849081106119ca576119ca612228565b9060005260206000200154905080600883815481106119eb576119eb612228565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a2357611a23612212565b6001900381819060005260206000200160009055905550505050565b6000611a4a83610b45565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ad95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ad565b6000818152600260205260409020546001600160a01b031615611b3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ad565b611b4a600083836115c9565b6001600160a01b0382166000908152600360205260408120805460019290611b739084906120f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bdd90612182565b90600052602060002090601f016020900481019282611bff5760008555611c45565b82601f10611c1857805160ff1916838001178555611c45565b82800160010185558215611c45579182015b82811115611c45578251825591602001919060010190611c2a565b50611c51929150611c55565b5090565b5b80821115611c515760008155600101611c56565b600067ffffffffffffffff80841115611c8557611c8561223e565b604051601f8501601f19908116603f01168101908282118183101715611cad57611cad61223e565b81604052809350858152868686011115611cc657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cf757600080fd5b919050565b600060208284031215611d0e57600080fd5b610ff682611ce0565b60008060408385031215611d2a57600080fd5b611d3383611ce0565b9150611d4160208401611ce0565b90509250929050565b600080600060608486031215611d5f57600080fd5b611d6884611ce0565b9250611d7660208501611ce0565b9150604084013590509250925092565b60008060008060808587031215611d9c57600080fd5b611da585611ce0565b9350611db360208601611ce0565b925060408501359150606085013567ffffffffffffffff811115611dd657600080fd5b8501601f81018713611de757600080fd5b611df687823560208401611c6a565b91505092959194509250565b60008060408385031215611e1557600080fd5b611e1e83611ce0565b915060208301358015158114611e3357600080fd5b809150509250929050565b60008060408385031215611e5157600080fd5b611e5a83611ce0565b946020939093013593505050565b600060208284031215611e7a57600080fd5b8135610ff681612254565b600060208284031215611e9757600080fd5b8151610ff681612254565b600060208284031215611eb457600080fd5b813567ffffffffffffffff811115611ecb57600080fd5b8201601f81018413611edc57600080fd5b61121a84823560208401611c6a565b600060208284031215611efd57600080fd5b5035919050565b60008151808452611f1c816020860160208601612156565b601f01601f19169290920160200192915050565b60008351611f42818460208801612156565b835190830190611f56818360208801612156565b01949350505050565b60008251611f71818460208701612156565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fbb90830184611f04565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611ffd57835183529284019291840191600101611fe1565b50909695505050505050565b602081526000610ff66020830184611f04565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612107576121076121e6565b500190565b60008261211b5761211b6121fc565b500490565b600081600019048311821515161561213a5761213a6121e6565b500290565b600082821015612151576121516121e6565b500390565b60005b83811015612171578181015183820152602001612159565b83811115610e7e5750506000910152565b600181811c9082168061219657607f821691505b60208210811415610cb957634e487b7160e01b600052602260045260246000fd5b60006000198214156121cb576121cb6121e6565b5060010190565b6000826121e1576121e16121fc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461109557600080fdfea264697066735822122086dc1df11acbdb4766b51bbf20cbacf0aa315ad0d49fb3f4c0bbcd804bcf03f364736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f697469737765646e65736461796d7964756465732e696f2f636f6e74656e742f000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseUriString (string): https://itiswednesdaymydudes.io/content/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [2] : 68747470733a2f2f697469737765646e65736461796d7964756465732e696f2f
Arg [3] : 636f6e74656e742f000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

52976:3549:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53596:171;;;;;;;;;;-1:-1:-1;53596:171:0;;;;;:::i;:::-;;:::i;:::-;;;6731:14:1;;6724:22;6706:41;;6694:2;6679:18;53596:171:0;;;;;;;;21709:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55935:108::-;;;;;;;;;;;;;:::i;:::-;;23268:221;;;;;;;;;;-1:-1:-1;23268:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5392:32:1;;;5374:51;;5362:2;5347:18;23268:221:0;5228:203:1;22791:411:0;;;;;;;;;;-1:-1:-1;22791:411:0;;;;;:::i;:::-;;:::i;35452:113::-;;;;;;;;;;-1:-1:-1;35540:10:0;:17;35452:113;;;14695:25:1;;;14683:2;14668:18;35452:113:0;14549:177:1;56168:229:0;;;;;;:::i;:::-;;:::i;24158:339::-;;;;;;;;;;-1:-1:-1;24158:339:0;;;;;:::i;:::-;;:::i;35120:256::-;;;;;;;;;;-1:-1:-1;35120:256:0;;;;;:::i;:::-;;:::i;56405:117::-;;;:::i;24568:185::-;;;;;;;;;;-1:-1:-1;24568:185:0;;;;;:::i;:::-;;:::i;53169:30::-;;;;;;;;;;-1:-1:-1;53169:30:0;;;;;;;;35642:233;;;;;;;;;;-1:-1:-1;35642:233:0;;;;;:::i;:::-;;:::i;53379:56::-;;;;;;;;;;;;53433:2;53379:56;;21403:239;;;;;;;;;;-1:-1:-1;21403:239:0;;;;;:::i;:::-;;:::i;21133:208::-;;;;;;;;;;-1:-1:-1;21133:208:0;;;;;:::i;:::-;;:::i;42611:94::-;;;;;;;;;;;;;:::i;53324:48::-;;;;;;;;;;;;;;;;53278:39;;;;;;;;;;;;;;;;54486:502;;;;;;;;;;-1:-1:-1;54486:502:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41960:87::-;;;;;;;;;;-1:-1:-1;42033:6:0;;-1:-1:-1;;;;;42033:6:0;41960:87;;21878:104;;;;;;;;;;;;;:::i;53987:115::-;;;;;;;;;;-1:-1:-1;53987:115:0;;;;;:::i;:::-;;:::i;23561:295::-;;;;;;;;;;-1:-1:-1;23561:295:0;;;;;:::i;:::-;;:::i;55646:281::-;;;;;;;;;;-1:-1:-1;55646:281:0;;;;;:::i;:::-;;:::i;24824:328::-;;;;;;;;;;-1:-1:-1;24824:328:0;;;;;:::i;:::-;;:::i;56051:109::-;;;;;;;;;;;;;:::i;55277:361::-;;;;;;:::i;:::-;;:::i;54225:253::-;;;;;;;;;;-1:-1:-1;54225:253:0;;;;;:::i;:::-;;:::i;53245:26::-;;;;;;;;;;;;;;;;53206:32;;;;;;;;;;;;;;;;23927:164;;;;;;;;;;-1:-1:-1;23927:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24048:25:0;;;24024:4;24048:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23927:164;42860:192;;;;;;;;;;-1:-1:-1;42860:192:0;;;;;:::i;:::-;;:::i;53596:171::-;53699:4;53723:36;53747:11;53723:23;:36::i;:::-;53716:43;53596:171;-1:-1:-1;;53596:171:0:o;21709:100::-;21763:13;21796:5;21789:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21709:100;:::o;55935:108::-;42033:6;;-1:-1:-1;;;;;42033:6:0;16264:10;42180:23;42172:68;;;;-1:-1:-1;;;42172:68:0;;;;;;;:::i;:::-;;;;;;;;;55987:10:::1;::::0;::::1;;:18;;:10:::0;:18:::1;55979:27;;;::::0;::::1;;56017:10;:18:::0;;-1:-1:-1;;56017:18:0::1;::::0;;55935:108::o;23268:221::-;23344:7;26751:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26751:16:0;23364:73;;;;-1:-1:-1;;;23364:73:0;;11558:2:1;23364:73:0;;;11540:21:1;11597:2;11577:18;;;11570:30;11636:34;11616:18;;;11609:62;-1:-1:-1;;;11687:18:1;;;11680:42;11739:19;;23364:73:0;11356:408:1;23364:73:0;-1:-1:-1;23457:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23457:24:0;;23268:221::o;22791:411::-;22872:13;22888:23;22903:7;22888:14;:23::i;:::-;22872:39;;22936:5;-1:-1:-1;;;;;22930:11:0;:2;-1:-1:-1;;;;;22930:11:0;;;22922:57;;;;-1:-1:-1;;;22922:57:0;;13158:2:1;22922:57:0;;;13140:21:1;13197:2;13177:18;;;13170:30;13236:34;13216:18;;;13209:62;-1:-1:-1;;;13287:18:1;;;13280:31;13328:19;;22922:57:0;12956:397:1;22922:57:0;16264:10;-1:-1:-1;;;;;23014:21:0;;;;:62;;-1:-1:-1;23039:37:0;23056:5;16264:10;23927:164;:::i;23039:37::-;22992:168;;;;-1:-1:-1;;;22992:168:0;;9951:2:1;22992:168:0;;;9933:21:1;9990:2;9970:18;;;9963:30;10029:34;10009:18;;;10002:62;10100:26;10080:18;;;10073:54;10144:19;;22992:168:0;9749:420:1;22992:168:0;23173:21;23182:2;23186:7;23173:8;:21::i;:::-;22861:341;22791:411;;:::o;56168:229::-;42033:6;;-1:-1:-1;;;;;42033:6:0;16264:10;42180:23;42172:68;;;;-1:-1:-1;;;42172:68:0;;;;;;;:::i;:::-;56269:1:::1;56260:6;:10;56252:19;;;::::0;::::1;;-1:-1:-1::0;;;;;56286:16:0;::::1;56282:64;;56324:10;56319:15;;56282:64;56364:24;::::0;-1:-1:-1;;;;;56364:16:0;::::1;::::0;:24;::::1;;;::::0;56381:6;;56364:24:::1;::::0;;;56381:6;56364:16;:24;::::1;;;;;;56356:33;;;::::0;::::1;;56168:229:::0;;:::o;24158:339::-;24353:41;16264:10;24386:7;24353:18;:41::i;:::-;24345:103;;;;-1:-1:-1;;;24345:103:0;;;;;;;:::i;:::-;24461:28;24471:4;24477:2;24481:7;24461:9;:28::i;35120:256::-;35217:7;35253:23;35270:5;35253:16;:23::i;:::-;35245:5;:31;35237:87;;;;-1:-1:-1;;;35237:87:0;;7184:2:1;35237:87:0;;;7166:21:1;7223:2;7203:18;;;7196:30;7262:34;7242:18;;;7235:62;-1:-1:-1;;;7313:18:1;;;7306:41;7364:19;;35237:87:0;6982:407:1;35237:87:0;-1:-1:-1;;;;;;35342:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35120:256::o;56405:117::-;42033:6;;-1:-1:-1;;;;;42033:6:0;16264:10;42180:23;42172:68;;;;-1:-1:-1;;;42172:68:0;;;;;;;:::i;:::-;42033:6;;56469:44:::1;::::0;-1:-1:-1;;;;;42033:6:0;;;;56491:21:::1;56469:44:::0;::::1;;;::::0;::::1;::::0;;;56491:21;42033:6;56469:44;::::1;;;;;;56461:53;;;::::0;::::1;;56405:117::o:0;24568:185::-;24706:39;24723:4;24729:2;24733:7;24706:39;;;;;;;;;;;;:16;:39::i;35642:233::-;35717:7;35753:30;35540:10;:17;;35452:113;35753:30;35745:5;:38;35737:95;;;;-1:-1:-1;;;35737:95:0;;13978:2:1;35737:95:0;;;13960:21:1;14017:2;13997:18;;;13990:30;14056:34;14036:18;;;14029:62;-1:-1:-1;;;14107:18:1;;;14100:42;14159:19;;35737:95:0;13776:408:1;35737:95:0;35850:10;35861:5;35850:17;;;;;;;;:::i;:::-;;;;;;;;;35843:24;;35642:233;;;:::o;21403:239::-;21475:7;21511:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21511:16:0;21546:19;21538:73;;;;-1:-1:-1;;;21538:73:0;;10787:2:1;21538:73:0;;;10769:21:1;10826:2;10806:18;;;10799:30;10865:34;10845:18;;;10838:62;-1:-1:-1;;;10916:18:1;;;10909:39;10965:19;;21538:73:0;10585:405:1;21133:208:0;21205:7;-1:-1:-1;;;;;21233:19:0;;21225:74;;;;-1:-1:-1;;;21225:74:0;;10376:2:1;21225:74:0;;;10358:21:1;10415:2;10395:18;;;10388:30;10454:34;10434:18;;;10427:62;-1:-1:-1;;;10505:18:1;;;10498:40;10555:19;;21225:74:0;10174:406:1;21225:74:0;-1:-1:-1;;;;;;21317:16:0;;;;;:9;:16;;;;;;;21133:208::o;42611:94::-;42033:6;;-1:-1:-1;;;;;42033:6:0;16264:10;42180:23;42172:68;;;;-1:-1:-1;;;42172:68:0;;;;;;;:::i;:::-;42676:21:::1;42694:1;42676:9;:21::i;54486:502::-:0;54547:16;54577:18;54598:17;54608:6;54598:9;:17::i;:::-;54577:38;-1:-1:-1;54630:15:0;54626:355;;54669:16;;;54683:1;54669:16;;;;;;;;;;;-1:-1:-1;54662:23:0;54486:502;-1:-1:-1;;;54486:502:0:o;54626:355::-;54718:23;54758:10;54744:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54744:25:0;;54718:51;;54784:13;54812:130;54836:10;54828:5;:18;54812:130;;;54892:34;54912:6;54920:5;54892:19;:34::i;:::-;54876:6;54883:5;54876:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;54848:7;;;;:::i;:::-;;;;54812:130;;54626:355;54566:422;54486:502;;;:::o;21878:104::-;21934:13;21967:7;21960:14;;;;;:::i;53987:115::-;42033:6;;-1:-1:-1;;;;;42033:6:0;16264:10;42180:23;42172:68;;;;-1:-1:-1;;;42172:68:0;;;;;;;:::i;:::-;54064:30;;::::1;::::0;:14:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;23561:295::-:0;-1:-1:-1;;;;;23664:24:0;;16264:10;23664:24;;23656:62;;;;-1:-1:-1;;;23656:62:0;;9184:2:1;23656:62:0;;;9166:21:1;9223:2;9203:18;;;9196:30;9262:27;9242:18;;;9235:55;9307:18;;23656:62:0;8982:349:1;23656:62:0;16264:10;23731:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23731:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23731:53:0;;;;;;;;;;23800:48;;6706:41:1;;;23731:42:0;;16264:10;23800:48;;6679:18:1;23800:48:0;;;;;;;23561:295;;:::o;55646:281::-;42033:6;;-1:-1:-1;;;;;42033:6:0;16264:10;42180:23;42172:68;;;;-1:-1:-1;;;42172:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55731:16:0;::::1;55727:64;;55769:10;55764:15;;55727:64;55817:1;55809:5;:9;:40;;;;;55831:18;;55822:5;:27;;55809:40;55801:49;;;::::0;::::1;;55861:20;55871:2;55875:5;55861:9;:20::i;:::-;55914:5;55892:18;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;55646:281:0:o;24824:328::-;24999:41;16264:10;25032:7;24999:18;:41::i;:::-;24991:103;;;;-1:-1:-1;;;24991:103:0;;;;;;;:::i;:::-;25105:39;25119:4;25125:2;25129:7;25138:5;25105:13;:39::i;:::-;24824:328;;;;:::o;56051:109::-;42033:6;;-1:-1:-1;;;;;42033:6:0;16264:10;42180:23;42172:68;;;;-1:-1:-1;;;42172:68:0;;;;;;;:::i;:::-;56104:10:::1;::::0;::::1;;:19;56096:28;;;::::0;::::1;;56135:10;:17:::0;;-1:-1:-1;;56135:17:0::1;56148:4;56135:17;::::0;;56051:109::o;55277:361::-;44991:1;45587:7;;:19;;45579:63;;;;-1:-1:-1;;;45579:63:0;;14391:2:1;45579:63:0;;;14373:21:1;14430:2;14410:18;;;14403:30;14469:33;14449:18;;;14442:61;14520:18;;45579:63:0;14189:355:1;45579:63:0;44991:1;45720:7;:18;55359:10:::1;::::0;::::1;;:18;;:10:::0;:18:::1;:40:::0;::::1;;;;55398:1;55390:5;:9;55359:40;:89;;;;;53433:2;55412:5;:36;;55359:89;:163;;;;-1:-1:-1::0;55503:18:0::1;::::0;55489:9:::1;::::0;:33:::1;::::0;:13:::1;:33::i;:::-;55461:24;55479:5;55461:13;35540:10:::0;:17;;35452:113;55461:13:::1;:17:::0;::::1;:24::i;:::-;:61;;55359:163;:221;;;;-1:-1:-1::0;55552:17:0::1;::::0;:28:::1;::::0;55574:5;55552:21:::1;:28::i;:::-;55539:9;:41;;55359:221;55351:240;;;::::0;::::1;;55602:28;55612:10;55624:5;55602:9;:28::i;:::-;-1:-1:-1::0;44947:1:0;45899:7;:22;55277:361::o;54225:253::-;54298:13;54324:23;54350;54365:7;54350:14;:23::i;:::-;54324:49;;54417:1;54397:9;54391:23;:27;:79;;;;;;;;;;;;;;;;;54445:9;54428:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;54391:79;54384:86;54225:253;-1:-1:-1;;;54225:253:0:o;42860:192::-;42033:6;;-1:-1:-1;;;;;42033:6:0;16264:10;42180:23;42172:68;;;;-1:-1:-1;;;42172:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42949:22:0;::::1;42941:73;;;::::0;-1:-1:-1;;;42941:73:0;;8015:2:1;42941:73:0::1;::::0;::::1;7997:21:1::0;8054:2;8034:18;;;8027:30;8093:34;8073:18;;;8066:62;-1:-1:-1;;;8144:18:1;;;8137:36;8190:19;;42941:73:0::1;7813:402:1::0;42941:73:0::1;43025:19;43035:8;43025:9;:19::i;:::-;42860:192:::0;:::o;34812:224::-;34914:4;-1:-1:-1;;;;;;34938:50:0;;-1:-1:-1;;;34938:50:0;;:90;;;34992:36;35016:11;34992:23;:36::i;30644:174::-;30719:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30719:29:0;-1:-1:-1;;;;;30719:29:0;;;;;;;;:24;;30773:23;30719:24;30773:14;:23::i;:::-;-1:-1:-1;;;;;30764:46:0;;;;;;;;;;;30644:174;;:::o;26956:348::-;27049:4;26751:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26751:16:0;27066:73;;;;-1:-1:-1;;;27066:73:0;;9538:2:1;27066:73:0;;;9520:21:1;9577:2;9557:18;;;9550:30;9616:34;9596:18;;;9589:62;-1:-1:-1;;;9667:18:1;;;9660:42;9719:19;;27066:73:0;9336:408:1;27066:73:0;27150:13;27166:23;27181:7;27166:14;:23::i;:::-;27150:39;;27219:5;-1:-1:-1;;;;;27208:16:0;:7;-1:-1:-1;;;;;27208:16:0;;:51;;;;27252:7;-1:-1:-1;;;;;27228:31:0;:20;27240:7;27228:11;:20::i;:::-;-1:-1:-1;;;;;27228:31:0;;27208:51;:87;;;-1:-1:-1;;;;;;24048:25:0;;;24024:4;24048:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27263:32;27200:96;26956:348;-1:-1:-1;;;;26956:348:0:o;29948:578::-;30107:4;-1:-1:-1;;;;;30080:31:0;:23;30095:7;30080:14;:23::i;:::-;-1:-1:-1;;;;;30080:31:0;;30072:85;;;;-1:-1:-1;;;30072:85:0;;12332:2:1;30072:85:0;;;12314:21:1;12371:2;12351:18;;;12344:30;12410:34;12390:18;;;12383:62;-1:-1:-1;;;12461:18:1;;;12454:39;12510:19;;30072:85:0;12130:405:1;30072:85:0;-1:-1:-1;;;;;30176:16:0;;30168:65;;;;-1:-1:-1;;;30168:65:0;;8779:2:1;30168:65:0;;;8761:21:1;8818:2;8798:18;;;8791:30;8857:34;8837:18;;;8830:62;-1:-1:-1;;;8908:18:1;;;8901:34;8952:19;;30168:65:0;8577:400:1;30168:65:0;30246:39;30267:4;30273:2;30277:7;30246:20;:39::i;:::-;30350:29;30367:1;30371:7;30350:8;:29::i;:::-;-1:-1:-1;;;;;30392:15:0;;;;;;:9;:15;;;;;:20;;30411:1;;30392:15;:20;;30411:1;;30392:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30423:13:0;;;;;;:9;:13;;;;;:18;;30440:1;;30423:13;:18;;30440:1;;30423:18;:::i;:::-;;;;-1:-1:-1;;30452:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30452:21:0;-1:-1:-1;;;;;30452:21:0;;;;;;;;;30491:27;;30452:16;;30491:27;;;;;;;29948:578;;;:::o;43060:173::-;43135:6;;;-1:-1:-1;;;;;43152:17:0;;;-1:-1:-1;;;;;;43152:17:0;;;;;;;43185:40;;43135:6;;;43152:17;43135:6;;43185:40;;43116:16;;43185:40;43105:128;43060:173;:::o;54996:273::-;55084:11;;55061:20;55106:119;55130:5;55126:1;:9;55106:119;;;55157:14;;;;:::i;:::-;;;;55186:27;55196:2;55200:12;55186:9;:27::i;:::-;55137:3;;;;:::i;:::-;;;;55106:119;;;-1:-1:-1;55235:11:0;:26;-1:-1:-1;;54996:273:0:o;26034:315::-;26191:28;26201:4;26207:2;26211:7;26191:9;:28::i;:::-;26238:48;26261:4;26267:2;26271:7;26280:5;26238:22;:48::i;:::-;26230:111;;;;-1:-1:-1;;;26230:111:0;;;;;;;:::i;49113:98::-;49171:7;49198:5;49202:1;49198;:5;:::i;48732:98::-;48790:7;48817:5;48821:1;48817;:5;:::i;49470:98::-;49528:7;49555:5;49559:1;49555;:5;:::i;22053:334::-;26727:4;26751:16;;;:7;:16;;;;;;22126:13;;-1:-1:-1;;;;;26751:16:0;22152:76;;;;-1:-1:-1;;;22152:76:0;;12742:2:1;22152:76:0;;;12724:21:1;12781:2;12761:18;;;12754:30;12820:34;12800:18;;;12793:62;-1:-1:-1;;;12871:18:1;;;12864:45;12926:19;;22152:76:0;12540:411:1;22152:76:0;22241:21;22265:10;:8;:10::i;:::-;22241:34;;22317:1;22299:7;22293:21;:25;:86;;;;;;;;;;;;;;;;;22345:7;22354:18;:7;:16;:18::i;:::-;22328:45;;;;;;;;;:::i;20764:305::-;20866:4;-1:-1:-1;;;;;;20903:40:0;;-1:-1:-1;;;20903:40:0;;:105;;-1:-1:-1;;;;;;;20960:48:0;;-1:-1:-1;;;20960:48:0;20903:105;:158;;;-1:-1:-1;;;;;;;;;;19381:40:0;;;21025:36;19272:157;53775:204;53926:45;53953:4;53959:2;53963:7;53926:26;:45::i;27646:110::-;27722:26;27732:2;27736:7;27722:26;;;;;;;;;;;;:9;:26::i;31383:799::-;31538:4;-1:-1:-1;;;;;31559:13:0;;8547:20;8595:8;31555:620;;31595:72;;-1:-1:-1;;;31595:72:0;;-1:-1:-1;;;;;31595:36:0;;;;;:72;;16264:10;;31646:4;;31652:7;;31661:5;;31595:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31595:72:0;;;;;;;;-1:-1:-1;;31595:72:0;;;;;;;;;;;;:::i;:::-;;;31591:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31837:13:0;;31833:272;;31880:60;;-1:-1:-1;;;31880:60:0;;;;;;;:::i;31833:272::-;32055:6;32049:13;32040:6;32036:2;32032:15;32025:38;31591:529;-1:-1:-1;;;;;;31718:51:0;-1:-1:-1;;;31718:51:0;;-1:-1:-1;31711:58:0;;31555:620;-1:-1:-1;32159:4:0;31383:799;;;;;;:::o;54110:107::-;54162:13;54195:14;54188:21;;;;;:::i;16713:723::-;16769:13;16990:10;16986:53;;-1:-1:-1;;17017:10:0;;;;;;;;;;;;-1:-1:-1;;;17017:10:0;;;;;16713:723::o;16986:53::-;17064:5;17049:12;17105:78;17112:9;;17105:78;;17138:8;;;;:::i;:::-;;-1:-1:-1;17161:10:0;;-1:-1:-1;17169:2:0;17161:10;;:::i;:::-;;;17105:78;;;17193:19;17225:6;17215:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17215:17:0;;17193:39;;17243:154;17250:10;;17243:154;;17277:11;17287:1;17277:11;;:::i;:::-;;-1:-1:-1;17346:10:0;17354:2;17346:5;:10;:::i;:::-;17333:24;;:2;:24;:::i;:::-;17320:39;;17303:6;17310;17303:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17303:56:0;;;;;;;;-1:-1:-1;17374:11:0;17383:2;17374:11;;:::i;:::-;;;17243:154;;36488:589;-1:-1:-1;;;;;36694:18:0;;36690:187;;36729:40;36761:7;37904:10;:17;;37877:24;;;;:15;:24;;;;;:44;;;37932:24;;;;;;;;;;;;37800:164;36729:40;36690:187;;;36799:2;-1:-1:-1;;;;;36791:10:0;:4;-1:-1:-1;;;;;36791:10:0;;36787:90;;36818:47;36851:4;36857:7;36818:32;:47::i;:::-;-1:-1:-1;;;;;36891:16:0;;36887:183;;36924:45;36961:7;36924:36;:45::i;36887:183::-;36997:4;-1:-1:-1;;;;;36991:10:0;:2;-1:-1:-1;;;;;36991:10:0;;36987:83;;37018:40;37046:2;37050:7;37018:27;:40::i;27983:321::-;28113:18;28119:2;28123:7;28113:5;:18::i;:::-;28164:54;28195:1;28199:2;28203:7;28212:5;28164:22;:54::i;:::-;28142:154;;;;-1:-1:-1;;;28142:154:0;;;;;;;:::i;38591:988::-;38857:22;38907:1;38882:22;38899:4;38882:16;:22::i;:::-;:26;;;;:::i;:::-;38919:18;38940:26;;;:17;:26;;;;;;38857:51;;-1:-1:-1;39073:28:0;;;39069:328;;-1:-1:-1;;;;;39140:18:0;;39118:19;39140:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39191:30;;;;;;:44;;;39308:30;;:17;:30;;;;;:43;;;39069:328;-1:-1:-1;39493:26:0;;;;:17;:26;;;;;;;;39486:33;;;-1:-1:-1;;;;;39537:18:0;;;;;:12;:18;;;;;:34;;;;;;;39530:41;38591:988::o;39874:1079::-;40152:10;:17;40127:22;;40152:21;;40172:1;;40152:21;:::i;:::-;40184:18;40205:24;;;:15;:24;;;;;;40578:10;:26;;40127:46;;-1:-1:-1;40205:24:0;;40127:46;;40578:26;;;;;;:::i;:::-;;;;;;;;;40556:48;;40642:11;40617:10;40628;40617:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40722:28;;;:15;:28;;;;;;;:41;;;40894:24;;;;;40887:31;40929:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39945:1008;;;39874:1079;:::o;37378:221::-;37463:14;37480:20;37497:2;37480:16;:20::i;:::-;-1:-1:-1;;;;;37511:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37556:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37378:221:0:o;28640:382::-;-1:-1:-1;;;;;28720:16:0;;28712:61;;;;-1:-1:-1;;;28712:61:0;;11197:2:1;28712:61:0;;;11179:21:1;;;11216:18;;;11209:30;11275:34;11255:18;;;11248:62;11327:18;;28712:61:0;10995:356:1;28712:61:0;26727:4;26751:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26751:16:0;:30;28784:58;;;;-1:-1:-1;;;28784:58:0;;8422:2:1;28784:58:0;;;8404:21:1;8461:2;8441:18;;;8434:30;8500;8480:18;;;8473:58;8548:18;;28784:58:0;8220:352:1;28784:58:0;28855:45;28884:1;28888:2;28892:7;28855:20;:45::i;:::-;-1:-1:-1;;;;;28913:13:0;;;;;;:9;:13;;;;;:18;;28930:1;;28913:13;:18;;28930:1;;28913:18;:::i;:::-;;;;-1:-1:-1;;28942:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28942:21:0;-1:-1:-1;;;;;28942:21:0;;;;;;;;28981:33;;28942:16;;;28981:33;;28942:16;;28981:33;28640:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4780:443::-;5012:3;5050:6;5044:13;5066:53;5112:6;5107:3;5100:4;5092:6;5088:17;5066:53;:::i;:::-;-1:-1:-1;;;5141:16:1;;5166:22;;;-1:-1:-1;5215:1:1;5204:13;;4780:443;-1:-1:-1;4780:443:1:o;5436:488::-;-1:-1:-1;;;;;5705:15:1;;;5687:34;;5757:15;;5752:2;5737:18;;5730:43;5804:2;5789:18;;5782:34;;;5852:3;5847:2;5832:18;;5825:31;;;5630:4;;5873:45;;5898:19;;5890:6;5873:45;:::i;:::-;5865:53;5436:488;-1:-1:-1;;;;;;5436:488:1:o;5929:632::-;6100:2;6152:21;;;6222:13;;6125:18;;;6244:22;;;6071:4;;6100:2;6323:15;;;;6297:2;6282:18;;;6071:4;6366:169;6380:6;6377:1;6374:13;6366:169;;;6441:13;;6429:26;;6510:15;;;;6475:12;;;;6402:1;6395:9;6366:169;;;-1:-1:-1;6552:3:1;;5929:632;-1:-1:-1;;;;;;5929:632:1:o;6758:219::-;6907:2;6896:9;6889:21;6870:4;6927:44;6967:2;6956:9;6952:18;6944:6;6927:44;:::i;7394:414::-;7596:2;7578:21;;;7635:2;7615:18;;;7608:30;7674:34;7669:2;7654:18;;7647:62;-1:-1:-1;;;7740:2:1;7725:18;;7718:48;7798:3;7783:19;;7394:414::o;11769:356::-;11971:2;11953:21;;;11990:18;;;11983:30;12049:34;12044:2;12029:18;;12022:62;12116:2;12101:18;;11769:356::o;13358:413::-;13560:2;13542:21;;;13599:2;13579:18;;;13572:30;13638:34;13633:2;13618:18;;13611:62;-1:-1:-1;;;13704:2:1;13689:18;;13682:47;13761:3;13746:19;;13358:413::o;14731:128::-;14771:3;14802:1;14798:6;14795:1;14792:13;14789:39;;;14808:18;;:::i;:::-;-1:-1:-1;14844:9:1;;14731:128::o;14864:120::-;14904:1;14930;14920:35;;14935:18;;:::i;:::-;-1:-1:-1;14969:9:1;;14864:120::o;14989:168::-;15029:7;15095:1;15091;15087:6;15083:14;15080:1;15077:21;15072:1;15065:9;15058:17;15054:45;15051:71;;;15102:18;;:::i;:::-;-1:-1:-1;15142:9:1;;14989:168::o;15162:125::-;15202:4;15230:1;15227;15224:8;15221:34;;;15235:18;;:::i;:::-;-1:-1:-1;15272:9:1;;15162:125::o;15292:258::-;15364:1;15374:113;15388:6;15385:1;15382:13;15374:113;;;15464:11;;;15458:18;15445:11;;;15438:39;15410:2;15403:10;15374:113;;;15505:6;15502:1;15499:13;15496:48;;;-1:-1:-1;;15540:1:1;15522:16;;15515:27;15292:258::o;15555:380::-;15634:1;15630:12;;;;15677;;;15698:61;;15752:4;15744:6;15740:17;15730:27;;15698:61;15805:2;15797:6;15794:14;15774:18;15771:38;15768:161;;;15851:10;15846:3;15842:20;15839:1;15832:31;15886:4;15883:1;15876:15;15914:4;15911:1;15904:15;15940:135;15979:3;-1:-1:-1;;16000:17:1;;15997:43;;;16020:18;;:::i;:::-;-1:-1:-1;16067:1:1;16056:13;;15940:135::o;16080:112::-;16112:1;16138;16128:35;;16143:18;;:::i;:::-;-1:-1:-1;16177:9:1;;16080:112::o;16197:127::-;16258:10;16253:3;16249:20;16246:1;16239:31;16289:4;16286:1;16279:15;16313:4;16310:1;16303:15;16329:127;16390:10;16385:3;16381:20;16378:1;16371:31;16421:4;16418:1;16411:15;16445:4;16442:1;16435:15;16461:127;16522:10;16517:3;16513:20;16510:1;16503:31;16553:4;16550:1;16543:15;16577:4;16574:1;16567:15;16593:127;16654:10;16649:3;16645:20;16642:1;16635:31;16685:4;16682:1;16675:15;16709:4;16706:1;16699:15;16725:127;16786:10;16781:3;16777:20;16774:1;16767:31;16817:4;16814:1;16807:15;16841:4;16838:1;16831:15;16857:131;-1:-1:-1;;;;;;16931:32:1;;16921:43;;16911:71;;16978:1;16975;16968:12

Swarm Source

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