ETH Price: $3,277.61 (+0.38%)
Gas: 16 Gwei

Token

DoodShib (DOOD)
 

Overview

Max Total Supply

616 DOOD

Holders

206

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
913.eth
Balance
3 DOOD
0x65654ef196d92ff739a4de49a133887002a08df2
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:
DoodShib

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

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

/**
 * @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]

/**
 * @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 whiteed 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 whiteed 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]

/**
 * @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]

/**
 * @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]

/**
 * @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]

/**
 * @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]

/**
 * @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]

/**
 * @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]

/**
 * @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 whiteed 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]

/**
 * @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]


/**
 * @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 whites 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/utils/math/[email protected]


// 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 @openzeppelin/contracts/access/[email protected]

/**
 * @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);
    }
}


contract DoodShib is ERC721("DoodShib", "DOOD"), ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    string private baseURI;
    string private blindURI;
    uint256 public constant MAX_PUBLIC_ONE_WALLET = 10;
    uint256 public constant MAX_FREE_MINT = 900;
    uint256 public constant MAX_NFT_PUBLIC = 6962;
    uint256 private constant MAX_NFT = 6969;
    uint256 public  price = 35000000000000000;  // 0.035 ETH
    bool public reveal;
    bool public isActive;

    uint256 public freeMintCount;
    mapping(address => uint256) private userMinted;



    /*
     * Function to reveal all NFTs
    */
    function revealNow() 
        external 
        onlyOwner 
    {
        reveal = true;
    }
    
    
    /*
     * Function setIsActive to activate/desactivate the smart contract
    */
    function setIsActive(
        bool _isActive
    ) 
        external 
        onlyOwner 
    {
        isActive = _isActive;
    }
    
    /*
     * Function to set Base and Blind URI 
    */
    function setURIs(
        string memory _blindURI, 
        string memory _URI
    ) 
        external 
        onlyOwner 
    {
        blindURI = _blindURI;
        baseURI = _URI;
    }
    
    /*
     * Function to withdraw collected amount during minting by the owner
    */

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
    

    /*
     * Function to mint new NFTs during the public sale
     * It is payable. Amount is calculated as per (price.mul(_numOfTokens))
    */
    function mint(
        uint256 _numOfTokens
    )
        public
        payable
    {
        require(isActive, "Contract is not active");
        require(_numOfTokens.add(userMinted[msg.sender]) <= MAX_PUBLIC_ONE_WALLET, "Cannot mint about max limit");
        require(totalSupply().add(_numOfTokens) <= MAX_NFT_PUBLIC, "Purchase would exceed max public supply of NFTs");
        require(price.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");

        uint256 feeBack = 0;
        for (uint i = 0; i < _numOfTokens; i++) {
            userMinted[msg.sender] += 1;
            _safeMint(msg.sender, totalSupply().add(1));

            uint ran = random(totalSupply().add(i));
            if (ran == 1 && freeMintCount <= 900) {
                freeMintCount = freeMintCount.add(1);
                feeBack = feeBack.add(price);
            }
        }

        if (feeBack > 0) {
            payable(msg.sender).transfer(feeBack);
        }

    }

    function random(
        uint256 salt
    ) 
        public view returns (uint) 
    {
        return uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp, salt))) % 2;
    }

    
    /*
     * Function to mint NFTs for giveaway and partnerships
    */
    function mintByOwner(
        address _to, 
        uint256 _tokenId
    )
        public 
        onlyOwner
    {
        require(_tokenId <= MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
        _safeMint(_to, _tokenId);
    }
    
    /*
     * Function to mint all NFTs for giveaway and partnerships
    */
    function mintMultipleByOwner(
        address[] memory _to, 
        uint256[] memory _tokenId
    )
        public
        onlyOwner
    {
        require(_to.length == _tokenId.length, "Should have same length");
        for(uint256 i = 0; i < _to.length; i++){
            require(_tokenId[i] > MAX_NFT_PUBLIC, "Tokens number to mint must exceed number of public tokens");
            require(_tokenId[i] <= MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
            _safeMint(_to[i], _tokenId[i]);
        }
    }

    /*
     * Function to get token URI of given token ID
     * URI will be blank untill totalSupply reaches MAX_NFT_PUBLIC
    */
    function tokenURI(
        uint256 _tokenId
    )
        public 
        view 
        virtual 
        override 
        returns (string memory) 
    {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        uint256 blindId = _tokenId % 7;
        if (!reveal) {
            if (blindId == 0) {
                blindId = 7;
            }
            return string(abi.encodePacked(blindURI, abi.encodePacked(blindId.toString(), ".json")));
        } else {
            return string(abi.encodePacked(baseURI, abi.encodePacked(_tokenId.toString(), ".json")));
        }
    }
    
    function supportsInterface(
        bytes4 _interfaceId
    ) 
        public
        view 
        override (ERC721, ERC721Enumerable) 
        returns (bool) 
    {
        return super.supportsInterface(_interfaceId);
    }

    // Standard functions to be overridden 
    function _beforeTokenTransfer(
        address _from, 
        address _to, 
        uint256 _tokenId
    ) 
        internal 
        override(ERC721, ERC721Enumerable) 
    {
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }

}

Contract Security Audit

Contract ABI

[{"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_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_ONE_WALLET","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":"freeMintCount","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":"isActive","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":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"}],"name":"mintMultipleByOwner","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"salt","type":"uint256"}],"name":"random","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_blindURI","type":"string"},{"internalType":"string","name":"_URI","type":"string"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052667c585087238000600d553480156200001c57600080fd5b5060408051808201825260088152672237b7b229b434b160c11b6020808301918252835180850190945260048452631113d3d160e21b9084015281519192916200006991600091620000f8565b5080516200007f906001906020840190620000f8565b5050506200009c62000096620000a260201b60201c565b620000a6565b620001db565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000106906200019e565b90600052602060002090601f0160209004810192826200012a576000855562000175565b82601f106200014557805160ff191683800117855562000175565b8280016001018555821562000175579182015b828111156200017557825182559160200191906001019062000158565b506200018392915062000187565b5090565b5b8082111562000183576000815560010162000188565b600181811c90821680620001b357607f821691505b60208210811415620001d557634e487b7160e01b600052602260045260246000fd5b50919050565b61273c80620001eb6000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063b88d4fde116100a0578063e55f58bb1161006f578063e55f58bb1461056e578063e825417414610584578063e985e9c5146105a4578063f2fde38b146105ed578063f58a5baf1461060d57600080fd5b8063b88d4fde146104f8578063c151a5f814610518578063c87b56dd14610538578063d1d80f301461055857600080fd5b8063a0712d68116100dc578063a0712d681461048b578063a22cb4651461049e578063a475b5dd146104be578063b863bd37146104d857600080fd5b8063715018a61461042d5780638da5cb5b1461044257806395d89b4114610460578063a035b1fe1461047557600080fd5b80632f745c591161019057806342842e0e1161015f57806342842e0e146103985780634f6ccce7146103b85780635f0f45b2146103d85780636352211e146103ed57806370a082311461040d57600080fd5b80632f745c591461032d5780633542aee21461034d5780633ccfd60b1461036d57806341cda2031461038257600080fd5b806318160ddd116101cc57806318160ddd146102af57806322f3e2d4146102ce57806323b872dd146102ed5780632750fc781461030d57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004612224565b610622565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610633565b60405161022a919061241f565b34801561026157600080fd5b506102756102703660046122b3565b6106c5565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004612120565b61075f565b005b3480156102bb57600080fd5b506008545b60405190815260200161022a565b3480156102da57600080fd5b50600e5461021e90610100900460ff1681565b3480156102f957600080fd5b506102ad610308366004612043565b610875565b34801561031957600080fd5b506102ad61032836600461220a565b6108a6565b34801561033957600080fd5b506102c0610348366004612120565b6108ea565b34801561035957600080fd5b506102ad610368366004612120565b610980565b34801561037957600080fd5b506102ad6109da565b34801561038e57600080fd5b506102c061038481565b3480156103a457600080fd5b506102ad6103b3366004612043565b610a33565b3480156103c457600080fd5b506102c06103d33660046122b3565b610a4e565b3480156103e457600080fd5b506102ad610aef565b3480156103f957600080fd5b506102756104083660046122b3565b610b28565b34801561041957600080fd5b506102c0610428366004611ff7565b610b9f565b34801561043957600080fd5b506102ad610c26565b34801561044e57600080fd5b50600a546001600160a01b0316610275565b34801561046c57600080fd5b50610248610c5c565b34801561048157600080fd5b506102c0600d5481565b6102ad6104993660046122b3565b610c6b565b3480156104aa57600080fd5b506102ad6104b93660046120f7565b610ede565b3480156104ca57600080fd5b50600e5461021e9060ff1681565b3480156104e457600080fd5b506102c06104f33660046122b3565b610fa3565b34801561050457600080fd5b506102ad61051336600461207e565b610fe8565b34801561052457600080fd5b506102ad610533366004612149565b611020565b34801561054457600080fd5b506102486105533660046122b3565b6111f8565b34801561056457600080fd5b506102c0611b3281565b34801561057a57600080fd5b506102c0600f5481565b34801561059057600080fd5b506102ad61059f36600461225c565b6112fb565b3480156105b057600080fd5b5061021e6105bf366004612011565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105f957600080fd5b506102ad610608366004611ff7565b61134c565b34801561061957600080fd5b506102c0600a81565b600061062d826113e4565b92915050565b6060600080546106429061264a565b80601f016020809104026020016040519081016040528092919081815260200182805461066e9061264a565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076a82610b28565b9050806001600160a01b0316836001600160a01b031614156107d85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073a565b336001600160a01b03821614806107f457506107f481336105bf565b6108665760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073a565b6108708383611409565b505050565b61087f3382611477565b61089b5760405162461bcd60e51b815260040161073a90612516565b61087083838361156e565b600a546001600160a01b031633146108d05760405162461bcd60e51b815260040161073a906124e1565b600e80549115156101000261ff0019909216919091179055565b60006108f583610b9f565b82106109575760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161073a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109aa5760405162461bcd60e51b815260040161073a906124e1565b611b398111156109cc5760405162461bcd60e51b815260040161073a90612484565b6109d68282611719565b5050565b600a546001600160a01b03163314610a045760405162461bcd60e51b815260040161073a906124e1565b60405133904780156108fc02916000818181858888f19350505050158015610a30573d6000803e3d6000fd5b50565b61087083838360405180602001604052806000815250610fe8565b6000610a5960085490565b8210610abc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161073a565b60088281548110610add57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610b195760405162461bcd60e51b815260040161073a906124e1565b600e805460ff19166001179055565b6000818152600260205260408120546001600160a01b03168061062d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161073a565b60006001600160a01b038216610c0a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c505760405162461bcd60e51b815260040161073a906124e1565b610c5a6000611733565b565b6060600180546106429061264a565b600e54610100900460ff16610cbb5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161073a565b33600090815260106020526040902054600a90610cd9908390611785565b1115610d275760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206d696e742061626f7574206d6178206c696d69740000000000604482015260640161073a565b611b32610d3d82610d3760085490565b90611785565b1115610da35760405162461bcd60e51b815260206004820152602f60248201527f507572636861736520776f756c6420657863656564206d6178207075626c696360448201526e20737570706c79206f66204e46547360881b606482015260840161073a565b600d543490610db29083611798565b14610dff5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161073a565b6000805b82811015610eaa57336000908152601060205260408120805460019290610e2b9084906125bc565b90915550610e48905033610e436001610d3760085490565b611719565b6000610e5a6104f383610d3760085490565b9050806001148015610e705750610384600f5411155b15610e9757600f54610e83906001611785565b600f55600d54610e94908490611785565b92505b5080610ea28161267f565b915050610e03565b5080156109d657604051339082156108fc029083906000818181858888f19350505050158015610870573d6000803e3d6000fd5b6001600160a01b038216331415610f375760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b604080514460208201524291810191909152606081018290526000906002906080016040516020818303038152906040528051906020012060001c61062d919061269a565b610ff23383611477565b61100e5760405162461bcd60e51b815260040161073a90612516565b61101a848484846117a4565b50505050565b600a546001600160a01b0316331461104a5760405162461bcd60e51b815260040161073a906124e1565b805182511461109b5760405162461bcd60e51b815260206004820152601760248201527f53686f756c6420686176652073616d65206c656e677468000000000000000000604482015260640161073a565b60005b825181101561087057611b328282815181106110ca57634e487b7160e01b600052603260045260246000fd5b6020026020010151116111455760405162461bcd60e51b815260206004820152603960248201527f546f6b656e73206e756d62657220746f206d696e74206d75737420657863656560448201527f64206e756d626572206f66207075626c696320746f6b656e7300000000000000606482015260840161073a565b611b3982828151811061116857634e487b7160e01b600052603260045260246000fd5b6020026020010151111561118e5760405162461bcd60e51b815260040161073a90612484565b6111e68382815181106111b157634e487b7160e01b600052603260045260246000fd5b60200260200101518383815181106111d957634e487b7160e01b600052603260045260246000fd5b6020026020010151611719565b806111f08161267f565b91505061109e565b6000818152600260205260409020546060906001600160a01b03166112775760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073a565b600061128460078461269a565b600e5490915060ff166112ea578061129a575060075b600c6112a5826117d7565b6040516020016112b59190612313565b60408051601f19818403018152908290526112d3929160200161233c565b604051602081830303815290604052915050919050565b600b6112a5846117d7565b50919050565b600a546001600160a01b031633146113255760405162461bcd60e51b815260040161073a906124e1565b815161133890600c906020850190611e4c565b50805161087090600b906020840190611e4c565b600a546001600160a01b031633146113765760405162461bcd60e51b815260040161073a906124e1565b6001600160a01b0381166113db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073a565b610a3081611733565b60006001600160e01b0319821663780e9d6360e01b148061062d575061062d826118f1565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061143e82610b28565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114f05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073a565b60006114fb83610b28565b9050806001600160a01b0316846001600160a01b031614806115365750836001600160a01b031661152b846106c5565b6001600160a01b0316145b8061156657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661158182610b28565b6001600160a01b0316146115e95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073a565b6001600160a01b03821661164b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073a565b611656838383611941565b611661600082611409565b6001600160a01b038316600090815260036020526040812080546001929061168a908490612607565b90915550506001600160a01b03821660009081526003602052604081208054600192906116b89084906125bc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109d682826040518060200160405280600081525061194c565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061179182846125bc565b9392505050565b600061179182846125e8565b6117af84848461156e565b6117bb8484848461197f565b61101a5760405162461bcd60e51b815260040161073a90612432565b6060816117fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611825578061180f8161267f565b915061181e9050600a836125d4565b91506117ff565b60008167ffffffffffffffff81111561184e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611878576020820181803683370190505b5090505b84156115665761188d600183612607565b915061189a600a8661269a565b6118a59060306125bc565b60f81b8183815181106118c857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506118ea600a866125d4565b945061187c565b60006001600160e01b031982166380ac58cd60e01b148061192257506001600160e01b03198216635b5e139f60e01b145b8061062d57506301ffc9a760e01b6001600160e01b031983161461062d565b610870838383611a8c565b6119568383611b44565b611963600084848461197f565b6108705760405162461bcd60e51b815260040161073a90612432565b60006001600160a01b0384163b15611a8157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119c39033908990889088906004016123e2565b602060405180830381600087803b1580156119dd57600080fd5b505af1925050508015611a0d575060408051601f3d908101601f19168201909252611a0a91810190612240565b60015b611a67573d808015611a3b576040519150601f19603f3d011682016040523d82523d6000602084013e611a40565b606091505b508051611a5f5760405162461bcd60e51b815260040161073a90612432565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611566565b506001949350505050565b6001600160a01b038316611ae757611ae281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b0a565b816001600160a01b0316836001600160a01b031614611b0a57611b0a8382611c92565b6001600160a01b038216611b215761087081611d2f565b826001600160a01b0316826001600160a01b031614610870576108708282611e08565b6001600160a01b038216611b9a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073a565b6000818152600260205260409020546001600160a01b031615611bff5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073a565b611c0b60008383611941565b6001600160a01b0382166000908152600360205260408120805460019290611c349084906125bc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611c9f84610b9f565b611ca99190612607565b600083815260076020526040902054909150808214611cfc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d4190600190612607565b60008381526009602052604081205460088054939450909284908110611d7757634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611da657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dec57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611e1383610b9f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611e589061264a565b90600052602060002090601f016020900481019282611e7a5760008555611ec0565b82601f10611e9357805160ff1916838001178555611ec0565b82800160010185558215611ec0579182015b82811115611ec0578251825591602001919060010190611ea5565b50611ecc929150611ed0565b5090565b5b80821115611ecc5760008155600101611ed1565b600067ffffffffffffffff831115611eff57611eff6126da565b611f12601f8401601f1916602001612567565b9050828152838383011115611f2657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f5457600080fd5b919050565b600082601f830112611f69578081fd5b81356020611f7e611f7983612598565b612567565b80838252828201915082860187848660051b8901011115611f9d578586fd5b855b85811015611fbb57813584529284019290840190600101611f9f565b5090979650505050505050565b80358015158114611f5457600080fd5b600082601f830112611fe8578081fd5b61179183833560208501611ee5565b600060208284031215612008578081fd5b61179182611f3d565b60008060408385031215612023578081fd5b61202c83611f3d565b915061203a60208401611f3d565b90509250929050565b600080600060608486031215612057578081fd5b61206084611f3d565b925061206e60208501611f3d565b9150604084013590509250925092565b60008060008060808587031215612093578081fd5b61209c85611f3d565b93506120aa60208601611f3d565b925060408501359150606085013567ffffffffffffffff8111156120cc578182fd5b8501601f810187136120dc578182fd5b6120eb87823560208401611ee5565b91505092959194509250565b60008060408385031215612109578182fd5b61211283611f3d565b915061203a60208401611fc8565b60008060408385031215612132578182fd5b61213b83611f3d565b946020939093013593505050565b6000806040838503121561215b578182fd5b823567ffffffffffffffff80821115612172578384fd5b818501915085601f830112612185578384fd5b81356020612195611f7983612598565b8083825282820191508286018a848660051b89010111156121b4578889fd5b8896505b848710156121dd576121c981611f3d565b8352600196909601959183019183016121b8565b50965050860135925050808211156121f3578283fd5b5061220085828601611f59565b9150509250929050565b60006020828403121561221b578081fd5b61179182611fc8565b600060208284031215612235578081fd5b8135611791816126f0565b600060208284031215612251578081fd5b8151611791816126f0565b6000806040838503121561226e578182fd5b823567ffffffffffffffff80821115612285578384fd5b61229186838701611fd8565b935060208501359150808211156122a6578283fd5b5061220085828601611fd8565b6000602082840312156122c4578081fd5b5035919050565b600081518084526122e381602086016020860161261e565b601f01601f19169290920160200192915050565b6000815161230981856020860161261e565b9290920192915050565b6000825161232581846020870161261e565b64173539b7b760d91b920191825250600501919050565b600080845482600182811c91508083168061235857607f831692505b602080841082141561237857634e487b7160e01b87526022600452602487fd5b81801561238c576001811461239d576123c9565b60ff198616895284890196506123c9565b60008b815260209020885b868110156123c15781548b8201529085019083016123a8565b505084890196505b5050505050506123d981856122f7565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612415908301846122cb565b9695505050505050565b60208152600061179160208301846122cb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612590576125906126da565b604052919050565b600067ffffffffffffffff8211156125b2576125b26126da565b5060051b60200190565b600082198211156125cf576125cf6126ae565b500190565b6000826125e3576125e36126c4565b500490565b6000816000190483118215151615612602576126026126ae565b500290565b600082821015612619576126196126ae565b500390565b60005b83811015612639578181015183820152602001612621565b8381111561101a5750506000910152565b600181811c9082168061265e57607f821691505b602082108114156112f557634e487b7160e01b600052602260045260246000fd5b6000600019821415612693576126936126ae565b5060010190565b6000826126a9576126a96126c4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a3057600080fdfea2646970667358221220865bb7772e987c14d1dbf92747cad7f7ff87edb8031558ee0223d28eeeeeface64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063b88d4fde116100a0578063e55f58bb1161006f578063e55f58bb1461056e578063e825417414610584578063e985e9c5146105a4578063f2fde38b146105ed578063f58a5baf1461060d57600080fd5b8063b88d4fde146104f8578063c151a5f814610518578063c87b56dd14610538578063d1d80f301461055857600080fd5b8063a0712d68116100dc578063a0712d681461048b578063a22cb4651461049e578063a475b5dd146104be578063b863bd37146104d857600080fd5b8063715018a61461042d5780638da5cb5b1461044257806395d89b4114610460578063a035b1fe1461047557600080fd5b80632f745c591161019057806342842e0e1161015f57806342842e0e146103985780634f6ccce7146103b85780635f0f45b2146103d85780636352211e146103ed57806370a082311461040d57600080fd5b80632f745c591461032d5780633542aee21461034d5780633ccfd60b1461036d57806341cda2031461038257600080fd5b806318160ddd116101cc57806318160ddd146102af57806322f3e2d4146102ce57806323b872dd146102ed5780632750fc781461030d57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004612224565b610622565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610633565b60405161022a919061241f565b34801561026157600080fd5b506102756102703660046122b3565b6106c5565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004612120565b61075f565b005b3480156102bb57600080fd5b506008545b60405190815260200161022a565b3480156102da57600080fd5b50600e5461021e90610100900460ff1681565b3480156102f957600080fd5b506102ad610308366004612043565b610875565b34801561031957600080fd5b506102ad61032836600461220a565b6108a6565b34801561033957600080fd5b506102c0610348366004612120565b6108ea565b34801561035957600080fd5b506102ad610368366004612120565b610980565b34801561037957600080fd5b506102ad6109da565b34801561038e57600080fd5b506102c061038481565b3480156103a457600080fd5b506102ad6103b3366004612043565b610a33565b3480156103c457600080fd5b506102c06103d33660046122b3565b610a4e565b3480156103e457600080fd5b506102ad610aef565b3480156103f957600080fd5b506102756104083660046122b3565b610b28565b34801561041957600080fd5b506102c0610428366004611ff7565b610b9f565b34801561043957600080fd5b506102ad610c26565b34801561044e57600080fd5b50600a546001600160a01b0316610275565b34801561046c57600080fd5b50610248610c5c565b34801561048157600080fd5b506102c0600d5481565b6102ad6104993660046122b3565b610c6b565b3480156104aa57600080fd5b506102ad6104b93660046120f7565b610ede565b3480156104ca57600080fd5b50600e5461021e9060ff1681565b3480156104e457600080fd5b506102c06104f33660046122b3565b610fa3565b34801561050457600080fd5b506102ad61051336600461207e565b610fe8565b34801561052457600080fd5b506102ad610533366004612149565b611020565b34801561054457600080fd5b506102486105533660046122b3565b6111f8565b34801561056457600080fd5b506102c0611b3281565b34801561057a57600080fd5b506102c0600f5481565b34801561059057600080fd5b506102ad61059f36600461225c565b6112fb565b3480156105b057600080fd5b5061021e6105bf366004612011565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105f957600080fd5b506102ad610608366004611ff7565b61134c565b34801561061957600080fd5b506102c0600a81565b600061062d826113e4565b92915050565b6060600080546106429061264a565b80601f016020809104026020016040519081016040528092919081815260200182805461066e9061264a565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076a82610b28565b9050806001600160a01b0316836001600160a01b031614156107d85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073a565b336001600160a01b03821614806107f457506107f481336105bf565b6108665760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073a565b6108708383611409565b505050565b61087f3382611477565b61089b5760405162461bcd60e51b815260040161073a90612516565b61087083838361156e565b600a546001600160a01b031633146108d05760405162461bcd60e51b815260040161073a906124e1565b600e80549115156101000261ff0019909216919091179055565b60006108f583610b9f565b82106109575760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161073a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109aa5760405162461bcd60e51b815260040161073a906124e1565b611b398111156109cc5760405162461bcd60e51b815260040161073a90612484565b6109d68282611719565b5050565b600a546001600160a01b03163314610a045760405162461bcd60e51b815260040161073a906124e1565b60405133904780156108fc02916000818181858888f19350505050158015610a30573d6000803e3d6000fd5b50565b61087083838360405180602001604052806000815250610fe8565b6000610a5960085490565b8210610abc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161073a565b60088281548110610add57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610b195760405162461bcd60e51b815260040161073a906124e1565b600e805460ff19166001179055565b6000818152600260205260408120546001600160a01b03168061062d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161073a565b60006001600160a01b038216610c0a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c505760405162461bcd60e51b815260040161073a906124e1565b610c5a6000611733565b565b6060600180546106429061264a565b600e54610100900460ff16610cbb5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161073a565b33600090815260106020526040902054600a90610cd9908390611785565b1115610d275760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206d696e742061626f7574206d6178206c696d69740000000000604482015260640161073a565b611b32610d3d82610d3760085490565b90611785565b1115610da35760405162461bcd60e51b815260206004820152602f60248201527f507572636861736520776f756c6420657863656564206d6178207075626c696360448201526e20737570706c79206f66204e46547360881b606482015260840161073a565b600d543490610db29083611798565b14610dff5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161073a565b6000805b82811015610eaa57336000908152601060205260408120805460019290610e2b9084906125bc565b90915550610e48905033610e436001610d3760085490565b611719565b6000610e5a6104f383610d3760085490565b9050806001148015610e705750610384600f5411155b15610e9757600f54610e83906001611785565b600f55600d54610e94908490611785565b92505b5080610ea28161267f565b915050610e03565b5080156109d657604051339082156108fc029083906000818181858888f19350505050158015610870573d6000803e3d6000fd5b6001600160a01b038216331415610f375760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b604080514460208201524291810191909152606081018290526000906002906080016040516020818303038152906040528051906020012060001c61062d919061269a565b610ff23383611477565b61100e5760405162461bcd60e51b815260040161073a90612516565b61101a848484846117a4565b50505050565b600a546001600160a01b0316331461104a5760405162461bcd60e51b815260040161073a906124e1565b805182511461109b5760405162461bcd60e51b815260206004820152601760248201527f53686f756c6420686176652073616d65206c656e677468000000000000000000604482015260640161073a565b60005b825181101561087057611b328282815181106110ca57634e487b7160e01b600052603260045260246000fd5b6020026020010151116111455760405162461bcd60e51b815260206004820152603960248201527f546f6b656e73206e756d62657220746f206d696e74206d75737420657863656560448201527f64206e756d626572206f66207075626c696320746f6b656e7300000000000000606482015260840161073a565b611b3982828151811061116857634e487b7160e01b600052603260045260246000fd5b6020026020010151111561118e5760405162461bcd60e51b815260040161073a90612484565b6111e68382815181106111b157634e487b7160e01b600052603260045260246000fd5b60200260200101518383815181106111d957634e487b7160e01b600052603260045260246000fd5b6020026020010151611719565b806111f08161267f565b91505061109e565b6000818152600260205260409020546060906001600160a01b03166112775760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073a565b600061128460078461269a565b600e5490915060ff166112ea578061129a575060075b600c6112a5826117d7565b6040516020016112b59190612313565b60408051601f19818403018152908290526112d3929160200161233c565b604051602081830303815290604052915050919050565b600b6112a5846117d7565b50919050565b600a546001600160a01b031633146113255760405162461bcd60e51b815260040161073a906124e1565b815161133890600c906020850190611e4c565b50805161087090600b906020840190611e4c565b600a546001600160a01b031633146113765760405162461bcd60e51b815260040161073a906124e1565b6001600160a01b0381166113db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073a565b610a3081611733565b60006001600160e01b0319821663780e9d6360e01b148061062d575061062d826118f1565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061143e82610b28565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114f05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073a565b60006114fb83610b28565b9050806001600160a01b0316846001600160a01b031614806115365750836001600160a01b031661152b846106c5565b6001600160a01b0316145b8061156657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661158182610b28565b6001600160a01b0316146115e95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073a565b6001600160a01b03821661164b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073a565b611656838383611941565b611661600082611409565b6001600160a01b038316600090815260036020526040812080546001929061168a908490612607565b90915550506001600160a01b03821660009081526003602052604081208054600192906116b89084906125bc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109d682826040518060200160405280600081525061194c565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061179182846125bc565b9392505050565b600061179182846125e8565b6117af84848461156e565b6117bb8484848461197f565b61101a5760405162461bcd60e51b815260040161073a90612432565b6060816117fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611825578061180f8161267f565b915061181e9050600a836125d4565b91506117ff565b60008167ffffffffffffffff81111561184e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611878576020820181803683370190505b5090505b84156115665761188d600183612607565b915061189a600a8661269a565b6118a59060306125bc565b60f81b8183815181106118c857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506118ea600a866125d4565b945061187c565b60006001600160e01b031982166380ac58cd60e01b148061192257506001600160e01b03198216635b5e139f60e01b145b8061062d57506301ffc9a760e01b6001600160e01b031983161461062d565b610870838383611a8c565b6119568383611b44565b611963600084848461197f565b6108705760405162461bcd60e51b815260040161073a90612432565b60006001600160a01b0384163b15611a8157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119c39033908990889088906004016123e2565b602060405180830381600087803b1580156119dd57600080fd5b505af1925050508015611a0d575060408051601f3d908101601f19168201909252611a0a91810190612240565b60015b611a67573d808015611a3b576040519150601f19603f3d011682016040523d82523d6000602084013e611a40565b606091505b508051611a5f5760405162461bcd60e51b815260040161073a90612432565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611566565b506001949350505050565b6001600160a01b038316611ae757611ae281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b0a565b816001600160a01b0316836001600160a01b031614611b0a57611b0a8382611c92565b6001600160a01b038216611b215761087081611d2f565b826001600160a01b0316826001600160a01b031614610870576108708282611e08565b6001600160a01b038216611b9a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073a565b6000818152600260205260409020546001600160a01b031615611bff5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073a565b611c0b60008383611941565b6001600160a01b0382166000908152600360205260408120805460019290611c349084906125bc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611c9f84610b9f565b611ca99190612607565b600083815260076020526040902054909150808214611cfc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d4190600190612607565b60008381526009602052604081205460088054939450909284908110611d7757634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611da657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dec57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611e1383610b9f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611e589061264a565b90600052602060002090601f016020900481019282611e7a5760008555611ec0565b82601f10611e9357805160ff1916838001178555611ec0565b82800160010185558215611ec0579182015b82811115611ec0578251825591602001919060010190611ea5565b50611ecc929150611ed0565b5090565b5b80821115611ecc5760008155600101611ed1565b600067ffffffffffffffff831115611eff57611eff6126da565b611f12601f8401601f1916602001612567565b9050828152838383011115611f2657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f5457600080fd5b919050565b600082601f830112611f69578081fd5b81356020611f7e611f7983612598565b612567565b80838252828201915082860187848660051b8901011115611f9d578586fd5b855b85811015611fbb57813584529284019290840190600101611f9f565b5090979650505050505050565b80358015158114611f5457600080fd5b600082601f830112611fe8578081fd5b61179183833560208501611ee5565b600060208284031215612008578081fd5b61179182611f3d565b60008060408385031215612023578081fd5b61202c83611f3d565b915061203a60208401611f3d565b90509250929050565b600080600060608486031215612057578081fd5b61206084611f3d565b925061206e60208501611f3d565b9150604084013590509250925092565b60008060008060808587031215612093578081fd5b61209c85611f3d565b93506120aa60208601611f3d565b925060408501359150606085013567ffffffffffffffff8111156120cc578182fd5b8501601f810187136120dc578182fd5b6120eb87823560208401611ee5565b91505092959194509250565b60008060408385031215612109578182fd5b61211283611f3d565b915061203a60208401611fc8565b60008060408385031215612132578182fd5b61213b83611f3d565b946020939093013593505050565b6000806040838503121561215b578182fd5b823567ffffffffffffffff80821115612172578384fd5b818501915085601f830112612185578384fd5b81356020612195611f7983612598565b8083825282820191508286018a848660051b89010111156121b4578889fd5b8896505b848710156121dd576121c981611f3d565b8352600196909601959183019183016121b8565b50965050860135925050808211156121f3578283fd5b5061220085828601611f59565b9150509250929050565b60006020828403121561221b578081fd5b61179182611fc8565b600060208284031215612235578081fd5b8135611791816126f0565b600060208284031215612251578081fd5b8151611791816126f0565b6000806040838503121561226e578182fd5b823567ffffffffffffffff80821115612285578384fd5b61229186838701611fd8565b935060208501359150808211156122a6578283fd5b5061220085828601611fd8565b6000602082840312156122c4578081fd5b5035919050565b600081518084526122e381602086016020860161261e565b601f01601f19169290920160200192915050565b6000815161230981856020860161261e565b9290920192915050565b6000825161232581846020870161261e565b64173539b7b760d91b920191825250600501919050565b600080845482600182811c91508083168061235857607f831692505b602080841082141561237857634e487b7160e01b87526022600452602487fd5b81801561238c576001811461239d576123c9565b60ff198616895284890196506123c9565b60008b815260209020885b868110156123c15781548b8201529085019083016123a8565b505084890196505b5050505050506123d981856122f7565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612415908301846122cb565b9695505050505050565b60208152600061179160208301846122cb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612590576125906126da565b604052919050565b600067ffffffffffffffff8211156125b2576125b26126da565b5060051b60200190565b600082198211156125cf576125cf6126ae565b500190565b6000826125e3576125e36126c4565b500490565b6000816000190483118215151615612602576126026126ae565b500290565b600082821015612619576126196126ae565b500390565b60005b83811015612639578181015183820152602001612621565b8381111561101a5750506000910152565b600181811c9082168061265e57607f821691505b602082108114156112f557634e487b7160e01b600052602260045260246000fd5b6000600019821415612693576126936126ae565b5060010190565b6000826126a9576126a96126c4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a3057600080fdfea2646970667358221220865bb7772e987c14d1dbf92747cad7f7ff87edb8031558ee0223d28eeeeeface64736f6c63430008040033

Deployed Bytecode Sourcemap

49810:5183:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54451:235;;;;;;;;;;-1:-1:-1;54451:235:0;;;;;:::i;:::-;;:::i;:::-;;;9751:14:1;;9744:22;9726:41;;9714:2;9699:18;54451:235:0;;;;;;;;21422:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22981:221::-;;;;;;;;;;-1:-1:-1;22981:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9038:32:1;;;9020:51;;9008:2;8993:18;22981:221:0;8975:102:1;22504:411:0;;;;;;;;;;-1:-1:-1;22504:411:0;;;;;:::i;:::-;;:::i;:::-;;35111:113;;;;;;;;;;-1:-1:-1;35199:10:0;:17;35111:113;;;20052:25:1;;;20040:2;20025:18;35111:113:0;20007:76:1;50310:20:0;;;;;;;;;;-1:-1:-1;50310:20:0;;;;;;;;;;;23871:339;;;;;;;;;;-1:-1:-1;23871:339:0;;;;;:::i;:::-;;:::i;50689:137::-;;;;;;;;;;-1:-1:-1;50689:137:0;;;;;:::i;:::-;;:::i;34779:256::-;;;;;;;;;;-1:-1:-1;34779:256:0;;;;;:::i;:::-;;:::i;52755:261::-;;;;;;;;;;-1:-1:-1;52755:261:0;;;;;:::i;:::-;;:::i;51199:107::-;;;;;;;;;;;;;:::i;50075:43::-;;;;;;;;;;;;50115:3;50075:43;;24281:185;;;;;;;;;;-1:-1:-1;24281:185:0;;;;;:::i;:::-;;:::i;35301:233::-;;;;;;;;;;-1:-1:-1;35301:233:0;;;;;:::i;:::-;;:::i;50485:98::-;;;;;;;;;;;;;:::i;21116:239::-;;;;;;;;;;-1:-1:-1;21116:239:0;;;;;:::i;:::-;;:::i;20846:208::-;;;;;;;;;;-1:-1:-1;20846:208:0;;;;;:::i;:::-;;:::i;49179:94::-;;;;;;;;;;;;;:::i;48528:87::-;;;;;;;;;;-1:-1:-1;48601:6:0;;-1:-1:-1;;;;;48601:6:0;48528:87;;21591:104;;;;;;;;;;;;;:::i;50223:41::-;;;;;;;;;;;;;;;;51470:994;;;;;;:::i;:::-;;:::i;23274:295::-;;;;;;;;;;-1:-1:-1;23274:295:0;;;;;:::i;:::-;;:::i;50285:18::-;;;;;;;;;;-1:-1:-1;50285:18:0;;;;;;;;52472:193;;;;;;;;;;-1:-1:-1;52472:193:0;;;;;:::i;:::-;;:::i;24537:328::-;;;;;;;;;;-1:-1:-1;24537:328:0;;;;;:::i;:::-;;:::i;53108:553::-;;;;;;;;;;-1:-1:-1;53108:553:0;;;;;:::i;:::-;;:::i;53805:634::-;;;;;;;;;;-1:-1:-1;53805:634:0;;;;;:::i;:::-;;:::i;50125:45::-;;;;;;;;;;;;50166:4;50125:45;;50339:28;;;;;;;;;;;;;;;;50898:197;;;;;;;;;;-1:-1:-1;50898:197:0;;;;;:::i;:::-;;:::i;23640:164::-;;;;;;;;;;-1:-1:-1;23640:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23761:25:0;;;23737:4;23761:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23640:164;49428:192;;;;;;;;;;-1:-1:-1;49428:192:0;;;;;:::i;:::-;;:::i;50018:50::-;;;;;;;;;;;;50066:2;50018:50;;54451:235;54611:4;54641:37;54665:12;54641:23;:37::i;:::-;54634:44;54451:235;-1:-1:-1;;54451:235:0:o;21422:100::-;21476:13;21509:5;21502:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21422:100;:::o;22981:221::-;23057:7;26464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26464:16:0;23077:73;;;;-1:-1:-1;;;23077:73:0;;16081:2:1;23077:73:0;;;16063:21:1;16120:2;16100:18;;;16093:30;16159:34;16139:18;;;16132:62;-1:-1:-1;;;16210:18:1;;;16203:42;16262:19;;23077:73:0;;;;;;;;;-1:-1:-1;23170:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23170:24:0;;22981:221::o;22504:411::-;22585:13;22601:23;22616:7;22601:14;:23::i;:::-;22585:39;;22649:5;-1:-1:-1;;;;;22643:11:0;:2;-1:-1:-1;;;;;22643:11:0;;;22635:57;;;;-1:-1:-1;;;22635:57:0;;17681:2:1;22635:57:0;;;17663:21:1;17720:2;17700:18;;;17693:30;17759:34;17739:18;;;17732:62;-1:-1:-1;;;17810:18:1;;;17803:31;17851:19;;22635:57:0;17653:223:1;22635:57:0;16064:10;-1:-1:-1;;;;;22727:21:0;;;;:62;;-1:-1:-1;22752:37:0;22769:5;16064:10;23640:164;:::i;22752:37::-;22705:168;;;;-1:-1:-1;;;22705:168:0;;13698:2:1;22705:168:0;;;13680:21:1;13737:2;13717:18;;;13710:30;13776:34;13756:18;;;13749:62;13847:26;13827:18;;;13820:54;13891:19;;22705:168:0;13670:246:1;22705:168:0;22886:21;22895:2;22899:7;22886:8;:21::i;:::-;22504:411;;;:::o;23871:339::-;24066:41;16064:10;24099:7;24066:18;:41::i;:::-;24058:103;;;;-1:-1:-1;;;24058:103:0;;;;;;;:::i;:::-;24174:28;24184:4;24190:2;24194:7;24174:9;:28::i;50689:137::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;50798:8:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;50798:20:0;;::::1;::::0;;;::::1;::::0;;50689:137::o;34779:256::-;34876:7;34912:23;34929:5;34912:16;:23::i;:::-;34904:5;:31;34896:87;;;;-1:-1:-1;;;34896:87:0;;10215:2:1;34896:87:0;;;10197:21:1;10254:2;10234:18;;;10227:30;10293:34;10273:18;;;10266:62;-1:-1:-1;;;10344:18:1;;;10337:41;10395:19;;34896:87:0;10187:233:1;34896:87:0;-1:-1:-1;;;;;;35001:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34779:256::o;52755:261::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;50212:4:::1;52893:8;:19;;52885:88;;;;-1:-1:-1::0;;;52885:88:0::1;;;;;;;:::i;:::-;52984:24;52994:3;52999:8;52984:9;:24::i;:::-;52755:261:::0;;:::o;51199:107::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;51247:51:::1;::::0;51255:10:::1;::::0;51276:21:::1;51247:51:::0;::::1;;;::::0;::::1;::::0;;;51276:21;51255:10;51247:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51199:107::o:0;24281:185::-;24419:39;24436:4;24442:2;24446:7;24419:39;;;;;;;;;;;;:16;:39::i;35301:233::-;35376:7;35412:30;35199:10;:17;;35111:113;35412:30;35404:5;:38;35396:95;;;;-1:-1:-1;;;35396:95:0;;18917:2:1;35396:95:0;;;18899:21:1;18956:2;18936:18;;;18929:30;18995:34;18975:18;;;18968:62;-1:-1:-1;;;19046:18:1;;;19039:42;19098:19;;35396:95:0;18889:234:1;35396:95:0;35509:10;35520:5;35509:17;;;;;;-1:-1:-1;;;35509:17:0;;;;;;;;;;;;;;;;;35502:24;;35301:233;;;:::o;50485:98::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;50562:6:::1;:13:::0;;-1:-1:-1;;50562:13:0::1;50571:4;50562:13;::::0;;50485:98::o;21116:239::-;21188:7;21224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21224:16:0;21259:19;21251:73;;;;-1:-1:-1;;;21251:73:0;;14959:2:1;21251:73:0;;;14941:21:1;14998:2;14978:18;;;14971:30;15037:34;15017:18;;;15010:62;-1:-1:-1;;;15088:18:1;;;15081:39;15137:19;;21251:73:0;14931:231:1;20846:208:0;20918:7;-1:-1:-1;;;;;20946:19:0;;20938:74;;;;-1:-1:-1;;;20938:74:0;;14123:2:1;20938:74:0;;;14105:21:1;14162:2;14142:18;;;14135:30;14201:34;14181:18;;;14174:62;-1:-1:-1;;;14252:18:1;;;14245:40;14302:19;;20938:74:0;14095:232:1;20938:74:0;-1:-1:-1;;;;;;21030:16:0;;;;;:9;:16;;;;;;;20846:208::o;49179:94::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;49244:21:::1;49262:1;49244:9;:21::i;:::-;49179:94::o:0;21591:104::-;21647:13;21680:7;21673:14;;;;;:::i;51470:994::-;51579:8;;;;;;;51571:43;;;;-1:-1:-1;;;51571:43:0;;15730:2:1;51571:43:0;;;15712:21:1;15769:2;15749:18;;;15742:30;-1:-1:-1;;;15788:18:1;;;15781:52;15850:18;;51571:43:0;15702:172:1;51571:43:0;51661:10;51650:22;;;;:10;:22;;;;;;50066:2;;51633:40;;:12;;:16;:40::i;:::-;:65;;51625:105;;;;-1:-1:-1;;;51625:105:0;;13342:2:1;51625:105:0;;;13324:21:1;13381:2;13361:18;;;13354:30;13420:29;13400:18;;;13393:57;13467:18;;51625:105:0;13314:177:1;51625:105:0;50166:4;51749:31;51767:12;51749:13;35199:10;:17;;35111:113;51749:13;:17;;:31::i;:::-;:49;;51741:109;;;;-1:-1:-1;;;51741:109:0;;18083:2:1;51741:109:0;;;18065:21:1;18122:2;18102:18;;;18095:30;18161:34;18141:18;;;18134:62;-1:-1:-1;;;18212:18:1;;;18205:45;18267:19;;51741:109:0;18055:237:1;51741:109:0;51869:5;;51896:9;;51869:23;;51879:12;51869:9;:23::i;:::-;:36;51861:80;;;;-1:-1:-1;;;51861:80:0;;12569:2:1;51861:80:0;;;12551:21:1;12608:2;12588:18;;;12581:30;12647:33;12627:18;;;12620:61;12698:18;;51861:80:0;12541:181:1;51861:80:0;51954:15;51989:6;51984:378;52005:12;52001:1;:16;51984:378;;;52050:10;52039:22;;;;:10;:22;;;;;:27;;52065:1;;52039:22;:27;;52065:1;;52039:27;:::i;:::-;;;;-1:-1:-1;52081:43:0;;-1:-1:-1;52091:10:0;52103:20;52121:1;52103:13;35199:10;:17;;35111:113;52103:20;52081:9;:43::i;:::-;52141:8;52152:28;52159:20;52177:1;52159:13;35199:10;:17;;35111:113;52152:28;52141:39;;52199:3;52206:1;52199:8;:32;;;;;52228:3;52211:13;;:20;;52199:32;52195:156;;;52268:13;;:20;;52286:1;52268:17;:20::i;:::-;52252:13;:36;52329:5;;52317:18;;:7;;:11;:18::i;:::-;52307:28;;52195:156;-1:-1:-1;52019:3:0;;;;:::i;:::-;;;;51984:378;;;-1:-1:-1;52378:11:0;;52374:81;;52406:37;;52414:10;;52406:37;;;;;52435:7;;52406:37;;;;52435:7;52414:10;52406:37;;;;;;;;;;;;;;;;;;;23274:295;-1:-1:-1;;;;;23377:24:0;;16064:10;23377:24;;23369:62;;;;-1:-1:-1;;;23369:62:0;;12215:2:1;23369:62:0;;;12197:21:1;12254:2;12234:18;;;12227:30;12293:27;12273:18;;;12266:55;12338:18;;23369:62:0;12187:175:1;23369:62:0;16064:10;23444:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23444:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23444:53:0;;;;;;;;;;23513:48;;9726:41:1;;;23444:42:0;;16064:10;23513:48;;9699:18:1;23513:48:0;;;;;;;23274:295;;:::o;52472:193::-;52594:57;;;52611:16;52594:57;;;8742:19:1;52629:15:0;8777:12:1;;;8770:28;;;;8814:12;;;8807:28;;;52549:4:0;;52656:1;;8851:12:1;;52594:57:0;;;;;;;;;;;;52584:68;;;;;;52579:74;;:78;;;;:::i;24537:328::-;24712:41;16064:10;24745:7;24712:18;:41::i;:::-;24704:103;;;;-1:-1:-1;;;24704:103:0;;;;;;;:::i;:::-;24818:39;24832:4;24838:2;24842:7;24851:5;24818:13;:39::i;:::-;24537:328;;;;:::o;53108:553::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;53285:8:::1;:15;53271:3;:10;:29;53263:65;;;::::0;-1:-1:-1;;;53263:65:0;;19330:2:1;53263:65:0::1;::::0;::::1;19312:21:1::0;19369:2;19349:18;;;19342:30;19408:25;19388:18;;;19381:53;19451:18;;53263:65:0::1;19302:173:1::0;53263:65:0::1;53343:9;53339:315;53362:3;:10;53358:1;:14;53339:315;;;50166:4;53401:8;53410:1;53401:11;;;;;;-1:-1:-1::0;;;53401:11:0::1;;;;;;;;;;;;;;;:28;53393:98;;;::::0;-1:-1:-1;;;53393:98:0;;19682:2:1;53393:98:0::1;::::0;::::1;19664:21:1::0;19721:2;19701:18;;;19694:30;19760:34;19740:18;;;19733:62;19831:27;19811:18;;;19804:55;19876:19;;53393:98:0::1;19654:247:1::0;53393:98:0::1;50212:4;53514:8;53523:1;53514:11;;;;;;-1:-1:-1::0;;;53514:11:0::1;;;;;;;;;;;;;;;:22;;53506:91;;;;-1:-1:-1::0;;;53506:91:0::1;;;;;;;:::i;:::-;53612:30;53622:3;53626:1;53622:6;;;;;;-1:-1:-1::0;;;53622:6:0::1;;;;;;;;;;;;;;;53630:8;53639:1;53630:11;;;;;;-1:-1:-1::0;;;53630:11:0::1;;;;;;;;;;;;;;;53612:9;:30::i;:::-;53374:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53339:315;;53805:634:::0;26440:4;26464:16;;;:7;:16;;;;;;53944:13;;-1:-1:-1;;;;;26464:16:0;53976:77;;;;-1:-1:-1;;;53976:77:0;;17265:2:1;53976:77:0;;;17247:21:1;17304:2;17284:18;;;17277:30;17343:34;17323:18;;;17316:62;-1:-1:-1;;;17394:18:1;;;17387:45;17449:19;;53976:77:0;17237:237:1;53976:77:0;54064:15;54082:12;54093:1;54082:8;:12;:::i;:::-;54110:6;;54064:30;;-1:-1:-1;54110:6:0;;54105:327;;54137:12;54133:64;;-1:-1:-1;54180:1:0;54133:64;54242:8;54269:18;:7;:16;:18::i;:::-;54252:45;;;;;;;;:::i;:::-;;;;-1:-1:-1;;54252:45:0;;;;;;;;;;54225:73;;;54252:45;54225:73;;:::i;:::-;;;;;;;;;;;;;54211:88;;;53805:634;;;:::o;54105:327::-;54363:7;54389:19;:8;:17;:19::i;54105:327::-;53805:634;;;;:::o;50898:197::-;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;51042:20;;::::1;::::0;:8:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;51073:14:0;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;49428:192::-:0;48601:6;;-1:-1:-1;;;;;48601:6:0;16064:10;48748:23;48740:68;;;;-1:-1:-1;;;48740:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49517:22:0;::::1;49509:73;;;::::0;-1:-1:-1;;;49509:73:0;;11046:2:1;49509:73:0::1;::::0;::::1;11028:21:1::0;11085:2;11065:18;;;11058:30;11124:34;11104:18;;;11097:62;-1:-1:-1;;;11175:18:1;;;11168:36;11221:19;;49509:73:0::1;11018:228:1::0;49509:73:0::1;49593:19;49603:8;49593:9;:19::i;34471:224::-:0;34573:4;-1:-1:-1;;;;;;34597:50:0;;-1:-1:-1;;;34597:50:0;;:90;;;34651:36;34675:11;34651:23;:36::i;30357:174::-;30432:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30432:29:0;-1:-1:-1;;;;;30432:29:0;;;;;;;;:24;;30486:23;30432:24;30486:14;:23::i;:::-;-1:-1:-1;;;;;30477:46:0;;;;;;;;;;;30357:174;;:::o;26669:348::-;26762:4;26464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26464:16:0;26779:73;;;;-1:-1:-1;;;26779:73:0;;12929:2:1;26779:73:0;;;12911:21:1;12968:2;12948:18;;;12941:30;13007:34;12987:18;;;12980:62;-1:-1:-1;;;13058:18:1;;;13051:42;13110:19;;26779:73:0;12901:234:1;26779:73:0;26863:13;26879:23;26894:7;26879:14;:23::i;:::-;26863:39;;26932:5;-1:-1:-1;;;;;26921:16:0;:7;-1:-1:-1;;;;;26921:16:0;;:51;;;;26965:7;-1:-1:-1;;;;;26941:31:0;:20;26953:7;26941:11;:20::i;:::-;-1:-1:-1;;;;;26941:31:0;;26921:51;:87;;;-1:-1:-1;;;;;;23761:25:0;;;23737:4;23761:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26976:32;26913:96;26669:348;-1:-1:-1;;;;26669:348:0:o;29661:578::-;29820:4;-1:-1:-1;;;;;29793:31:0;:23;29808:7;29793:14;:23::i;:::-;-1:-1:-1;;;;;29793:31:0;;29785:85;;;;-1:-1:-1;;;29785:85:0;;16855:2:1;29785:85:0;;;16837:21:1;16894:2;16874:18;;;16867:30;16933:34;16913:18;;;16906:62;-1:-1:-1;;;16984:18:1;;;16977:39;17033:19;;29785:85:0;16827:231:1;29785:85:0;-1:-1:-1;;;;;29889:16:0;;29881:65;;;;-1:-1:-1;;;29881:65:0;;11810:2:1;29881:65:0;;;11792:21:1;11849:2;11829:18;;;11822:30;11888:34;11868:18;;;11861:62;-1:-1:-1;;;11939:18:1;;;11932:34;11983:19;;29881:65:0;11782:226:1;29881:65:0;29959:39;29980:4;29986:2;29990:7;29959:20;:39::i;:::-;30063:29;30080:1;30084:7;30063:8;:29::i;:::-;-1:-1:-1;;;;;30105:15:0;;;;;;:9;:15;;;;;:20;;30124:1;;30105:15;:20;;30124:1;;30105:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30136:13:0;;;;;;:9;:13;;;;;:18;;30153:1;;30136:13;:18;;30153:1;;30136:18;:::i;:::-;;;;-1:-1:-1;;30165:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30165:21:0;-1:-1:-1;;;;;30165:21:0;;;;;;;;;30204:27;;30165:16;;30204:27;;;;;;;29661:578;;;:::o;27359:110::-;27435:26;27445:2;27449:7;27435:26;;;;;;;;;;;;:9;:26::i;49628:173::-;49703:6;;;-1:-1:-1;;;;;49720:17:0;;;-1:-1:-1;;;;;;49720:17:0;;;;;;;49753:40;;49703:6;;;49720:17;49703:6;;49753:40;;49684:16;;49753:40;49628:173;;:::o;43390:98::-;43448:7;43475:5;43479:1;43475;:5;:::i;:::-;43468:12;43390:98;-1:-1:-1;;;43390:98:0:o;44128:::-;44186:7;44213:5;44217:1;44213;:5;:::i;25747:315::-;25904:28;25914:4;25920:2;25924:7;25904:9;:28::i;:::-;25951:48;25974:4;25980:2;25984:7;25993:5;25951:22;:48::i;:::-;25943:111;;;;-1:-1:-1;;;25943:111:0;;;;;;;:::i;16486:723::-;16542:13;16763:10;16759:53;;-1:-1:-1;;16790:10:0;;;;;;;;;;;;-1:-1:-1;;;16790:10:0;;;;;16486:723::o;16759:53::-;16837:5;16822:12;16878:78;16885:9;;16878:78;;16911:8;;;;:::i;:::-;;-1:-1:-1;16934:10:0;;-1:-1:-1;16942:2:0;16934:10;;:::i;:::-;;;16878:78;;;16966:19;16998:6;16988:17;;;;;;-1:-1:-1;;;16988:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16988:17:0;;16966:39;;17016:154;17023:10;;17016:154;;17050:11;17060:1;17050:11;;:::i;:::-;;-1:-1:-1;17119:10:0;17127:2;17119:5;:10;:::i;:::-;17106:24;;:2;:24;:::i;:::-;17093:39;;17076:6;17083;17076:14;;;;;;-1:-1:-1;;;17076:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17076:56:0;;;;;;;;-1:-1:-1;17147:11:0;17156:2;17147:11;;:::i;:::-;;;17016:154;;20477:305;20579:4;-1:-1:-1;;;;;;20616:40:0;;-1:-1:-1;;;20616:40:0;;:105;;-1:-1:-1;;;;;;;20673:48:0;;-1:-1:-1;;;20673:48:0;20616:105;:158;;;-1:-1:-1;;;;;;;;;;19127:40:0;;;20738:36;19018:157;54739:249;54932:48;54959:5;54966:3;54971:8;54932:26;:48::i;27696:321::-;27826:18;27832:2;27836:7;27826:5;:18::i;:::-;27877:54;27908:1;27912:2;27916:7;27925:5;27877:22;:54::i;:::-;27855:154;;;;-1:-1:-1;;;27855:154:0;;;;;;;:::i;31096:799::-;31251:4;-1:-1:-1;;;;;31272:13:0;;8374:20;8422:8;31268:620;;31308:72;;-1:-1:-1;;;31308:72:0;;-1:-1:-1;;;;;31308:36:0;;;;;:72;;16064:10;;31359:4;;31365:7;;31374:5;;31308:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31308:72:0;;;;;;;;-1:-1:-1;;31308:72:0;;;;;;;;;;;;:::i;:::-;;;31304:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31550:13:0;;31546:272;;31593:60;;-1:-1:-1;;;31593:60:0;;;;;;;:::i;31546:272::-;31768:6;31762:13;31753:6;31749:2;31745:15;31738:38;31304:529;-1:-1:-1;;;;;;31431:51:0;-1:-1:-1;;;31431:51:0;;-1:-1:-1;31424:58:0;;31268:620;-1:-1:-1;31872:4:0;31096:799;;;;;;:::o;36147:589::-;-1:-1:-1;;;;;36353:18:0;;36349:187;;36388:40;36420:7;37563:10;:17;;37536:24;;;;:15;:24;;;;;:44;;;37591:24;;;;;;;;;;;;37459:164;36388:40;36349:187;;;36458:2;-1:-1:-1;;;;;36450:10:0;:4;-1:-1:-1;;;;;36450:10:0;;36446:90;;36477:47;36510:4;36516:7;36477:32;:47::i;:::-;-1:-1:-1;;;;;36550:16:0;;36546:183;;36583:45;36620:7;36583:36;:45::i;36546:183::-;36656:4;-1:-1:-1;;;;;36650:10:0;:2;-1:-1:-1;;;;;36650:10:0;;36646:83;;36677:40;36705:2;36709:7;36677:27;:40::i;28353:382::-;-1:-1:-1;;;;;28433:16:0;;28425:61;;;;-1:-1:-1;;;28425:61:0;;15369:2:1;28425:61:0;;;15351:21:1;;;15388:18;;;15381:30;15447:34;15427:18;;;15420:62;15499:18;;28425:61:0;15341:182:1;28425:61:0;26440:4;26464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26464:16:0;:30;28497:58;;;;-1:-1:-1;;;28497:58:0;;11453:2:1;28497:58:0;;;11435:21:1;11492:2;11472:18;;;11465:30;11531;11511:18;;;11504:58;11579:18;;28497:58:0;11425:178:1;28497:58:0;28568:45;28597:1;28601:2;28605:7;28568:20;:45::i;:::-;-1:-1:-1;;;;;28626:13:0;;;;;;:9;:13;;;;;:18;;28643:1;;28626:13;:18;;28643:1;;28626:18;:::i;:::-;;;;-1:-1:-1;;28655:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28655:21:0;-1:-1:-1;;;;;28655:21:0;;;;;;;;28694:33;;28655:16;;;28694:33;;28655:16;;28694:33;28353:382;;:::o;38250:988::-;38516:22;38566:1;38541:22;38558:4;38541:16;:22::i;:::-;:26;;;;:::i;:::-;38578:18;38599:26;;;:17;:26;;;;;;38516:51;;-1:-1:-1;38732:28:0;;;38728:328;;-1:-1:-1;;;;;38799:18:0;;38777:19;38799:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38850:30;;;;;;:44;;;38967:30;;:17;:30;;;;;:43;;;38728:328;-1:-1:-1;39152:26:0;;;;:17;:26;;;;;;;;39145:33;;;-1:-1:-1;;;;;39196:18:0;;;;;:12;:18;;;;;:34;;;;;;;39189:41;38250:988::o;39533:1079::-;39811:10;:17;39786:22;;39811:21;;39831:1;;39811:21;:::i;:::-;39843:18;39864:24;;;:15;:24;;;;;;40237:10;:26;;39786:46;;-1:-1:-1;39864:24:0;;39786:46;;40237:26;;;;-1:-1:-1;;;40237:26:0;;;;;;;;;;;;;;;;;40215:48;;40301:11;40276:10;40287;40276:22;;;;;;-1:-1:-1;;;40276:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40381:28;;;:15;:28;;;;;;;:41;;;40553:24;;;;;40546:31;40588:10;:16;;;;;-1:-1:-1;;;40588:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39533:1079;;;;:::o;37037:221::-;37122:14;37139:20;37156:2;37139:16;:20::i;:::-;-1:-1:-1;;;;;37170:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37215:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37037:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:693::-;657:5;710:3;703:4;695:6;691:17;687:27;677:2;;732:5;725;718:20;677:2;772:6;759:20;798:4;822:60;838:43;878:2;838:43;:::i;:::-;822:60;:::i;:::-;904:3;928:2;923:3;916:15;956:2;951:3;947:12;940:19;;991:2;983:6;979:15;1043:3;1038:2;1032;1029:1;1025:10;1017:6;1013:23;1009:32;1006:41;1003:2;;;1064:5;1057;1050:20;1003:2;1090:5;1104:163;1118:2;1115:1;1112:9;1104:163;;;1175:17;;1163:30;;1213:12;;;;1245;;;;1136:1;1129:9;1104:163;;;-1:-1:-1;1285:5:1;;667:629;-1:-1:-1;;;;;;;667:629:1:o;1301:160::-;1366:20;;1422:13;;1415:21;1405:32;;1395:2;;1451:1;1448;1441:12;1466:229;1509:5;1562:3;1555:4;1547:6;1543:17;1539:27;1529:2;;1584:5;1577;1570:20;1529:2;1610:79;1685:3;1676:6;1663:20;1656:4;1648:6;1644:17;1610:79;:::i;1700:196::-;1759:6;1812:2;1800:9;1791:7;1787:23;1783:32;1780:2;;;1833:6;1825;1818:22;1780:2;1861:29;1880:9;1861:29;:::i;1901:270::-;1969:6;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:2;;;2051:6;2043;2036:22;1998:2;2079:29;2098:9;2079:29;:::i;:::-;2069:39;;2127:38;2161:2;2150:9;2146:18;2127:38;:::i;:::-;2117:48;;1988:183;;;;;:::o;2176:338::-;2253:6;2261;2269;2322:2;2310:9;2301:7;2297:23;2293:32;2290:2;;;2343:6;2335;2328:22;2290:2;2371:29;2390:9;2371:29;:::i;:::-;2361:39;;2419:38;2453:2;2442:9;2438:18;2419:38;:::i;:::-;2409:48;;2504:2;2493:9;2489:18;2476:32;2466:42;;2280:234;;;;;:::o;2519:696::-;2614:6;2622;2630;2638;2691:3;2679:9;2670:7;2666:23;2662:33;2659:2;;;2713:6;2705;2698:22;2659:2;2741:29;2760:9;2741:29;:::i;:::-;2731:39;;2789:38;2823:2;2812:9;2808:18;2789:38;:::i;:::-;2779:48;;2874:2;2863:9;2859:18;2846:32;2836:42;;2929:2;2918:9;2914:18;2901:32;2956:18;2948:6;2945:30;2942:2;;;2993:6;2985;2978:22;2942:2;3021:22;;3074:4;3066:13;;3062:27;-1:-1:-1;3052:2:1;;3108:6;3100;3093:22;3052:2;3136:73;3201:7;3196:2;3183:16;3178:2;3174;3170:11;3136:73;:::i;:::-;3126:83;;;2649:566;;;;;;;:::o;3220:264::-;3285:6;3293;3346:2;3334:9;3325:7;3321:23;3317:32;3314:2;;;3367:6;3359;3352:22;3314:2;3395:29;3414:9;3395:29;:::i;:::-;3385:39;;3443:35;3474:2;3463:9;3459:18;3443:35;:::i;3489:264::-;3557:6;3565;3618:2;3606:9;3597:7;3593:23;3589:32;3586:2;;;3639:6;3631;3624:22;3586:2;3667:29;3686:9;3667:29;:::i;:::-;3657:39;3743:2;3728:18;;;;3715:32;;-1:-1:-1;;;3576:177:1:o;3758:1212::-;3876:6;3884;3937:2;3925:9;3916:7;3912:23;3908:32;3905:2;;;3958:6;3950;3943:22;3905:2;4003:9;3990:23;4032:18;4073:2;4065:6;4062:14;4059:2;;;4094:6;4086;4079:22;4059:2;4137:6;4126:9;4122:22;4112:32;;4182:7;4175:4;4171:2;4167:13;4163:27;4153:2;;4209:6;4201;4194:22;4153:2;4250;4237:16;4272:4;4296:60;4312:43;4352:2;4312:43;:::i;4296:60::-;4378:3;4402:2;4397:3;4390:15;4430:2;4425:3;4421:12;4414:19;;4461:2;4457;4453:11;4509:7;4504:2;4498;4495:1;4491:10;4487:2;4483:19;4479:28;4476:41;4473:2;;;4535:6;4527;4520:22;4473:2;4562:6;4553:15;;4577:169;4591:2;4588:1;4585:9;4577:169;;;4648:23;4667:3;4648:23;:::i;:::-;4636:36;;4609:1;4602:9;;;;;4692:12;;;;4724;;4577:169;;;-1:-1:-1;4765:5:1;-1:-1:-1;;4808:18:1;;4795:32;;-1:-1:-1;;4839:16:1;;;4836:2;;;4873:6;4865;4858:22;4836:2;;4901:63;4956:7;4945:8;4934:9;4930:24;4901:63;:::i;:::-;4891:73;;;3895:1075;;;;;:::o;4975:190::-;5031:6;5084:2;5072:9;5063:7;5059:23;5055:32;5052:2;;;5105:6;5097;5090:22;5052:2;5133:26;5149:9;5133:26;:::i;5170:255::-;5228:6;5281:2;5269:9;5260:7;5256:23;5252:32;5249:2;;;5302:6;5294;5287:22;5249:2;5346:9;5333:23;5365:30;5389:5;5365:30;:::i;5430:259::-;5499:6;5552:2;5540:9;5531:7;5527:23;5523:32;5520:2;;;5573:6;5565;5558:22;5520:2;5610:9;5604:16;5629:30;5653:5;5629:30;:::i;5694:573::-;5782:6;5790;5843:2;5831:9;5822:7;5818:23;5814:32;5811:2;;;5864:6;5856;5849:22;5811:2;5909:9;5896:23;5938:18;5979:2;5971:6;5968:14;5965:2;;;6000:6;5992;5985:22;5965:2;6028:50;6070:7;6061:6;6050:9;6046:22;6028:50;:::i;:::-;6018:60;;6131:2;6120:9;6116:18;6103:32;6087:48;;6160:2;6150:8;6147:16;6144:2;;;6181:6;6173;6166:22;6144:2;;6209:52;6253:7;6242:8;6231:9;6227:24;6209:52;:::i;6272:190::-;6331:6;6384:2;6372:9;6363:7;6359:23;6355:32;6352:2;;;6405:6;6397;6390:22;6352:2;-1:-1:-1;6433:23:1;;6342:120;-1:-1:-1;6342:120:1:o;6467:268::-;6519:3;6557:5;6551:12;6584:6;6579:3;6572:19;6600:63;6656:6;6649:4;6644:3;6640:14;6633:4;6626:5;6622:16;6600:63;:::i;:::-;6717:2;6696:15;-1:-1:-1;;6692:29:1;6683:39;;;;6724:4;6679:50;;6527:208;-1:-1:-1;;6527:208:1:o;6740:184::-;6781:3;6819:5;6813:12;6834:52;6879:6;6874:3;6867:4;6860:5;6856:16;6834:52;:::i;:::-;6902:16;;;;;6789:135;-1:-1:-1;;6789:135:1:o;6929:443::-;7161:3;7199:6;7193:13;7215:53;7261:6;7256:3;7249:4;7241:6;7237:17;7215:53;:::i;:::-;-1:-1:-1;;;7290:16:1;;7315:22;;;-1:-1:-1;7364:1:1;7353:13;;7169:203;-1:-1:-1;7169:203:1:o;7377:1175::-;7551:3;7580;7615:6;7609:13;7645:3;7667:1;7695:9;7691:2;7687:18;7677:28;;7755:2;7744:9;7740:18;7777;7767:2;;7821:4;7813:6;7809:17;7799:27;;7767:2;7847;7895;7887:6;7884:14;7864:18;7861:38;7858:2;;;-1:-1:-1;;;7922:33:1;;7978:4;7975:1;7968:15;8008:4;7929:3;7996:17;7858:2;8039:18;8066:104;;;;8184:1;8179:322;;;;8032:469;;8066:104;-1:-1:-1;;8099:24:1;;8087:37;;8144:16;;;;-1:-1:-1;8066:104:1;;8179:322;20603:4;20622:17;;;20672:4;20656:21;;8274:3;8290:165;8304:6;8301:1;8298:13;8290:165;;;8382:14;;8369:11;;;8362:35;8425:16;;;;8319:10;;8290:165;;;8294:3;;8484:6;8479:3;8475:16;8468:23;;8032:469;;;;;;;8517:29;8542:3;8534:6;8517:29;:::i;:::-;8510:36;7559:993;-1:-1:-1;;;;;7559:993:1:o;9082:499::-;-1:-1:-1;;;;;9351:15:1;;;9333:34;;9403:15;;9398:2;9383:18;;9376:43;9450:2;9435:18;;9428:34;;;9498:3;9493:2;9478:18;;9471:31;;;9276:4;;9519:56;;9555:19;;9547:6;9519:56;:::i;:::-;9511:64;9285:296;-1:-1:-1;;;;;;9285:296:1:o;9778:230::-;9927:2;9916:9;9909:21;9890:4;9947:55;9998:2;9987:9;9983:18;9975:6;9947:55;:::i;10425:414::-;10627:2;10609:21;;;10666:2;10646:18;;;10639:30;10705:34;10700:2;10685:18;;10678:62;-1:-1:-1;;;10771:2:1;10756:18;;10749:48;10829:3;10814:19;;10599:240::o;14332:420::-;14534:2;14516:21;;;14573:2;14553:18;;;14546:30;14612:34;14607:2;14592:18;;14585:62;14683:26;14678:2;14663:18;;14656:54;14742:3;14727:19;;14506:246::o;16292:356::-;16494:2;16476:21;;;16513:18;;;16506:30;16572:34;16567:2;16552:18;;16545:62;16639:2;16624:18;;16466:182::o;18297:413::-;18499:2;18481:21;;;18538:2;18518:18;;;18511:30;18577:34;18572:2;18557:18;;18550:62;-1:-1:-1;;;18643:2:1;18628:18;;18621:47;18700:3;18685:19;;18471:239::o;20088:275::-;20159:2;20153:9;20224:2;20205:13;;-1:-1:-1;;20201:27:1;20189:40;;20259:18;20244:34;;20280:22;;;20241:62;20238:2;;;20306:18;;:::i;:::-;20342:2;20335:22;20133:230;;-1:-1:-1;20133:230:1:o;20368:183::-;20428:4;20461:18;20453:6;20450:30;20447:2;;;20483:18;;:::i;:::-;-1:-1:-1;20528:1:1;20524:14;20540:4;20520:25;;20437:114::o;20688:128::-;20728:3;20759:1;20755:6;20752:1;20749:13;20746:2;;;20765:18;;:::i;:::-;-1:-1:-1;20801:9:1;;20736:80::o;20821:120::-;20861:1;20887;20877:2;;20892:18;;:::i;:::-;-1:-1:-1;20926:9:1;;20867:74::o;20946:168::-;20986:7;21052:1;21048;21044:6;21040:14;21037:1;21034:21;21029:1;21022:9;21015:17;21011:45;21008:2;;;21059:18;;:::i;:::-;-1:-1:-1;21099:9:1;;20998:116::o;21119:125::-;21159:4;21187:1;21184;21181:8;21178:2;;;21192:18;;:::i;:::-;-1:-1:-1;21229:9:1;;21168:76::o;21249:258::-;21321:1;21331:113;21345:6;21342:1;21339:13;21331:113;;;21421:11;;;21415:18;21402:11;;;21395:39;21367:2;21360:10;21331:113;;;21462:6;21459:1;21456:13;21453:2;;;-1:-1:-1;;21497:1:1;21479:16;;21472:27;21302:205::o;21512:380::-;21591:1;21587:12;;;;21634;;;21655:2;;21709:4;21701:6;21697:17;21687:27;;21655:2;21762;21754:6;21751:14;21731:18;21728:38;21725:2;;;21808:10;21803:3;21799:20;21796:1;21789:31;21843:4;21840:1;21833:15;21871:4;21868:1;21861:15;21897:135;21936:3;-1:-1:-1;;21957:17:1;;21954:2;;;21977:18;;:::i;:::-;-1:-1:-1;22024:1:1;22013:13;;21944:88::o;22037:112::-;22069:1;22095;22085:2;;22100:18;;:::i;:::-;-1:-1:-1;22134:9:1;;22075:74::o;22154:127::-;22215:10;22210:3;22206:20;22203:1;22196:31;22246:4;22243:1;22236:15;22270:4;22267:1;22260:15;22286:127;22347:10;22342:3;22338:20;22335:1;22328:31;22378:4;22375:1;22368:15;22402:4;22399:1;22392:15;22418:127;22479:10;22474:3;22470:20;22467:1;22460:31;22510:4;22507:1;22500:15;22534:4;22531:1;22524:15;22550:131;-1:-1:-1;;;;;;22624:32:1;;22614:43;;22604:2;;22671:1;22668;22661:12

Swarm Source

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