ETH Price: $3,491.06 (+0.08%)
Gas: 2 Gwei

Token

TaurosDAO (TAUROS)
 

Overview

Max Total Supply

280 TAUROS

Holders

218

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nilcordan.eth
Balance
1 TAUROS
0x7c1fffc33ca0c45eb080356c6cd3c986f2d62ca1
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:
TaurosDAO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-14
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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


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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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




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


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

pragma solidity ^0.8.0;


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

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

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



// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since 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/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;





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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


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


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

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}


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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: contracts/tauros.sol

pragma solidity ^0.8.0;






contract TaurosDAO is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    
    Counters.Counter private _tokenIds;
    
    uint public constant MAX_SUPPLY = 7110;
    uint public constant PRICE = 0.05 ether;
    uint public constant MAX_PER_MINT = 10;
    string public baseTokenURI;
    
    constructor(string memory baseURI) ERC721("TaurosDAO", "TAUROS") {
        setBaseURI(baseURI);
    }
    
    function reserveNFTs() public onlyOwner {
        uint totalMinted = _tokenIds.current();

        require(totalMinted.add(200) < MAX_SUPPLY, "Not enough NFTs left to reserve");

        for (uint i = 0; i < 10; i++) {
            _mintSingleNFT();
        }
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
    
    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }
    
    function mintNFTs(uint _count) public payable {
        uint totalMinted = _tokenIds.current();

        require(totalMinted.add(_count) <= MAX_SUPPLY, "Not enough NFTs left!");
        require(_count >0 && _count <= MAX_PER_MINT, "Cannot mint specified number of NFTs.");
        require(msg.value >= PRICE.mul(_count), "Not enough ether to purchase NFTs.");

        for (uint i = 0; i < _count; i++) {
            _mintSingleNFT();
        }
    }
    
    function _mintSingleNFT() private {
        uint newTokenID = _tokenIds.current();
        _safeMint(msg.sender, newTokenID);
        _tokenIds.increment();
    }
    
    function tokensOfOwner(address _owner) external view returns (uint[] memory) {

        uint tokenCount = balanceOf(_owner);
        uint[] memory tokensId = new uint256[](tokenCount);

        for (uint i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
    
    function withdraw() public payable onlyOwner {
        uint balance = address(this).balance;
        require(balance > 0, "No ether left to withdraw");

        (bool success, ) = (msg.sender).call{value: balance}("");
        require(success, "Transfer failed.");
    }
    function burn(uint256 tokenId) public{
        _burn(tokenId);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintNFTs","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b506040516200268e3803806200268e83398101604081905262000034916200023c565b6040805180820182526009815268546175726f7344414f60b81b602080830191825283518085019094526006845265544155524f5360d01b908401528151919291620000839160009162000196565b5080516200009990600190602084019062000196565b505050620000b6620000b0620000c860201b60201c565b620000cc565b620000c1816200011e565b506200036b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200017d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200019290600c90602084019062000196565b5050565b828054620001a49062000318565b90600052602060002090601f016020900481019282620001c8576000855562000213565b82601f10620001e357805160ff191683800117855562000213565b8280016001018555821562000213579182015b8281111562000213578251825591602001919060010190620001f6565b506200022192915062000225565b5090565b5b8082111562000221576000815560010162000226565b600060208083850312156200025057600080fd5b82516001600160401b03808211156200026857600080fd5b818501915085601f8301126200027d57600080fd5b81518181111562000292576200029262000355565b604051601f8201601f19908116603f01168101908382118183101715620002bd57620002bd62000355565b816040528281528886848701011115620002d657600080fd5b600093505b82841015620002fa5784840186015181850187015292850192620002db565b828411156200030c5760008684830101525b98975050505050505050565b600181811c908216806200032d57607f821691505b602082108114156200034f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612313806200037b6000396000f3fe6080604052600436106101c25760003560e01c80634f6ccce7116100f75780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd146104c6578063d547cfb7146104e6578063e985e9c5146104fb578063f2fde38b1461054457600080fd5b80638da5cb5b1461045357806395d89b4114610471578063a22cb46514610486578063b88d4fde146104a657600080fd5b806370a08231116100d157806370a08231146103d6578063715018a6146103f65780638462151c1461040b5780638d859f3e1461043857600080fd5b80634f6ccce71461037657806355f804b3146103965780636352211e146103b657600080fd5b806323b872dd116101645780633b4b13811161013e5780633b4b13811461031b5780633ccfd60b1461032e57806342842e0e1461033657806342966c681461035657600080fd5b806323b872dd146102c55780632f745c59146102e557806332cb6b0c1461030557600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806309d42b3014610278578063144100c71461029b57806318160ddd146102b057600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611efe565b610564565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161058f565b6040516101f39190612076565b34801561022a57600080fd5b5061023e610239366004611f81565b610621565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611ed4565b6106bb565b005b34801561028457600080fd5b5061028d600a81565b6040519081526020016101f3565b3480156102a757600080fd5b506102766107d1565b3480156102bc57600080fd5b5060085461028d565b3480156102d157600080fd5b506102766102e0366004611de0565b61088d565b3480156102f157600080fd5b5061028d610300366004611ed4565b6108be565b34801561031157600080fd5b5061028d611bc681565b610276610329366004611f81565b610954565b610276610aaf565b34801561034257600080fd5b50610276610351366004611de0565b610bb2565b34801561036257600080fd5b50610276610371366004611f81565b610bcd565b34801561038257600080fd5b5061028d610391366004611f81565b610bd9565b3480156103a257600080fd5b506102766103b1366004611f38565b610c6c565b3480156103c257600080fd5b5061023e6103d1366004611f81565b610ca9565b3480156103e257600080fd5b5061028d6103f1366004611d92565b610d20565b34801561040257600080fd5b50610276610da7565b34801561041757600080fd5b5061042b610426366004611d92565b610ddd565b6040516101f39190612032565b34801561044457600080fd5b5061028d66b1a2bc2ec5000081565b34801561045f57600080fd5b50600a546001600160a01b031661023e565b34801561047d57600080fd5b50610211610e7f565b34801561049257600080fd5b506102766104a1366004611e98565b610e8e565b3480156104b257600080fd5b506102766104c1366004611e1c565b610e99565b3480156104d257600080fd5b506102116104e1366004611f81565b610ed1565b3480156104f257600080fd5b50610211610fac565b34801561050757600080fd5b506101e7610516366004611dad565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055057600080fd5b5061027661055f366004611d92565b61103a565b60006001600160e01b0319821663780e9d6360e01b14806105895750610589826110d2565b92915050565b60606000805461059e906121ef565b80601f01602080910402602001604051908101604052809291908181526020018280546105ca906121ef565b80156106175780601f106105ec57610100808354040283529160200191610617565b820191906000526020600020905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661069f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c682610ca9565b9050806001600160a01b0316836001600160a01b031614156107345760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610696565b336001600160a01b038216148061075057506107508133610516565b6107c25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610696565b6107cc8383611122565b505050565b600a546001600160a01b031633146107fb5760405162461bcd60e51b8152600401610696906120db565b6000610806600b5490565b9050611bc66108168260c8611190565b106108635760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420656e6f756768204e465473206c65667420746f2072657365727665006044820152606401610696565b60005b600a8110156108895761087761119c565b806108818161222a565b915050610866565b5050565b61089733826111c1565b6108b35760405162461bcd60e51b815260040161069690612110565b6107cc8383836112b8565b60006108c983610d20565b821061092b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610696565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600061095f600b5490565b9050611bc661096e8284611190565b11156109b45760405162461bcd60e51b81526020600482015260156024820152744e6f7420656e6f756768204e465473206c6566742160581b6044820152606401610696565b6000821180156109c55750600a8211155b610a1f5760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206d696e7420737065636966696564206e756d626572206f662060448201526427232a399760d91b6064820152608401610696565b610a3066b1a2bc2ec5000083611463565b341015610a8a5760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f75676820657468657220746f207075726368617365204e4654604482015261399760f11b6064820152608401610696565b60005b828110156107cc57610a9d61119c565b80610aa78161222a565b915050610a8d565b600a546001600160a01b03163314610ad95760405162461bcd60e51b8152600401610696906120db565b4780610b275760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f207769746864726177000000000000006044820152606401610696565b604051600090339083908381818185875af1925050503d8060008114610b69576040519150601f19603f3d011682016040523d82523d6000602084013e610b6e565b606091505b50509050806108895760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610696565b6107cc83838360405180602001604052806000815250610e99565b610bd68161146f565b50565b6000610be460085490565b8210610c475760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610696565b60088281548110610c5a57610c5a61229b565b90600052602060002001549050919050565b600a546001600160a01b03163314610c965760405162461bcd60e51b8152600401610696906120db565b805161088990600c906020840190611c67565b6000818152600260205260408120546001600160a01b0316806105895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610696565b60006001600160a01b038216610d8b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610696565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610dd15760405162461bcd60e51b8152600401610696906120db565b610ddb6000611516565b565b60606000610dea83610d20565b905060008167ffffffffffffffff811115610e0757610e076122b1565b604051908082528060200260200182016040528015610e30578160200160208202803683370190505b50905060005b82811015610e7757610e4885826108be565b828281518110610e5a57610e5a61229b565b602090810291909101015280610e6f8161222a565b915050610e36565b509392505050565b60606001805461059e906121ef565b610889338383611568565b610ea333836111c1565b610ebf5760405162461bcd60e51b815260040161069690612110565b610ecb84848484611637565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f505760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610696565b6000610f5a61166a565b90506000815111610f7a5760405180602001604052806000815250610fa5565b80610f8484611679565b604051602001610f95929190611fc6565b6040516020818303038152906040525b9392505050565b600c8054610fb9906121ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe5906121ef565b80156110325780601f1061100757610100808354040283529160200191611032565b820191906000526020600020905b81548152906001019060200180831161101557829003601f168201915b505050505081565b600a546001600160a01b031633146110645760405162461bcd60e51b8152600401610696906120db565b6001600160a01b0381166110c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610696565b610bd681611516565b60006001600160e01b031982166380ac58cd60e01b148061110357506001600160e01b03198216635b5e139f60e01b145b8061058957506301ffc9a760e01b6001600160e01b0319831614610589565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061115782610ca9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610fa58284612161565b60006111a7600b5490565b90506111b33382611777565b610bd6600b80546001019055565b6000818152600260205260408120546001600160a01b031661123a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610696565b600061124583610ca9565b9050806001600160a01b0316846001600160a01b031614806112805750836001600160a01b031661127584610621565b6001600160a01b0316145b806112b057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112cb82610ca9565b6001600160a01b0316146113335760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610696565b6001600160a01b0382166113955760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610696565b6113a0838383611791565b6113ab600082611122565b6001600160a01b03831660009081526003602052604081208054600192906113d49084906121ac565b90915550506001600160a01b0382166000908152600360205260408120805460019290611402908490612161565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610fa5828461218d565b600061147a82610ca9565b905061148881600084611791565b611493600083611122565b6001600160a01b03811660009081526003602052604081208054600192906114bc9084906121ac565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115ca5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610696565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116428484846112b8565b61164e84848484611849565b610ecb5760405162461bcd60e51b815260040161069690612089565b6060600c805461059e906121ef565b60608161169d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116c757806116b18161222a565b91506116c09050600a83612179565b91506116a1565b60008167ffffffffffffffff8111156116e2576116e26122b1565b6040519080825280601f01601f19166020018201604052801561170c576020820181803683370190505b5090505b84156112b0576117216001836121ac565b915061172e600a86612245565b611739906030612161565b60f81b81838151811061174e5761174e61229b565b60200101906001600160f81b031916908160001a905350611770600a86612179565b9450611710565b610889828260405180602001604052806000815250611956565b6001600160a01b0383166117ec576117e781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61180f565b816001600160a01b0316836001600160a01b03161461180f5761180f8382611989565b6001600160a01b038216611826576107cc81611a26565b826001600160a01b0316826001600160a01b0316146107cc576107cc8282611ad5565b60006001600160a01b0384163b1561194b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061188d903390899088908890600401611ff5565b602060405180830381600087803b1580156118a757600080fd5b505af19250505080156118d7575060408051601f3d908101601f191682019092526118d491810190611f1b565b60015b611931573d808015611905576040519150601f19603f3d011682016040523d82523d6000602084013e61190a565b606091505b5080516119295760405162461bcd60e51b815260040161069690612089565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112b0565b506001949350505050565b6119608383611b19565b61196d6000848484611849565b6107cc5760405162461bcd60e51b815260040161069690612089565b6000600161199684610d20565b6119a091906121ac565b6000838152600760205260409020549091508082146119f3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a38906001906121ac565b60008381526009602052604081205460088054939450909284908110611a6057611a6061229b565b906000526020600020015490508060088381548110611a8157611a8161229b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ab957611ab9612285565b6001900381819060005260206000200160009055905550505050565b6000611ae083610d20565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611b6f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610696565b6000818152600260205260409020546001600160a01b031615611bd45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610696565b611be060008383611791565b6001600160a01b0382166000908152600360205260408120805460019290611c09908490612161565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c73906121ef565b90600052602060002090601f016020900481019282611c955760008555611cdb565b82601f10611cae57805160ff1916838001178555611cdb565b82800160010185558215611cdb579182015b82811115611cdb578251825591602001919060010190611cc0565b50611ce7929150611ceb565b5090565b5b80821115611ce75760008155600101611cec565b600067ffffffffffffffff80841115611d1b57611d1b6122b1565b604051601f8501601f19908116603f01168101908282118183101715611d4357611d436122b1565b81604052809350858152868686011115611d5c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d8d57600080fd5b919050565b600060208284031215611da457600080fd5b610fa582611d76565b60008060408385031215611dc057600080fd5b611dc983611d76565b9150611dd760208401611d76565b90509250929050565b600080600060608486031215611df557600080fd5b611dfe84611d76565b9250611e0c60208501611d76565b9150604084013590509250925092565b60008060008060808587031215611e3257600080fd5b611e3b85611d76565b9350611e4960208601611d76565b925060408501359150606085013567ffffffffffffffff811115611e6c57600080fd5b8501601f81018713611e7d57600080fd5b611e8c87823560208401611d00565b91505092959194509250565b60008060408385031215611eab57600080fd5b611eb483611d76565b915060208301358015158114611ec957600080fd5b809150509250929050565b60008060408385031215611ee757600080fd5b611ef083611d76565b946020939093013593505050565b600060208284031215611f1057600080fd5b8135610fa5816122c7565b600060208284031215611f2d57600080fd5b8151610fa5816122c7565b600060208284031215611f4a57600080fd5b813567ffffffffffffffff811115611f6157600080fd5b8201601f81018413611f7257600080fd5b6112b084823560208401611d00565b600060208284031215611f9357600080fd5b5035919050565b60008151808452611fb28160208601602086016121c3565b601f01601f19169290920160200192915050565b60008351611fd88184602088016121c3565b835190830190611fec8183602088016121c3565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061202890830184611f9a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561206a5783518352928401929184019160010161204e565b50909695505050505050565b602081526000610fa56020830184611f9a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561217457612174612259565b500190565b6000826121885761218861226f565b500490565b60008160001904831182151516156121a7576121a7612259565b500290565b6000828210156121be576121be612259565b500390565b60005b838110156121de5781810151838201526020016121c6565b83811115610ecb5750506000910152565b600181811c9082168061220357607f821691505b6020821081141561222457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223e5761223e612259565b5060010190565b6000826122545761225461226f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bd657600080fdfea26469706673582212206af5af2deb5ffb66c5f1c032b85149ef11ea9fc4f2c32b8309c6b8ade7bcb97664736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e526736516a66364864564d6a79356467444e77436872464e78634e6a5541717678746379563452425931342f00000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80634f6ccce7116100f75780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd146104c6578063d547cfb7146104e6578063e985e9c5146104fb578063f2fde38b1461054457600080fd5b80638da5cb5b1461045357806395d89b4114610471578063a22cb46514610486578063b88d4fde146104a657600080fd5b806370a08231116100d157806370a08231146103d6578063715018a6146103f65780638462151c1461040b5780638d859f3e1461043857600080fd5b80634f6ccce71461037657806355f804b3146103965780636352211e146103b657600080fd5b806323b872dd116101645780633b4b13811161013e5780633b4b13811461031b5780633ccfd60b1461032e57806342842e0e1461033657806342966c681461035657600080fd5b806323b872dd146102c55780632f745c59146102e557806332cb6b0c1461030557600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806309d42b3014610278578063144100c71461029b57806318160ddd146102b057600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611efe565b610564565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161058f565b6040516101f39190612076565b34801561022a57600080fd5b5061023e610239366004611f81565b610621565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611ed4565b6106bb565b005b34801561028457600080fd5b5061028d600a81565b6040519081526020016101f3565b3480156102a757600080fd5b506102766107d1565b3480156102bc57600080fd5b5060085461028d565b3480156102d157600080fd5b506102766102e0366004611de0565b61088d565b3480156102f157600080fd5b5061028d610300366004611ed4565b6108be565b34801561031157600080fd5b5061028d611bc681565b610276610329366004611f81565b610954565b610276610aaf565b34801561034257600080fd5b50610276610351366004611de0565b610bb2565b34801561036257600080fd5b50610276610371366004611f81565b610bcd565b34801561038257600080fd5b5061028d610391366004611f81565b610bd9565b3480156103a257600080fd5b506102766103b1366004611f38565b610c6c565b3480156103c257600080fd5b5061023e6103d1366004611f81565b610ca9565b3480156103e257600080fd5b5061028d6103f1366004611d92565b610d20565b34801561040257600080fd5b50610276610da7565b34801561041757600080fd5b5061042b610426366004611d92565b610ddd565b6040516101f39190612032565b34801561044457600080fd5b5061028d66b1a2bc2ec5000081565b34801561045f57600080fd5b50600a546001600160a01b031661023e565b34801561047d57600080fd5b50610211610e7f565b34801561049257600080fd5b506102766104a1366004611e98565b610e8e565b3480156104b257600080fd5b506102766104c1366004611e1c565b610e99565b3480156104d257600080fd5b506102116104e1366004611f81565b610ed1565b3480156104f257600080fd5b50610211610fac565b34801561050757600080fd5b506101e7610516366004611dad565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055057600080fd5b5061027661055f366004611d92565b61103a565b60006001600160e01b0319821663780e9d6360e01b14806105895750610589826110d2565b92915050565b60606000805461059e906121ef565b80601f01602080910402602001604051908101604052809291908181526020018280546105ca906121ef565b80156106175780601f106105ec57610100808354040283529160200191610617565b820191906000526020600020905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661069f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c682610ca9565b9050806001600160a01b0316836001600160a01b031614156107345760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610696565b336001600160a01b038216148061075057506107508133610516565b6107c25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610696565b6107cc8383611122565b505050565b600a546001600160a01b031633146107fb5760405162461bcd60e51b8152600401610696906120db565b6000610806600b5490565b9050611bc66108168260c8611190565b106108635760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420656e6f756768204e465473206c65667420746f2072657365727665006044820152606401610696565b60005b600a8110156108895761087761119c565b806108818161222a565b915050610866565b5050565b61089733826111c1565b6108b35760405162461bcd60e51b815260040161069690612110565b6107cc8383836112b8565b60006108c983610d20565b821061092b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610696565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600061095f600b5490565b9050611bc661096e8284611190565b11156109b45760405162461bcd60e51b81526020600482015260156024820152744e6f7420656e6f756768204e465473206c6566742160581b6044820152606401610696565b6000821180156109c55750600a8211155b610a1f5760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206d696e7420737065636966696564206e756d626572206f662060448201526427232a399760d91b6064820152608401610696565b610a3066b1a2bc2ec5000083611463565b341015610a8a5760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f75676820657468657220746f207075726368617365204e4654604482015261399760f11b6064820152608401610696565b60005b828110156107cc57610a9d61119c565b80610aa78161222a565b915050610a8d565b600a546001600160a01b03163314610ad95760405162461bcd60e51b8152600401610696906120db565b4780610b275760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f207769746864726177000000000000006044820152606401610696565b604051600090339083908381818185875af1925050503d8060008114610b69576040519150601f19603f3d011682016040523d82523d6000602084013e610b6e565b606091505b50509050806108895760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610696565b6107cc83838360405180602001604052806000815250610e99565b610bd68161146f565b50565b6000610be460085490565b8210610c475760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610696565b60088281548110610c5a57610c5a61229b565b90600052602060002001549050919050565b600a546001600160a01b03163314610c965760405162461bcd60e51b8152600401610696906120db565b805161088990600c906020840190611c67565b6000818152600260205260408120546001600160a01b0316806105895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610696565b60006001600160a01b038216610d8b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610696565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610dd15760405162461bcd60e51b8152600401610696906120db565b610ddb6000611516565b565b60606000610dea83610d20565b905060008167ffffffffffffffff811115610e0757610e076122b1565b604051908082528060200260200182016040528015610e30578160200160208202803683370190505b50905060005b82811015610e7757610e4885826108be565b828281518110610e5a57610e5a61229b565b602090810291909101015280610e6f8161222a565b915050610e36565b509392505050565b60606001805461059e906121ef565b610889338383611568565b610ea333836111c1565b610ebf5760405162461bcd60e51b815260040161069690612110565b610ecb84848484611637565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f505760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610696565b6000610f5a61166a565b90506000815111610f7a5760405180602001604052806000815250610fa5565b80610f8484611679565b604051602001610f95929190611fc6565b6040516020818303038152906040525b9392505050565b600c8054610fb9906121ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe5906121ef565b80156110325780601f1061100757610100808354040283529160200191611032565b820191906000526020600020905b81548152906001019060200180831161101557829003601f168201915b505050505081565b600a546001600160a01b031633146110645760405162461bcd60e51b8152600401610696906120db565b6001600160a01b0381166110c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610696565b610bd681611516565b60006001600160e01b031982166380ac58cd60e01b148061110357506001600160e01b03198216635b5e139f60e01b145b8061058957506301ffc9a760e01b6001600160e01b0319831614610589565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061115782610ca9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610fa58284612161565b60006111a7600b5490565b90506111b33382611777565b610bd6600b80546001019055565b6000818152600260205260408120546001600160a01b031661123a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610696565b600061124583610ca9565b9050806001600160a01b0316846001600160a01b031614806112805750836001600160a01b031661127584610621565b6001600160a01b0316145b806112b057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112cb82610ca9565b6001600160a01b0316146113335760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610696565b6001600160a01b0382166113955760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610696565b6113a0838383611791565b6113ab600082611122565b6001600160a01b03831660009081526003602052604081208054600192906113d49084906121ac565b90915550506001600160a01b0382166000908152600360205260408120805460019290611402908490612161565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610fa5828461218d565b600061147a82610ca9565b905061148881600084611791565b611493600083611122565b6001600160a01b03811660009081526003602052604081208054600192906114bc9084906121ac565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115ca5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610696565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116428484846112b8565b61164e84848484611849565b610ecb5760405162461bcd60e51b815260040161069690612089565b6060600c805461059e906121ef565b60608161169d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116c757806116b18161222a565b91506116c09050600a83612179565b91506116a1565b60008167ffffffffffffffff8111156116e2576116e26122b1565b6040519080825280601f01601f19166020018201604052801561170c576020820181803683370190505b5090505b84156112b0576117216001836121ac565b915061172e600a86612245565b611739906030612161565b60f81b81838151811061174e5761174e61229b565b60200101906001600160f81b031916908160001a905350611770600a86612179565b9450611710565b610889828260405180602001604052806000815250611956565b6001600160a01b0383166117ec576117e781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61180f565b816001600160a01b0316836001600160a01b03161461180f5761180f8382611989565b6001600160a01b038216611826576107cc81611a26565b826001600160a01b0316826001600160a01b0316146107cc576107cc8282611ad5565b60006001600160a01b0384163b1561194b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061188d903390899088908890600401611ff5565b602060405180830381600087803b1580156118a757600080fd5b505af19250505080156118d7575060408051601f3d908101601f191682019092526118d491810190611f1b565b60015b611931573d808015611905576040519150601f19603f3d011682016040523d82523d6000602084013e61190a565b606091505b5080516119295760405162461bcd60e51b815260040161069690612089565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112b0565b506001949350505050565b6119608383611b19565b61196d6000848484611849565b6107cc5760405162461bcd60e51b815260040161069690612089565b6000600161199684610d20565b6119a091906121ac565b6000838152600760205260409020549091508082146119f3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a38906001906121ac565b60008381526009602052604081205460088054939450909284908110611a6057611a6061229b565b906000526020600020015490508060088381548110611a8157611a8161229b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ab957611ab9612285565b6001900381819060005260206000200160009055905550505050565b6000611ae083610d20565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611b6f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610696565b6000818152600260205260409020546001600160a01b031615611bd45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610696565b611be060008383611791565b6001600160a01b0382166000908152600360205260408120805460019290611c09908490612161565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c73906121ef565b90600052602060002090601f016020900481019282611c955760008555611cdb565b82601f10611cae57805160ff1916838001178555611cdb565b82800160010185558215611cdb579182015b82811115611cdb578251825591602001919060010190611cc0565b50611ce7929150611ceb565b5090565b5b80821115611ce75760008155600101611cec565b600067ffffffffffffffff80841115611d1b57611d1b6122b1565b604051601f8501601f19908116603f01168101908282118183101715611d4357611d436122b1565b81604052809350858152868686011115611d5c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d8d57600080fd5b919050565b600060208284031215611da457600080fd5b610fa582611d76565b60008060408385031215611dc057600080fd5b611dc983611d76565b9150611dd760208401611d76565b90509250929050565b600080600060608486031215611df557600080fd5b611dfe84611d76565b9250611e0c60208501611d76565b9150604084013590509250925092565b60008060008060808587031215611e3257600080fd5b611e3b85611d76565b9350611e4960208601611d76565b925060408501359150606085013567ffffffffffffffff811115611e6c57600080fd5b8501601f81018713611e7d57600080fd5b611e8c87823560208401611d00565b91505092959194509250565b60008060408385031215611eab57600080fd5b611eb483611d76565b915060208301358015158114611ec957600080fd5b809150509250929050565b60008060408385031215611ee757600080fd5b611ef083611d76565b946020939093013593505050565b600060208284031215611f1057600080fd5b8135610fa5816122c7565b600060208284031215611f2d57600080fd5b8151610fa5816122c7565b600060208284031215611f4a57600080fd5b813567ffffffffffffffff811115611f6157600080fd5b8201601f81018413611f7257600080fd5b6112b084823560208401611d00565b600060208284031215611f9357600080fd5b5035919050565b60008151808452611fb28160208601602086016121c3565b601f01601f19169290920160200192915050565b60008351611fd88184602088016121c3565b835190830190611fec8183602088016121c3565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061202890830184611f9a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561206a5783518352928401929184019160010161204e565b50909695505050505050565b602081526000610fa56020830184611f9a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561217457612174612259565b500190565b6000826121885761218861226f565b500490565b60008160001904831182151516156121a7576121a7612259565b500290565b6000828210156121be576121be612259565b500390565b60005b838110156121de5781810151838201526020016121c6565b83811115610ecb5750506000910152565b600181811c9082168061220357607f821691505b6020821081141561222457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223e5761223e612259565b5060010190565b6000826122545761225461226f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bd657600080fdfea26469706673582212206af5af2deb5ffb66c5f1c032b85149ef11ea9fc4f2c32b8309c6b8ade7bcb97664736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e526736516a66364864564d6a79356467444e77436872464e78634e6a5541717678746379563452425931342f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmNRg6Qjf6HdVMjy5dgDNwChrFNxcNjUAqvxtcyV4RBY14/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d4e526736516a66364864564d6a79356467444e77436872
Arg [3] : 464e78634e6a5541717678746379563452425931342f00000000000000000000


Deployed Bytecode Sourcemap

53955:2363:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47735:224;;;;;;;;;;-1:-1:-1;47735:224:0;;;;;:::i;:::-;;:::i;:::-;;;6493:14:1;;6486:22;6468:41;;6456:2;6441:18;47735:224:0;;;;;;;;34304:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35863:221::-;;;;;;;;;;-1:-1:-1;35863:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5154:32:1;;;5136:51;;5124:2;5109:18;35863:221:0;4990:203:1;35386:411:0;;;;;;;;;;-1:-1:-1;35386:411:0;;;;;:::i;:::-;;:::i;:::-;;54229:38;;;;;;;;;;;;54265:2;54229:38;;;;;16315:25:1;;;16303:2;16288:18;54229:38:0;16169:177:1;54428:272:0;;;;;;;;;;;;;:::i;48375:113::-;;;;;;;;;;-1:-1:-1;48463:10:0;:17;48375:113;;36613:339;;;;;;;;;;-1:-1:-1;36613:339:0;;;;;:::i;:::-;;:::i;48043:256::-;;;;;;;;;;-1:-1:-1;48043:256:0;;;;;:::i;:::-;;:::i;54138:38::-;;;;;;;;;;;;54172:4;54138:38;;54962:460;;;;;;:::i;:::-;;:::i;55965:276::-;;;:::i;37023:185::-;;;;;;;;;;-1:-1:-1;37023:185:0;;;;;:::i;:::-;;:::i;56247:68::-;;;;;;;;;;-1:-1:-1;56247:68:0;;;;;:::i;:::-;;:::i;48565:233::-;;;;;;;;;;-1:-1:-1;48565:233:0;;;;;:::i;:::-;;:::i;54837:113::-;;;;;;;;;;-1:-1:-1;54837:113:0;;;;;:::i;:::-;;:::i;33998:239::-;;;;;;;;;;-1:-1:-1;33998:239:0;;;;;:::i;:::-;;:::i;33728:208::-;;;;;;;;;;-1:-1:-1;33728:208:0;;;;;:::i;:::-;;:::i;6230:103::-;;;;;;;;;;;;;:::i;55612:341::-;;;;;;;;;;-1:-1:-1;55612:341:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54183:39::-;;;;;;;;;;;;54212:10;54183:39;;5579:87;;;;;;;;;;-1:-1:-1;5652:6:0;;-1:-1:-1;;;;;5652:6:0;5579:87;;34473:104;;;;;;;;;;;;;:::i;36156:155::-;;;;;;;;;;-1:-1:-1;36156:155:0;;;;;:::i;:::-;;:::i;37279:328::-;;;;;;;;;;-1:-1:-1;37279:328:0;;;;;:::i;:::-;;:::i;34648:334::-;;;;;;;;;;-1:-1:-1;34648:334:0;;;;;:::i;:::-;;:::i;54274:26::-;;;;;;;;;;;;;:::i;36382:164::-;;;;;;;;;;-1:-1:-1;36382:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36503:25:0;;;36479:4;36503:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36382:164;6488:201;;;;;;;;;;-1:-1:-1;6488:201:0;;;;;:::i;:::-;;:::i;47735:224::-;47837:4;-1:-1:-1;;;;;;47861:50:0;;-1:-1:-1;;;47861:50:0;;:90;;;47915:36;47939:11;47915:23;:36::i;:::-;47854:97;47735:224;-1:-1:-1;;47735:224:0:o;34304:100::-;34358:13;34391:5;34384:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34304:100;:::o;35863:221::-;35939:7;39206:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39206:16:0;35959:73;;;;-1:-1:-1;;;35959:73:0;;13193:2:1;35959:73:0;;;13175:21:1;13232:2;13212:18;;;13205:30;13271:34;13251:18;;;13244:62;-1:-1:-1;;;13322:18:1;;;13315:42;13374:19;;35959:73:0;;;;;;;;;-1:-1:-1;36052:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36052:24:0;;35863:221::o;35386:411::-;35467:13;35483:23;35498:7;35483:14;:23::i;:::-;35467:39;;35531:5;-1:-1:-1;;;;;35525:11:0;:2;-1:-1:-1;;;;;35525:11:0;;;35517:57;;;;-1:-1:-1;;;35517:57:0;;14793:2:1;35517:57:0;;;14775:21:1;14832:2;14812:18;;;14805:30;14871:34;14851:18;;;14844:62;-1:-1:-1;;;14922:18:1;;;14915:31;14963:19;;35517:57:0;14591:397:1;35517:57:0;4383:10;-1:-1:-1;;;;;35609:21:0;;;;:62;;-1:-1:-1;35634:37:0;35651:5;4383:10;36382:164;:::i;35634:37::-;35587:168;;;;-1:-1:-1;;;35587:168:0;;11232:2:1;35587:168:0;;;11214:21:1;11271:2;11251:18;;;11244:30;11310:34;11290:18;;;11283:62;11381:26;11361:18;;;11354:54;11425:19;;35587:168:0;11030:420:1;35587:168:0;35768:21;35777:2;35781:7;35768:8;:21::i;:::-;35456:341;35386:411;;:::o;54428:272::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;54479:16:::1;54498:19;:9;999:14:::0;;907:114;54498:19:::1;54479:38:::0;-1:-1:-1;54172:4:0::1;54538:20;54479:38:::0;54554:3:::1;54538:15;:20::i;:::-;:33;54530:77;;;::::0;-1:-1:-1;;;54530:77:0;;6946:2:1;54530:77:0::1;::::0;::::1;6928:21:1::0;6985:2;6965:18;;;6958:30;7024:33;7004:18;;;6997:61;7075:18;;54530:77:0::1;6744:355:1::0;54530:77:0::1;54625:6;54620:73;54641:2;54637:1;:6;54620:73;;;54665:16;:14;:16::i;:::-;54645:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54620:73;;;;54468:232;54428:272::o:0;36613:339::-;36808:41;4383:10;36841:7;36808:18;:41::i;:::-;36800:103;;;;-1:-1:-1;;;36800:103:0;;;;;;;:::i;:::-;36916:28;36926:4;36932:2;36936:7;36916:9;:28::i;48043:256::-;48140:7;48176:23;48193:5;48176:16;:23::i;:::-;48168:5;:31;48160:87;;;;-1:-1:-1;;;48160:87:0;;7306:2:1;48160:87:0;;;7288:21:1;7345:2;7325:18;;;7318:30;7384:34;7364:18;;;7357:62;-1:-1:-1;;;7435:18:1;;;7428:41;7486:19;;48160:87:0;7104:407:1;48160:87:0;-1:-1:-1;;;;;;48265:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;48043:256::o;54962:460::-;55019:16;55038:19;:9;999:14;;907:114;55038:19;55019:38;-1:-1:-1;54172:4:0;55078:23;55019:38;55094:6;55078:15;:23::i;:::-;:37;;55070:71;;;;-1:-1:-1;;;55070:71:0;;10063:2:1;55070:71:0;;;10045:21:1;10102:2;10082:18;;;10075:30;-1:-1:-1;;;10121:18:1;;;10114:51;10182:18;;55070:71:0;9861:345:1;55070:71:0;55168:1;55160:6;:9;:35;;;;;54265:2;55173:6;:22;;55160:35;55152:85;;;;-1:-1:-1;;;55152:85:0;;10413:2:1;55152:85:0;;;10395:21:1;10452:2;10432:18;;;10425:30;10491:34;10471:18;;;10464:62;-1:-1:-1;;;10542:18:1;;;10535:35;10587:19;;55152:85:0;10211:401:1;55152:85:0;55269:17;54212:10;55279:6;55269:9;:17::i;:::-;55256:9;:30;;55248:77;;;;-1:-1:-1;;;55248:77:0;;9660:2:1;55248:77:0;;;9642:21:1;9699:2;9679:18;;;9672:30;9738:34;9718:18;;;9711:62;-1:-1:-1;;;9789:18:1;;;9782:32;9831:19;;55248:77:0;9458:398:1;55248:77:0;55343:6;55338:77;55359:6;55355:1;:10;55338:77;;;55387:16;:14;:16::i;:::-;55367:3;;;;:::i;:::-;;;;55338:77;;55965:276;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;56036:21:::1;56076:11:::0;56068:49:::1;;;::::0;-1:-1:-1;;;56068:49:0;;12839:2:1;56068:49:0::1;::::0;::::1;12821:21:1::0;12878:2;12858:18;;;12851:30;12917:27;12897:18;;;12890:55;12962:18;;56068:49:0::1;12637:349:1::0;56068:49:0::1;56149:37;::::0;56131:12:::1;::::0;56150:10:::1;::::0;56174:7;;56131:12;56149:37;56131:12;56149:37;56174:7;56150:10;56149:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56130:56;;;56205:7;56197:36;;;::::0;-1:-1:-1;;;56197:36:0;;15195:2:1;56197:36:0::1;::::0;::::1;15177:21:1::0;15234:2;15214:18;;;15207:30;-1:-1:-1;;;15253:18:1;;;15246:46;15309:18;;56197:36:0::1;14993:340:1::0;37023:185:0;37161:39;37178:4;37184:2;37188:7;37161:39;;;;;;;;;;;;:16;:39::i;56247:68::-;56295:14;56301:7;56295:5;:14::i;:::-;56247:68;:::o;48565:233::-;48640:7;48676:30;48463:10;:17;;48375:113;48676:30;48668:5;:38;48660:95;;;;-1:-1:-1;;;48660:95:0;;15958:2:1;48660:95:0;;;15940:21:1;15997:2;15977:18;;;15970:30;16036:34;16016:18;;;16009:62;-1:-1:-1;;;16087:18:1;;;16080:42;16139:19;;48660:95:0;15756:408:1;48660:95:0;48773:10;48784:5;48773:17;;;;;;;;:::i;:::-;;;;;;;;;48766:24;;48565:233;;;:::o;54837:113::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;54914:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;33998:239::-:0;34070:7;34106:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34106:16:0;34141:19;34133:73;;;;-1:-1:-1;;;34133:73:0;;12068:2:1;34133:73:0;;;12050:21:1;12107:2;12087:18;;;12080:30;12146:34;12126:18;;;12119:62;-1:-1:-1;;;12197:18:1;;;12190:39;12246:19;;34133:73:0;11866:405:1;33728:208:0;33800:7;-1:-1:-1;;;;;33828:19:0;;33820:74;;;;-1:-1:-1;;;33820:74:0;;11657:2:1;33820:74:0;;;11639:21:1;11696:2;11676:18;;;11669:30;11735:34;11715:18;;;11708:62;-1:-1:-1;;;11786:18:1;;;11779:40;11836:19;;33820:74:0;11455:406:1;33820:74:0;-1:-1:-1;;;;;;33912:16:0;;;;;:9;:16;;;;;;;33728:208::o;6230:103::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;6295:30:::1;6322:1;6295:18;:30::i;:::-;6230:103::o:0;55612:341::-;55674:13;55702:15;55720:17;55730:6;55720:9;:17::i;:::-;55702:35;;55748:22;55787:10;55773:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55773:25:0;;55748:50;;55816:6;55811:109;55832:10;55828:1;:14;55811:109;;;55878:30;55898:6;55906:1;55878:19;:30::i;:::-;55864:8;55873:1;55864:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;55844:3;;;;:::i;:::-;;;;55811:109;;;-1:-1:-1;55937:8:0;55612:341;-1:-1:-1;;;55612:341:0:o;34473:104::-;34529:13;34562:7;34555:14;;;;;:::i;36156:155::-;36251:52;4383:10;36284:8;36294;36251:18;:52::i;37279:328::-;37454:41;4383:10;37487:7;37454:18;:41::i;:::-;37446:103;;;;-1:-1:-1;;;37446:103:0;;;;;;;:::i;:::-;37560:39;37574:4;37580:2;37584:7;37593:5;37560:13;:39::i;:::-;37279:328;;;;:::o;34648:334::-;39182:4;39206:16;;;:7;:16;;;;;;34721:13;;-1:-1:-1;;;;;39206:16:0;34747:76;;;;-1:-1:-1;;;34747:76:0;;14377:2:1;34747:76:0;;;14359:21:1;14416:2;14396:18;;;14389:30;14455:34;14435:18;;;14428:62;-1:-1:-1;;;14506:18:1;;;14499:45;14561:19;;34747:76:0;14175:411:1;34747:76:0;34836:21;34860:10;:8;:10::i;:::-;34836:34;;34912:1;34894:7;34888:21;:25;:86;;;;;;;;;;;;;;;;;34940:7;34949:18;:7;:16;:18::i;:::-;34923:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34888:86;34881:93;34648:334;-1:-1:-1;;;34648:334:0:o;54274:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6488:201::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6577:22:0;::::1;6569:73;;;::::0;-1:-1:-1;;;6569:73:0;;8137:2:1;6569:73:0::1;::::0;::::1;8119:21:1::0;8176:2;8156:18;;;8149:30;8215:34;8195:18;;;8188:62;-1:-1:-1;;;8266:18:1;;;8259:36;8312:19;;6569:73:0::1;7935:402:1::0;6569:73:0::1;6653:28;6672:8;6653:18;:28::i;33359:305::-:0;33461:4;-1:-1:-1;;;;;;33498:40:0;;-1:-1:-1;;;33498:40:0;;:105;;-1:-1:-1;;;;;;;33555:48:0;;-1:-1:-1;;;33555:48:0;33498:105;:158;;;-1:-1:-1;;;;;;;;;;18120:40:0;;;33620:36;18011:157;43099:174;43174:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;43174:29:0;-1:-1:-1;;;;;43174:29:0;;;;;;;;:24;;43228:23;43174:24;43228:14;:23::i;:::-;-1:-1:-1;;;;;43219:46:0;;;;;;;;;;;43099:174;;:::o;27804:98::-;27862:7;27889:5;27893:1;27889;:5;:::i;55434:166::-;55479:15;55497:19;:9;999:14;;907:114;55497:19;55479:37;;55527:33;55537:10;55549;55527:9;:33::i;:::-;55571:21;:9;1118:19;;1136:1;1118:19;;;1029:127;39411:348;39504:4;39206:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39206:16:0;39521:73;;;;-1:-1:-1;;;39521:73:0;;10819:2:1;39521:73:0;;;10801:21:1;10858:2;10838:18;;;10831:30;10897:34;10877:18;;;10870:62;-1:-1:-1;;;10948:18:1;;;10941:42;11000:19;;39521:73:0;10617:408:1;39521:73:0;39605:13;39621:23;39636:7;39621:14;:23::i;:::-;39605:39;;39674:5;-1:-1:-1;;;;;39663:16:0;:7;-1:-1:-1;;;;;39663:16:0;;:51;;;;39707:7;-1:-1:-1;;;;;39683:31:0;:20;39695:7;39683:11;:20::i;:::-;-1:-1:-1;;;;;39683:31:0;;39663:51;:87;;;-1:-1:-1;;;;;;36503:25:0;;;36479:4;36503:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39718:32;39655:96;39411:348;-1:-1:-1;;;;39411:348:0:o;42403:578::-;42562:4;-1:-1:-1;;;;;42535:31:0;:23;42550:7;42535:14;:23::i;:::-;-1:-1:-1;;;;;42535:31:0;;42527:85;;;;-1:-1:-1;;;42527:85:0;;13967:2:1;42527:85:0;;;13949:21:1;14006:2;13986:18;;;13979:30;14045:34;14025:18;;;14018:62;-1:-1:-1;;;14096:18:1;;;14089:39;14145:19;;42527:85:0;13765:405:1;42527:85:0;-1:-1:-1;;;;;42631:16:0;;42623:65;;;;-1:-1:-1;;;42623:65:0;;8901:2:1;42623:65:0;;;8883:21:1;8940:2;8920:18;;;8913:30;8979:34;8959:18;;;8952:62;-1:-1:-1;;;9030:18:1;;;9023:34;9074:19;;42623:65:0;8699:400:1;42623:65:0;42701:39;42722:4;42728:2;42732:7;42701:20;:39::i;:::-;42805:29;42822:1;42826:7;42805:8;:29::i;:::-;-1:-1:-1;;;;;42847:15:0;;;;;;:9;:15;;;;;:20;;42866:1;;42847:15;:20;;42866:1;;42847:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42878:13:0;;;;;;:9;:13;;;;;:18;;42895:1;;42878:13;:18;;42895:1;;42878:18;:::i;:::-;;;;-1:-1:-1;;42907:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42907:21:0;-1:-1:-1;;;;;42907:21:0;;;;;;;;;42946:27;;42907:16;;42946:27;;;;;;;42403:578;;;:::o;28542:98::-;28600:7;28627:5;28631:1;28627;:5;:::i;41706:360::-;41766:13;41782:23;41797:7;41782:14;:23::i;:::-;41766:39;;41818:48;41839:5;41854:1;41858:7;41818:20;:48::i;:::-;41907:29;41924:1;41928:7;41907:8;:29::i;:::-;-1:-1:-1;;;;;41949:16:0;;;;;;:9;:16;;;;;:21;;41969:1;;41949:16;:21;;41969:1;;41949:21;:::i;:::-;;;;-1:-1:-1;;41988:16:0;;;;:7;:16;;;;;;41981:23;;-1:-1:-1;;;;;;41981:23:0;;;42022:36;41996:7;;41988:16;-1:-1:-1;;;;;42022:36:0;;;;;41988:16;;42022:36;41755:311;41706:360;:::o;6849:191::-;6942:6;;;-1:-1:-1;;;;;6959:17:0;;;-1:-1:-1;;;;;;6959:17:0;;;;;;;6992:40;;6942:6;;;6959:17;6942:6;;6992:40;;6923:16;;6992:40;6912:128;6849:191;:::o;43415:315::-;43570:8;-1:-1:-1;;;;;43561:17:0;:5;-1:-1:-1;;;;;43561:17:0;;;43553:55;;;;-1:-1:-1;;;43553:55:0;;9306:2:1;43553:55:0;;;9288:21:1;9345:2;9325:18;;;9318:30;9384:27;9364:18;;;9357:55;9429:18;;43553:55:0;9104:349:1;43553:55:0;-1:-1:-1;;;;;43619:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;43619:46:0;;;;;;;;;;43681:41;;6468::1;;;43681::0;;6441:18:1;43681:41:0;;;;;;;43415:315;;;:::o;38489:::-;38646:28;38656:4;38662:2;38666:7;38646:9;:28::i;:::-;38693:48;38716:4;38722:2;38726:7;38735:5;38693:22;:48::i;:::-;38685:111;;;;-1:-1:-1;;;38685:111:0;;;;;;;:::i;54712:113::-;54772:13;54805:12;54798:19;;;;;:::i;1865:723::-;1921:13;2142:10;2138:53;;-1:-1:-1;;2169:10:0;;;;;;;;;;;;-1:-1:-1;;;2169:10:0;;;;;1865:723::o;2138:53::-;2216:5;2201:12;2257:78;2264:9;;2257:78;;2290:8;;;;:::i;:::-;;-1:-1:-1;2313:10:0;;-1:-1:-1;2321:2:0;2313:10;;:::i;:::-;;;2257:78;;;2345:19;2377:6;2367:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2367:17:0;;2345:39;;2395:154;2402:10;;2395:154;;2429:11;2439:1;2429:11;;:::i;:::-;;-1:-1:-1;2498:10:0;2506:2;2498:5;:10;:::i;:::-;2485:24;;:2;:24;:::i;:::-;2472:39;;2455:6;2462;2455:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2455:56:0;;;;;;;;-1:-1:-1;2526:11:0;2535:2;2526:11;;:::i;:::-;;;2395:154;;40101:110;40177:26;40187:2;40191:7;40177:26;;;;;;;;;;;;:9;:26::i;49411:589::-;-1:-1:-1;;;;;49617:18:0;;49613:187;;49652:40;49684:7;50827:10;:17;;50800:24;;;;:15;:24;;;;;:44;;;50855:24;;;;;;;;;;;;50723:164;49652:40;49613:187;;;49722:2;-1:-1:-1;;;;;49714:10:0;:4;-1:-1:-1;;;;;49714:10:0;;49710:90;;49741:47;49774:4;49780:7;49741:32;:47::i;:::-;-1:-1:-1;;;;;49814:16:0;;49810:183;;49847:45;49884:7;49847:36;:45::i;49810:183::-;49920:4;-1:-1:-1;;;;;49914:10:0;:2;-1:-1:-1;;;;;49914:10:0;;49910:83;;49941:40;49969:2;49973:7;49941:27;:40::i;44295:799::-;44450:4;-1:-1:-1;;;;;44471:13:0;;8190:20;8238:8;44467:620;;44507:72;;-1:-1:-1;;;44507:72:0;;-1:-1:-1;;;;;44507:36:0;;;;;:72;;4383:10;;44558:4;;44564:7;;44573:5;;44507:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44507:72:0;;;;;;;;-1:-1:-1;;44507:72:0;;;;;;;;;;;;:::i;:::-;;;44503:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44749:13:0;;44745:272;;44792:60;;-1:-1:-1;;;44792:60:0;;;;;;;:::i;44745:272::-;44967:6;44961:13;44952:6;44948:2;44944:15;44937:38;44503:529;-1:-1:-1;;;;;;44630:51:0;-1:-1:-1;;;44630:51:0;;-1:-1:-1;44623:58:0;;44467:620;-1:-1:-1;45071:4:0;44295:799;;;;;;:::o;40438:321::-;40568:18;40574:2;40578:7;40568:5;:18::i;:::-;40619:54;40650:1;40654:2;40658:7;40667:5;40619:22;:54::i;:::-;40597:154;;;;-1:-1:-1;;;40597:154:0;;;;;;;:::i;51514:988::-;51780:22;51830:1;51805:22;51822:4;51805:16;:22::i;:::-;:26;;;;:::i;:::-;51842:18;51863:26;;;:17;:26;;;;;;51780:51;;-1:-1:-1;51996:28:0;;;51992:328;;-1:-1:-1;;;;;52063:18:0;;52041:19;52063:18;;;:12;:18;;;;;;;;:34;;;;;;;;;52114:30;;;;;;:44;;;52231:30;;:17;:30;;;;;:43;;;51992:328;-1:-1:-1;52416:26:0;;;;:17;:26;;;;;;;;52409:33;;;-1:-1:-1;;;;;52460:18:0;;;;;:12;:18;;;;;:34;;;;;;;52453:41;51514:988::o;52797:1079::-;53075:10;:17;53050:22;;53075:21;;53095:1;;53075:21;:::i;:::-;53107:18;53128:24;;;:15;:24;;;;;;53501:10;:26;;53050:46;;-1:-1:-1;53128:24:0;;53050:46;;53501:26;;;;;;:::i;:::-;;;;;;;;;53479:48;;53565:11;53540:10;53551;53540:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;53645:28;;;:15;:28;;;;;;;:41;;;53817:24;;;;;53810:31;53852:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;52868:1008;;;52797:1079;:::o;50301:221::-;50386:14;50403:20;50420:2;50403:16;:20::i;:::-;-1:-1:-1;;;;;50434:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;50479:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;50301:221:0:o;41095:382::-;-1:-1:-1;;;;;41175:16:0;;41167:61;;;;-1:-1:-1;;;41167:61:0;;12478:2:1;41167:61:0;;;12460:21:1;;;12497:18;;;12490:30;12556:34;12536:18;;;12529:62;12608:18;;41167:61:0;12276:356:1;41167:61:0;39182:4;39206:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39206:16:0;:30;41239:58;;;;-1:-1:-1;;;41239:58:0;;8544:2:1;41239:58:0;;;8526:21:1;8583:2;8563:18;;;8556:30;8622;8602:18;;;8595:58;8670:18;;41239:58:0;8342:352:1;41239:58:0;41310:45;41339:1;41343:2;41347:7;41310:20;:45::i;:::-;-1:-1:-1;;;;;41368:13:0;;;;;;:9;:13;;;;;:18;;41385:1;;41368:13;:18;;41385:1;;41368:18;:::i;:::-;;;;-1:-1:-1;;41397:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41397:21:0;-1:-1:-1;;;;;41397:21:0;;;;;;;;41436:33;;41397:16;;;41436:33;;41397:16;;41436:33;41095:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;5198:488::-;-1:-1:-1;;;;;5467:15:1;;;5449:34;;5519:15;;5514:2;5499:18;;5492:43;5566:2;5551:18;;5544:34;;;5614:3;5609:2;5594:18;;5587:31;;;5392:4;;5635:45;;5660:19;;5652:6;5635:45;:::i;:::-;5627:53;5198:488;-1:-1:-1;;;;;;5198:488:1:o;5691:632::-;5862:2;5914:21;;;5984:13;;5887:18;;;6006:22;;;5833:4;;5862:2;6085:15;;;;6059:2;6044:18;;;5833:4;6128:169;6142:6;6139:1;6136:13;6128:169;;;6203:13;;6191:26;;6272:15;;;;6237:12;;;;6164:1;6157:9;6128:169;;;-1:-1:-1;6314:3:1;;5691:632;-1:-1:-1;;;;;;5691:632:1:o;6520:219::-;6669:2;6658:9;6651:21;6632:4;6689:44;6729:2;6718:9;6714:18;6706:6;6689:44;:::i;7516:414::-;7718:2;7700:21;;;7757:2;7737:18;;;7730:30;7796:34;7791:2;7776:18;;7769:62;-1:-1:-1;;;7862:2:1;7847:18;;7840:48;7920:3;7905:19;;7516:414::o;13404:356::-;13606:2;13588:21;;;13625:18;;;13618:30;13684:34;13679:2;13664:18;;13657:62;13751:2;13736:18;;13404:356::o;15338:413::-;15540:2;15522:21;;;15579:2;15559:18;;;15552:30;15618:34;15613:2;15598:18;;15591:62;-1:-1:-1;;;15684:2:1;15669:18;;15662:47;15741:3;15726:19;;15338:413::o;16351:128::-;16391:3;16422:1;16418:6;16415:1;16412:13;16409:39;;;16428:18;;:::i;:::-;-1:-1:-1;16464:9:1;;16351:128::o;16484:120::-;16524:1;16550;16540:35;;16555:18;;:::i;:::-;-1:-1:-1;16589:9:1;;16484:120::o;16609:168::-;16649:7;16715:1;16711;16707:6;16703:14;16700:1;16697:21;16692:1;16685:9;16678:17;16674:45;16671:71;;;16722:18;;:::i;:::-;-1:-1:-1;16762:9:1;;16609:168::o;16782:125::-;16822:4;16850:1;16847;16844:8;16841:34;;;16855:18;;:::i;:::-;-1:-1:-1;16892:9:1;;16782:125::o;16912:258::-;16984:1;16994:113;17008:6;17005:1;17002:13;16994:113;;;17084:11;;;17078:18;17065:11;;;17058:39;17030:2;17023:10;16994:113;;;17125:6;17122:1;17119:13;17116:48;;;-1:-1:-1;;17160:1:1;17142:16;;17135:27;16912:258::o;17175:380::-;17254:1;17250:12;;;;17297;;;17318:61;;17372:4;17364:6;17360:17;17350:27;;17318:61;17425:2;17417:6;17414:14;17394:18;17391:38;17388:161;;;17471:10;17466:3;17462:20;17459:1;17452:31;17506:4;17503:1;17496:15;17534:4;17531:1;17524:15;17388:161;;17175:380;;;:::o;17560:135::-;17599:3;-1:-1:-1;;17620:17:1;;17617:43;;;17640:18;;:::i;:::-;-1:-1:-1;17687:1:1;17676:13;;17560:135::o;17700:112::-;17732:1;17758;17748:35;;17763:18;;:::i;:::-;-1:-1:-1;17797:9:1;;17700:112::o;17817:127::-;17878:10;17873:3;17869:20;17866:1;17859:31;17909:4;17906:1;17899:15;17933:4;17930:1;17923:15;17949:127;18010:10;18005:3;18001:20;17998:1;17991:31;18041:4;18038:1;18031:15;18065:4;18062:1;18055:15;18081:127;18142:10;18137:3;18133:20;18130:1;18123:31;18173:4;18170:1;18163:15;18197:4;18194:1;18187:15;18213:127;18274:10;18269:3;18265:20;18262:1;18255:31;18305:4;18302:1;18295:15;18329:4;18326:1;18319:15;18345:127;18406:10;18401:3;18397:20;18394:1;18387:31;18437:4;18434:1;18427:15;18461:4;18458:1;18451:15;18477:131;-1:-1:-1;;;;;;18551:32:1;;18541:43;;18531:71;;18598:1;18595;18588:12

Swarm Source

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