ETH Price: $2,516.93 (+1.77%)

Token

Femdoodles (FEMDOODLES)
 

Overview

Max Total Supply

640 FEMDOODLES

Holders

196

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cryptobits.eth
Balance
1 FEMDOODLES
0xD26B9A32606B276413C7EB68E0B236E882caE0F3
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:
Femdoodles

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/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 no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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();
    }
}

contract Femdoodles is ERC721Enumerable, Ownable {
    using Strings for uint256;
    using SafeMath for uint256;
    string public baseURI;
    string public notRevealedUri;
    uint256 public cost = 0.01 ether;
    uint256 public maxSupply = 5000;
    uint256 public nftPerAddressLimit = 5;
    uint256 public tokenCount = 0;
    bool public paused = false;
    bool public reveal;
    bool public presaleActive = true;
    bool public mainSaleActive;
    address[] public whitelistedAddresses;

    mapping(address => uint256) public addressMintedBalance;

    constructor(string memory _initBaseURI, string memory _initNotRevealedUri)
        ERC721("Femdoodles", "FEMDOODLES")
    {
        baseURI = _initBaseURI;
        notRevealedUri = _initNotRevealedUri;
    }

    function isWhitelisted(address _user) public view returns (bool) {
        for (uint256 i = 0; i < whitelistedAddresses.length; i++) {
            if (whitelistedAddresses[i] == _user) {
                return true;
            }
        }
        return false;
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Token ID does not exist");
        if (reveal) {
            return
                bytes(baseURI).length > 0
                    ? string(
                        abi.encodePacked(
                            baseURI,
                            "/",
                            tokenId.toString(),
                            ".json"
                        )
                    )
                    : "";
        } else {
            return bytes(notRevealedUri).length > 0 ? notRevealedUri : "";
        }
    }

    function preSaleMint(uint256 _amount) external payable {
        require(!paused, "the contract is paused");
        require(
            isWhitelisted(_msgSender()),
            "Femdoodles - Presale Only for Whitelist users."
        );
        require(presaleActive, "Femdoodles - Presale is not active.");
        uint256 supply = totalSupply();
        require(supply + _amount <= maxSupply, "max NFT limit exceeded");
        require(_amount <= nftPerAddressLimit);
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(
            ownerMintedCount + _amount <= nftPerAddressLimit,
            "max NFT per address exceeded"
        );
        if (supply + _amount > 30) {
            if (msg.sender != owner()) {
                require(
                    msg.value >= cost * _amount,
                    "Femdoodles::mint: insufficient ethers"
                );
            }
        }
        for (uint256 i = 1; i <= _amount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, ++tokenCount);
        }
    }

    function mint(uint256 _amount) external payable {
        require(!paused, "the contract is paused");
        require(mainSaleActive, "Femdoodles::mint: Mint is not active.");
        uint256 supply = totalSupply();
        require(supply + _amount <= maxSupply, "max NFT limit exceeded");
        if (msg.sender != owner()) {
            require(_amount <= nftPerAddressLimit);
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(
                ownerMintedCount + _amount <= nftPerAddressLimit,
                "max NFT per address exceeded"
            );
            require(
                msg.value >= cost * _amount,
                "Femdoodles::mint: insufficient ethers"
            );
        }
        for (uint256 i = 1; i <= _amount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, ++tokenCount);
        }
    }

    //only owner
    function revealNFT() external onlyOwner {
        reveal = !reveal;
    }

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

    function setNFTPerAddressLimit(uint256 _nftPerAddressLimit)
        public
        onlyOwner
    {
        nftPerAddressLimit = _nftPerAddressLimit;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function pause() public onlyOwner {
        paused = !paused;
    }

    function activateMainSale() external onlyOwner {
        presaleActive = !presaleActive;
        mainSaleActive = !mainSaleActive;
    }

    function addWhitelistUsers(address[] calldata _users) public onlyOwner {
        delete whitelistedAddresses;
        whitelistedAddresses = _users;
    }

    function withdraw() public onlyOwner {
        uint256 amount = address(this).balance;
        (bool os1, ) = payable(0x1cc04Bac38015Bd444e1E33FA35b9377B13ED9C2).call{
            value: amount.mul(15).div(100)
        }("");
        require(os1);
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":"activateMainSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addWhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealNFT","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftPerAddressLimit","type":"uint256"}],"name":"setNFTPerAddressLimit","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":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc10000600d55611388600e556005600f5560006010556011805462ff00ff1916620100001790553480156200003d57600080fd5b5060405162002f8b38038062002f8b8339810160408190526200006091620002ee565b6040518060400160405280600a81526020016946656d646f6f646c657360b01b8152506040518060400160405280600a81526020016946454d444f4f444c455360b01b8152508160009080519060200190620000be9291906200017b565b508051620000d49060019060208401906200017b565b505050620000f1620000eb6200012560201b60201c565b62000129565b81516200010690600b9060208501906200017b565b5080516200011c90600c9060208401906200017b565b50505062000395565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001899062000358565b90600052602060002090601f016020900481019282620001ad5760008555620001f8565b82601f10620001c857805160ff1916838001178555620001f8565b82800160010185558215620001f8579182015b82811115620001f8578251825591602001919060010190620001db565b50620002069291506200020a565b5090565b5b808211156200020657600081556001016200020b565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200024957600080fd5b81516001600160401b038082111562000266576200026662000221565b604051601f8301601f19908116603f0116810190828211818310171562000291576200029162000221565b81604052838152602092508683858801011115620002ae57600080fd5b600091505b83821015620002d25785820183015181830184015290820190620002b3565b83821115620002e45760008385830101525b9695505050505050565b600080604083850312156200030257600080fd5b82516001600160401b03808211156200031a57600080fd5b620003288683870162000237565b935060208501519150808211156200033f57600080fd5b506200034e8582860162000237565b9150509250929050565b600181811c908216806200036d57607f821691505b602082108114156200038f57634e487b7160e01b600052602260045260246000fd5b50919050565b612be680620003a56000396000f3fe60806040526004361061025c5760003560e01c80636352211e11610144578063a0712d68116100b6578063ba7d2c761161007a578063ba7d2c76146106cc578063c87b56dd146106e2578063ccd65c0a14610702578063d5abeb0114610717578063e985e9c51461072d578063f2fde38b1461077657600080fd5b8063a0712d681461063a578063a22cb4651461064d578063a475b5dd1461066d578063b88d4fde1461068c578063ba4e5c49146106ac57600080fd5b8063715018a611610108578063715018a6146105b45780637835c635146105c95780638456cb59146105dc5780638da5cb5b146105f157806395d89b411461060f5780639f181b5e1461062457600080fd5b80636352211e1461051f578063686b28121461053f5780636c0360eb1461055f5780636d47bcab1461057457806370a082311461059457600080fd5b806325e89283116101dd578063438b6300116101a1578063438b63001461045857806344a0d68a146104855780634f6ccce7146104a557806353135ca0146104c557806355f804b3146104e55780635c975abb1461050557600080fd5b806325e89283146103c25780632f745c59146103e35780633af32abf146104035780633ccfd60b1461042357806342842e0e1461043857600080fd5b8063095ea7b311610224578063095ea7b31461031c57806313faede61461033c57806318160ddd1461036057806318cae2691461037557806323b872dd146103a257600080fd5b806301ffc9a71461026157806304b4bba91461029657806306fdde03146102ad578063081812fc146102cf578063081c8c4414610307575b600080fd5b34801561026d57600080fd5b5061028161027c36600461247c565b610796565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107c1565b005b3480156102b957600080fd5b506102c2610811565b60405161028d91906124f1565b3480156102db57600080fd5b506102ef6102ea366004612504565b6108a3565b6040516001600160a01b03909116815260200161028d565b34801561031357600080fd5b506102c2610938565b34801561032857600080fd5b506102ab610337366004612534565b6109c6565b34801561034857600080fd5b50610352600d5481565b60405190815260200161028d565b34801561036c57600080fd5b50600854610352565b34801561038157600080fd5b5061035261039036600461255e565b60136020526000908152604090205481565b3480156103ae57600080fd5b506102ab6103bd366004612579565b610adc565b3480156103ce57600080fd5b50601154610281906301000000900460ff1681565b3480156103ef57600080fd5b506103526103fe366004612534565b610b0d565b34801561040f57600080fd5b5061028161041e36600461255e565b610ba3565b34801561042f57600080fd5b506102ab610c0d565b34801561044457600080fd5b506102ab610453366004612579565b610d25565b34801561046457600080fd5b5061047861047336600461255e565b610d40565b60405161028d91906125b5565b34801561049157600080fd5b506102ab6104a0366004612504565b610de2565b3480156104b157600080fd5b506103526104c0366004612504565b610e11565b3480156104d157600080fd5b506011546102819062010000900460ff1681565b3480156104f157600080fd5b506102ab610500366004612685565b610ea4565b34801561051157600080fd5b506011546102819060ff1681565b34801561052b57600080fd5b506102ef61053a366004612504565b610ee5565b34801561054b57600080fd5b506102ab61055a3660046126ce565b610f5c565b34801561056b57600080fd5b506102c2610f9e565b34801561058057600080fd5b506102ab61058f366004612504565b610fab565b3480156105a057600080fd5b506103526105af36600461255e565b610fda565b3480156105c057600080fd5b506102ab611061565b6102ab6105d7366004612504565b611097565b3480156105e857600080fd5b506102ab61133f565b3480156105fd57600080fd5b50600a546001600160a01b03166102ef565b34801561061b57600080fd5b506102c261137d565b34801561063057600080fd5b5061035260105481565b6102ab610648366004612504565b61138c565b34801561065957600080fd5b506102ab610668366004612743565b6115ab565b34801561067957600080fd5b5060115461028190610100900460ff1681565b34801561069857600080fd5b506102ab6106a736600461277f565b611670565b3480156106b857600080fd5b506102ef6106c7366004612504565b6116a2565b3480156106d857600080fd5b50610352600f5481565b3480156106ee57600080fd5b506102c26106fd366004612504565b6116cc565b34801561070e57600080fd5b506102ab611870565b34801561072357600080fd5b50610352600e5481565b34801561073957600080fd5b506102816107483660046127fb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078257600080fd5b506102ab61079136600461255e565b6118de565b60006001600160e01b0319821663780e9d6360e01b14806107bb57506107bb82611979565b92915050565b600a546001600160a01b031633146107f45760405162461bcd60e51b81526004016107eb9061282e565b60405180910390fd5b6011805461ff001981166101009182900460ff1615909102179055565b60606000805461082090612863565b80601f016020809104026020016040519081016040528092919081815260200182805461084c90612863565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107eb565b506000908152600460205260409020546001600160a01b031690565b600c805461094590612863565b80601f016020809104026020016040519081016040528092919081815260200182805461097190612863565b80156109be5780601f10610993576101008083540402835291602001916109be565b820191906000526020600020905b8154815290600101906020018083116109a157829003601f168201915b505050505081565b60006109d182610ee5565b9050806001600160a01b0316836001600160a01b03161415610a3f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107eb565b336001600160a01b0382161480610a5b5750610a5b8133610748565b610acd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107eb565b610ad783836119c9565b505050565b610ae63382611a37565b610b025760405162461bcd60e51b81526004016107eb9061289e565b610ad7838383611b2e565b6000610b1883610fda565b8210610b7a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107eb565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601254811015610c0457826001600160a01b031660128281548110610bce57610bce6128ef565b6000918252602090912001546001600160a01b03161415610bf25750600192915050565b80610bfc8161291b565b915050610ba7565b50600092915050565b600a546001600160a01b03163314610c375760405162461bcd60e51b81526004016107eb9061282e565b476000731cc04bac38015bd444e1e33fa35b9377b13ed9c2610c656064610c5f85600f611cd9565b90611cec565b604051600081818185875af1925050503d8060008114610ca1576040519150601f19603f3d011682016040523d82523d6000602084013e610ca6565b606091505b5050905080610cb457600080fd5b6000610cc8600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d12576040519150601f19603f3d011682016040523d82523d6000602084013e610d17565b606091505b5050905080610ad757600080fd5b610ad783838360405180602001604052806000815250611670565b60606000610d4d83610fda565b905060008167ffffffffffffffff811115610d6a57610d6a6125f9565b604051908082528060200260200182016040528015610d93578160200160208202803683370190505b50905060005b82811015610dda57610dab8582610b0d565b828281518110610dbd57610dbd6128ef565b602090810291909101015280610dd28161291b565b915050610d99565b509392505050565b600a546001600160a01b03163314610e0c5760405162461bcd60e51b81526004016107eb9061282e565b600d55565b6000610e1c60085490565b8210610e7f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107eb565b60088281548110610e9257610e926128ef565b90600052602060002001549050919050565b600a546001600160a01b03163314610ece5760405162461bcd60e51b81526004016107eb9061282e565b8051610ee190600b90602084019061235c565b5050565b6000818152600260205260408120546001600160a01b0316806107bb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107eb565b600a546001600160a01b03163314610f865760405162461bcd60e51b81526004016107eb9061282e565b610f92601260006123e0565b610ad7601283836123fe565b600b805461094590612863565b600a546001600160a01b03163314610fd55760405162461bcd60e51b81526004016107eb9061282e565b600f55565b60006001600160a01b0382166110455760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107eb565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461108b5760405162461bcd60e51b81526004016107eb9061282e565b6110956000611cf8565b565b60115460ff16156110e35760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107eb565b6110ec33610ba3565b61114f5760405162461bcd60e51b815260206004820152602e60248201527f46656d646f6f646c6573202d2050726573616c65204f6e6c7920666f7220576860448201526d34ba32b634b9ba103ab9b2b9399760911b60648201526084016107eb565b60115462010000900460ff166111b35760405162461bcd60e51b815260206004820152602360248201527f46656d646f6f646c6573202d2050726573616c65206973206e6f7420616374696044820152623b329760e91b60648201526084016107eb565b60006111be60085490565b600e549091506111ce8383612936565b11156112155760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107eb565b600f5482111561122457600080fd5b33600090815260136020526040902054600f546112418483612936565b111561128f5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107eb565b601e61129b8484612936565b11156112e057600a546001600160a01b031633146112e05782600d546112c1919061294e565b3410156112e05760405162461bcd60e51b81526004016107eb9061296d565b60015b838111611339573360009081526013602052604081208054916113058361291b565b91905055506113273360106000815461131d9061291b565b9182905550611d4a565b806113318161291b565b9150506112e3565b50505050565b600a546001600160a01b031633146113695760405162461bcd60e51b81526004016107eb9061282e565b6011805460ff19811660ff90911615179055565b60606001805461082090612863565b60115460ff16156113d85760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107eb565b6011546301000000900460ff1661143f5760405162461bcd60e51b815260206004820152602560248201527f46656d646f6f646c65733a3a6d696e743a204d696e74206973206e6f742061636044820152643a34bb329760d91b60648201526084016107eb565b600061144a60085490565b600e5490915061145a8383612936565b11156114a15760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107eb565b600a546001600160a01b0316331461155c57600f548211156114c257600080fd5b33600090815260136020526040902054600f546114df8483612936565b111561152d5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107eb565b82600d5461153b919061294e565b34101561155a5760405162461bcd60e51b81526004016107eb9061296d565b505b60015b828111610ad7573360009081526013602052604081208054916115818361291b565b91905055506115993360106000815461131d9061291b565b806115a38161291b565b91505061155f565b6001600160a01b0382163314156116045760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107eb565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61167a3383611a37565b6116965760405162461bcd60e51b81526004016107eb9061289e565b61133984848484611d64565b601281815481106116b257600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260409020546060906001600160a01b03166117435760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e20494420646f6573206e6f6044820152661d08195e1a5cdd60ca1b60648201526084016107eb565b601154610100900460ff16156117af576000600b805461176290612863565b90501161177e57604051806020016040528060008152506107bb565b600b61178983611d97565b60405160200161179a9291906129ce565b60405160208183030381529060405292915050565b6000600c80546117be90612863565b9050116117da57604051806020016040528060008152506107bb565b600c80546117e790612863565b80601f016020809104026020016040519081016040528092919081815260200182805461181390612863565b80156118605780601f1061183557610100808354040283529160200191611860565b820191906000526020600020905b81548152906001019060200180831161184357829003601f168201915b505050505092915050565b919050565b600a546001600160a01b0316331461189a5760405162461bcd60e51b81526004016107eb9061282e565b60118054630100000060ff620100008084048216150262ff000019841681178390049091161590910263ff0000001990911663ffff00001990921691909117179055565b600a546001600160a01b031633146119085760405162461bcd60e51b81526004016107eb9061282e565b6001600160a01b03811661196d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107eb565b61197681611cf8565b50565b60006001600160e01b031982166380ac58cd60e01b14806119aa57506001600160e01b03198216635b5e139f60e01b145b806107bb57506301ffc9a760e01b6001600160e01b03198316146107bb565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119fe82610ee5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ab05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107eb565b6000611abb83610ee5565b9050806001600160a01b0316846001600160a01b03161480611af65750836001600160a01b0316611aeb846108a3565b6001600160a01b0316145b80611b2657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b4182610ee5565b6001600160a01b031614611ba95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107eb565b6001600160a01b038216611c0b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107eb565b611c16838383611e95565b611c216000826119c9565b6001600160a01b0383166000908152600360205260408120805460019290611c4a908490612a99565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c78908490612936565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611ce5828461294e565b9392505050565b6000611ce58284612ac6565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ee1828260405180602001604052806000815250611f4d565b611d6f848484611b2e565b611d7b84848484611f80565b6113395760405162461bcd60e51b81526004016107eb90612ada565b606081611dbb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611de55780611dcf8161291b565b9150611dde9050600a83612ac6565b9150611dbf565b60008167ffffffffffffffff811115611e0057611e006125f9565b6040519080825280601f01601f191660200182016040528015611e2a576020820181803683370190505b5090505b8415611b2657611e3f600183612a99565b9150611e4c600a86612b2c565b611e57906030612936565b60f81b818381518110611e6c57611e6c6128ef565b60200101906001600160f81b031916908160001a905350611e8e600a86612ac6565b9450611e2e565b6001600160a01b038316611ef057611eeb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f13565b816001600160a01b0316836001600160a01b031614611f1357611f13838261207e565b6001600160a01b038216611f2a57610ad78161211b565b826001600160a01b0316826001600160a01b031614610ad757610ad782826121ca565b611f57838361220e565b611f646000848484611f80565b610ad75760405162461bcd60e51b81526004016107eb90612ada565b60006001600160a01b0384163b1561207357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fc4903390899088908890600401612b40565b6020604051808303816000875af1925050508015611fff575060408051601f3d908101601f19168201909252611ffc91810190612b7d565b60015b612059573d80801561202d576040519150601f19603f3d011682016040523d82523d6000602084013e612032565b606091505b5080516120515760405162461bcd60e51b81526004016107eb90612ada565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b26565b506001949350505050565b6000600161208b84610fda565b6120959190612a99565b6000838152600760205260409020549091508082146120e8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061212d90600190612a99565b60008381526009602052604081205460088054939450909284908110612155576121556128ef565b906000526020600020015490508060088381548110612176576121766128ef565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121ae576121ae612b9a565b6001900381819060005260206000200160009055905550505050565b60006121d583610fda565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122645760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107eb565b6000818152600260205260409020546001600160a01b0316156122c95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107eb565b6122d560008383611e95565b6001600160a01b03821660009081526003602052604081208054600192906122fe908490612936565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461236890612863565b90600052602060002090601f01602090048101928261238a57600085556123d0565b82601f106123a357805160ff19168380011785556123d0565b828001600101855582156123d0579182015b828111156123d05782518255916020019190600101906123b5565b506123dc929150612451565b5090565b50805460008255906000526020600020908101906119769190612451565b8280548282559060005260206000209081019282156123d0579160200282015b828111156123d05781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061241e565b5b808211156123dc5760008155600101612452565b6001600160e01b03198116811461197657600080fd5b60006020828403121561248e57600080fd5b8135611ce581612466565b60005b838110156124b457818101518382015260200161249c565b838111156113395750506000910152565b600081518084526124dd816020860160208601612499565b601f01601f19169290920160200192915050565b602081526000611ce560208301846124c5565b60006020828403121561251657600080fd5b5035919050565b80356001600160a01b038116811461186b57600080fd5b6000806040838503121561254757600080fd5b6125508361251d565b946020939093013593505050565b60006020828403121561257057600080fd5b611ce58261251d565b60008060006060848603121561258e57600080fd5b6125978461251d565b92506125a56020850161251d565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156125ed578351835292840192918401916001016125d1565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561262a5761262a6125f9565b604051601f8501601f19908116603f01168101908282118183101715612652576126526125f9565b8160405280935085815286868601111561266b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561269757600080fd5b813567ffffffffffffffff8111156126ae57600080fd5b8201601f810184136126bf57600080fd5b611b268482356020840161260f565b600080602083850312156126e157600080fd5b823567ffffffffffffffff808211156126f957600080fd5b818501915085601f83011261270d57600080fd5b81358181111561271c57600080fd5b8660208260051b850101111561273157600080fd5b60209290920196919550909350505050565b6000806040838503121561275657600080fd5b61275f8361251d565b91506020830135801515811461277457600080fd5b809150509250929050565b6000806000806080858703121561279557600080fd5b61279e8561251d565b93506127ac6020860161251d565b925060408501359150606085013567ffffffffffffffff8111156127cf57600080fd5b8501601f810187136127e057600080fd5b6127ef8782356020840161260f565b91505092959194509250565b6000806040838503121561280e57600080fd5b6128178361251d565b91506128256020840161251d565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061287757607f821691505b6020821081141561289857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561292f5761292f612905565b5060010190565b6000821982111561294957612949612905565b500190565b600081600019048311821515161561296857612968612905565b500290565b60208082526025908201527f46656d646f6f646c65733a3a6d696e743a20696e73756666696369656e742065604082015264746865727360d81b606082015260800190565b600081516129c4818560208601612499565b9290920192915050565b600080845481600182811c9150808316806129ea57607f831692505b6020808410821415612a0a57634e487b7160e01b86526022600452602486fd5b818015612a1e5760018114612a2f57612a5c565b60ff19861689528489019650612a5c565b60008b81526020902060005b86811015612a545781548b820152908501908301612a3b565b505084890196505b505050505050612a90612a7f612a7983602f60f81b815260010190565b866129b2565b64173539b7b760d91b815260050190565b95945050505050565b600082821015612aab57612aab612905565b500390565b634e487b7160e01b600052601260045260246000fd5b600082612ad557612ad5612ab0565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612b3b57612b3b612ab0565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b73908301846124c5565b9695505050505050565b600060208284031215612b8f57600080fd5b8151611ce581612466565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220ea717006e9fbce53d48fa51314ef3eb35aa7f0b448c72e21c0dfd7d6c431e74d64736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d51544b3950716f6d703568656a523678557176686546337542434d507743514450786d6e4555437a7363627400000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d636d6f65576632547259423653737755537533664c59444b43364c6167324c424d33615668415577776e70430000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636352211e11610144578063a0712d68116100b6578063ba7d2c761161007a578063ba7d2c76146106cc578063c87b56dd146106e2578063ccd65c0a14610702578063d5abeb0114610717578063e985e9c51461072d578063f2fde38b1461077657600080fd5b8063a0712d681461063a578063a22cb4651461064d578063a475b5dd1461066d578063b88d4fde1461068c578063ba4e5c49146106ac57600080fd5b8063715018a611610108578063715018a6146105b45780637835c635146105c95780638456cb59146105dc5780638da5cb5b146105f157806395d89b411461060f5780639f181b5e1461062457600080fd5b80636352211e1461051f578063686b28121461053f5780636c0360eb1461055f5780636d47bcab1461057457806370a082311461059457600080fd5b806325e89283116101dd578063438b6300116101a1578063438b63001461045857806344a0d68a146104855780634f6ccce7146104a557806353135ca0146104c557806355f804b3146104e55780635c975abb1461050557600080fd5b806325e89283146103c25780632f745c59146103e35780633af32abf146104035780633ccfd60b1461042357806342842e0e1461043857600080fd5b8063095ea7b311610224578063095ea7b31461031c57806313faede61461033c57806318160ddd1461036057806318cae2691461037557806323b872dd146103a257600080fd5b806301ffc9a71461026157806304b4bba91461029657806306fdde03146102ad578063081812fc146102cf578063081c8c4414610307575b600080fd5b34801561026d57600080fd5b5061028161027c36600461247c565b610796565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107c1565b005b3480156102b957600080fd5b506102c2610811565b60405161028d91906124f1565b3480156102db57600080fd5b506102ef6102ea366004612504565b6108a3565b6040516001600160a01b03909116815260200161028d565b34801561031357600080fd5b506102c2610938565b34801561032857600080fd5b506102ab610337366004612534565b6109c6565b34801561034857600080fd5b50610352600d5481565b60405190815260200161028d565b34801561036c57600080fd5b50600854610352565b34801561038157600080fd5b5061035261039036600461255e565b60136020526000908152604090205481565b3480156103ae57600080fd5b506102ab6103bd366004612579565b610adc565b3480156103ce57600080fd5b50601154610281906301000000900460ff1681565b3480156103ef57600080fd5b506103526103fe366004612534565b610b0d565b34801561040f57600080fd5b5061028161041e36600461255e565b610ba3565b34801561042f57600080fd5b506102ab610c0d565b34801561044457600080fd5b506102ab610453366004612579565b610d25565b34801561046457600080fd5b5061047861047336600461255e565b610d40565b60405161028d91906125b5565b34801561049157600080fd5b506102ab6104a0366004612504565b610de2565b3480156104b157600080fd5b506103526104c0366004612504565b610e11565b3480156104d157600080fd5b506011546102819062010000900460ff1681565b3480156104f157600080fd5b506102ab610500366004612685565b610ea4565b34801561051157600080fd5b506011546102819060ff1681565b34801561052b57600080fd5b506102ef61053a366004612504565b610ee5565b34801561054b57600080fd5b506102ab61055a3660046126ce565b610f5c565b34801561056b57600080fd5b506102c2610f9e565b34801561058057600080fd5b506102ab61058f366004612504565b610fab565b3480156105a057600080fd5b506103526105af36600461255e565b610fda565b3480156105c057600080fd5b506102ab611061565b6102ab6105d7366004612504565b611097565b3480156105e857600080fd5b506102ab61133f565b3480156105fd57600080fd5b50600a546001600160a01b03166102ef565b34801561061b57600080fd5b506102c261137d565b34801561063057600080fd5b5061035260105481565b6102ab610648366004612504565b61138c565b34801561065957600080fd5b506102ab610668366004612743565b6115ab565b34801561067957600080fd5b5060115461028190610100900460ff1681565b34801561069857600080fd5b506102ab6106a736600461277f565b611670565b3480156106b857600080fd5b506102ef6106c7366004612504565b6116a2565b3480156106d857600080fd5b50610352600f5481565b3480156106ee57600080fd5b506102c26106fd366004612504565b6116cc565b34801561070e57600080fd5b506102ab611870565b34801561072357600080fd5b50610352600e5481565b34801561073957600080fd5b506102816107483660046127fb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078257600080fd5b506102ab61079136600461255e565b6118de565b60006001600160e01b0319821663780e9d6360e01b14806107bb57506107bb82611979565b92915050565b600a546001600160a01b031633146107f45760405162461bcd60e51b81526004016107eb9061282e565b60405180910390fd5b6011805461ff001981166101009182900460ff1615909102179055565b60606000805461082090612863565b80601f016020809104026020016040519081016040528092919081815260200182805461084c90612863565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107eb565b506000908152600460205260409020546001600160a01b031690565b600c805461094590612863565b80601f016020809104026020016040519081016040528092919081815260200182805461097190612863565b80156109be5780601f10610993576101008083540402835291602001916109be565b820191906000526020600020905b8154815290600101906020018083116109a157829003601f168201915b505050505081565b60006109d182610ee5565b9050806001600160a01b0316836001600160a01b03161415610a3f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107eb565b336001600160a01b0382161480610a5b5750610a5b8133610748565b610acd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107eb565b610ad783836119c9565b505050565b610ae63382611a37565b610b025760405162461bcd60e51b81526004016107eb9061289e565b610ad7838383611b2e565b6000610b1883610fda565b8210610b7a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107eb565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601254811015610c0457826001600160a01b031660128281548110610bce57610bce6128ef565b6000918252602090912001546001600160a01b03161415610bf25750600192915050565b80610bfc8161291b565b915050610ba7565b50600092915050565b600a546001600160a01b03163314610c375760405162461bcd60e51b81526004016107eb9061282e565b476000731cc04bac38015bd444e1e33fa35b9377b13ed9c2610c656064610c5f85600f611cd9565b90611cec565b604051600081818185875af1925050503d8060008114610ca1576040519150601f19603f3d011682016040523d82523d6000602084013e610ca6565b606091505b5050905080610cb457600080fd5b6000610cc8600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d12576040519150601f19603f3d011682016040523d82523d6000602084013e610d17565b606091505b5050905080610ad757600080fd5b610ad783838360405180602001604052806000815250611670565b60606000610d4d83610fda565b905060008167ffffffffffffffff811115610d6a57610d6a6125f9565b604051908082528060200260200182016040528015610d93578160200160208202803683370190505b50905060005b82811015610dda57610dab8582610b0d565b828281518110610dbd57610dbd6128ef565b602090810291909101015280610dd28161291b565b915050610d99565b509392505050565b600a546001600160a01b03163314610e0c5760405162461bcd60e51b81526004016107eb9061282e565b600d55565b6000610e1c60085490565b8210610e7f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107eb565b60088281548110610e9257610e926128ef565b90600052602060002001549050919050565b600a546001600160a01b03163314610ece5760405162461bcd60e51b81526004016107eb9061282e565b8051610ee190600b90602084019061235c565b5050565b6000818152600260205260408120546001600160a01b0316806107bb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107eb565b600a546001600160a01b03163314610f865760405162461bcd60e51b81526004016107eb9061282e565b610f92601260006123e0565b610ad7601283836123fe565b600b805461094590612863565b600a546001600160a01b03163314610fd55760405162461bcd60e51b81526004016107eb9061282e565b600f55565b60006001600160a01b0382166110455760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107eb565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461108b5760405162461bcd60e51b81526004016107eb9061282e565b6110956000611cf8565b565b60115460ff16156110e35760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107eb565b6110ec33610ba3565b61114f5760405162461bcd60e51b815260206004820152602e60248201527f46656d646f6f646c6573202d2050726573616c65204f6e6c7920666f7220576860448201526d34ba32b634b9ba103ab9b2b9399760911b60648201526084016107eb565b60115462010000900460ff166111b35760405162461bcd60e51b815260206004820152602360248201527f46656d646f6f646c6573202d2050726573616c65206973206e6f7420616374696044820152623b329760e91b60648201526084016107eb565b60006111be60085490565b600e549091506111ce8383612936565b11156112155760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107eb565b600f5482111561122457600080fd5b33600090815260136020526040902054600f546112418483612936565b111561128f5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107eb565b601e61129b8484612936565b11156112e057600a546001600160a01b031633146112e05782600d546112c1919061294e565b3410156112e05760405162461bcd60e51b81526004016107eb9061296d565b60015b838111611339573360009081526013602052604081208054916113058361291b565b91905055506113273360106000815461131d9061291b565b9182905550611d4a565b806113318161291b565b9150506112e3565b50505050565b600a546001600160a01b031633146113695760405162461bcd60e51b81526004016107eb9061282e565b6011805460ff19811660ff90911615179055565b60606001805461082090612863565b60115460ff16156113d85760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107eb565b6011546301000000900460ff1661143f5760405162461bcd60e51b815260206004820152602560248201527f46656d646f6f646c65733a3a6d696e743a204d696e74206973206e6f742061636044820152643a34bb329760d91b60648201526084016107eb565b600061144a60085490565b600e5490915061145a8383612936565b11156114a15760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107eb565b600a546001600160a01b0316331461155c57600f548211156114c257600080fd5b33600090815260136020526040902054600f546114df8483612936565b111561152d5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107eb565b82600d5461153b919061294e565b34101561155a5760405162461bcd60e51b81526004016107eb9061296d565b505b60015b828111610ad7573360009081526013602052604081208054916115818361291b565b91905055506115993360106000815461131d9061291b565b806115a38161291b565b91505061155f565b6001600160a01b0382163314156116045760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107eb565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61167a3383611a37565b6116965760405162461bcd60e51b81526004016107eb9061289e565b61133984848484611d64565b601281815481106116b257600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260409020546060906001600160a01b03166117435760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e20494420646f6573206e6f6044820152661d08195e1a5cdd60ca1b60648201526084016107eb565b601154610100900460ff16156117af576000600b805461176290612863565b90501161177e57604051806020016040528060008152506107bb565b600b61178983611d97565b60405160200161179a9291906129ce565b60405160208183030381529060405292915050565b6000600c80546117be90612863565b9050116117da57604051806020016040528060008152506107bb565b600c80546117e790612863565b80601f016020809104026020016040519081016040528092919081815260200182805461181390612863565b80156118605780601f1061183557610100808354040283529160200191611860565b820191906000526020600020905b81548152906001019060200180831161184357829003601f168201915b505050505092915050565b919050565b600a546001600160a01b0316331461189a5760405162461bcd60e51b81526004016107eb9061282e565b60118054630100000060ff620100008084048216150262ff000019841681178390049091161590910263ff0000001990911663ffff00001990921691909117179055565b600a546001600160a01b031633146119085760405162461bcd60e51b81526004016107eb9061282e565b6001600160a01b03811661196d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107eb565b61197681611cf8565b50565b60006001600160e01b031982166380ac58cd60e01b14806119aa57506001600160e01b03198216635b5e139f60e01b145b806107bb57506301ffc9a760e01b6001600160e01b03198316146107bb565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119fe82610ee5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ab05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107eb565b6000611abb83610ee5565b9050806001600160a01b0316846001600160a01b03161480611af65750836001600160a01b0316611aeb846108a3565b6001600160a01b0316145b80611b2657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b4182610ee5565b6001600160a01b031614611ba95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107eb565b6001600160a01b038216611c0b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107eb565b611c16838383611e95565b611c216000826119c9565b6001600160a01b0383166000908152600360205260408120805460019290611c4a908490612a99565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c78908490612936565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611ce5828461294e565b9392505050565b6000611ce58284612ac6565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ee1828260405180602001604052806000815250611f4d565b611d6f848484611b2e565b611d7b84848484611f80565b6113395760405162461bcd60e51b81526004016107eb90612ada565b606081611dbb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611de55780611dcf8161291b565b9150611dde9050600a83612ac6565b9150611dbf565b60008167ffffffffffffffff811115611e0057611e006125f9565b6040519080825280601f01601f191660200182016040528015611e2a576020820181803683370190505b5090505b8415611b2657611e3f600183612a99565b9150611e4c600a86612b2c565b611e57906030612936565b60f81b818381518110611e6c57611e6c6128ef565b60200101906001600160f81b031916908160001a905350611e8e600a86612ac6565b9450611e2e565b6001600160a01b038316611ef057611eeb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f13565b816001600160a01b0316836001600160a01b031614611f1357611f13838261207e565b6001600160a01b038216611f2a57610ad78161211b565b826001600160a01b0316826001600160a01b031614610ad757610ad782826121ca565b611f57838361220e565b611f646000848484611f80565b610ad75760405162461bcd60e51b81526004016107eb90612ada565b60006001600160a01b0384163b1561207357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fc4903390899088908890600401612b40565b6020604051808303816000875af1925050508015611fff575060408051601f3d908101601f19168201909252611ffc91810190612b7d565b60015b612059573d80801561202d576040519150601f19603f3d011682016040523d82523d6000602084013e612032565b606091505b5080516120515760405162461bcd60e51b81526004016107eb90612ada565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b26565b506001949350505050565b6000600161208b84610fda565b6120959190612a99565b6000838152600760205260409020549091508082146120e8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061212d90600190612a99565b60008381526009602052604081205460088054939450909284908110612155576121556128ef565b906000526020600020015490508060088381548110612176576121766128ef565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121ae576121ae612b9a565b6001900381819060005260206000200160009055905550505050565b60006121d583610fda565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122645760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107eb565b6000818152600260205260409020546001600160a01b0316156122c95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107eb565b6122d560008383611e95565b6001600160a01b03821660009081526003602052604081208054600192906122fe908490612936565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461236890612863565b90600052602060002090601f01602090048101928261238a57600085556123d0565b82601f106123a357805160ff19168380011785556123d0565b828001600101855582156123d0579182015b828111156123d05782518255916020019190600101906123b5565b506123dc929150612451565b5090565b50805460008255906000526020600020908101906119769190612451565b8280548282559060005260206000209081019282156123d0579160200282015b828111156123d05781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061241e565b5b808211156123dc5760008155600101612452565b6001600160e01b03198116811461197657600080fd5b60006020828403121561248e57600080fd5b8135611ce581612466565b60005b838110156124b457818101518382015260200161249c565b838111156113395750506000910152565b600081518084526124dd816020860160208601612499565b601f01601f19169290920160200192915050565b602081526000611ce560208301846124c5565b60006020828403121561251657600080fd5b5035919050565b80356001600160a01b038116811461186b57600080fd5b6000806040838503121561254757600080fd5b6125508361251d565b946020939093013593505050565b60006020828403121561257057600080fd5b611ce58261251d565b60008060006060848603121561258e57600080fd5b6125978461251d565b92506125a56020850161251d565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156125ed578351835292840192918401916001016125d1565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561262a5761262a6125f9565b604051601f8501601f19908116603f01168101908282118183101715612652576126526125f9565b8160405280935085815286868601111561266b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561269757600080fd5b813567ffffffffffffffff8111156126ae57600080fd5b8201601f810184136126bf57600080fd5b611b268482356020840161260f565b600080602083850312156126e157600080fd5b823567ffffffffffffffff808211156126f957600080fd5b818501915085601f83011261270d57600080fd5b81358181111561271c57600080fd5b8660208260051b850101111561273157600080fd5b60209290920196919550909350505050565b6000806040838503121561275657600080fd5b61275f8361251d565b91506020830135801515811461277457600080fd5b809150509250929050565b6000806000806080858703121561279557600080fd5b61279e8561251d565b93506127ac6020860161251d565b925060408501359150606085013567ffffffffffffffff8111156127cf57600080fd5b8501601f810187136127e057600080fd5b6127ef8782356020840161260f565b91505092959194509250565b6000806040838503121561280e57600080fd5b6128178361251d565b91506128256020840161251d565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061287757607f821691505b6020821081141561289857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561292f5761292f612905565b5060010190565b6000821982111561294957612949612905565b500190565b600081600019048311821515161561296857612968612905565b500290565b60208082526025908201527f46656d646f6f646c65733a3a6d696e743a20696e73756666696369656e742065604082015264746865727360d81b606082015260800190565b600081516129c4818560208601612499565b9290920192915050565b600080845481600182811c9150808316806129ea57607f831692505b6020808410821415612a0a57634e487b7160e01b86526022600452602486fd5b818015612a1e5760018114612a2f57612a5c565b60ff19861689528489019650612a5c565b60008b81526020902060005b86811015612a545781548b820152908501908301612a3b565b505084890196505b505050505050612a90612a7f612a7983602f60f81b815260010190565b866129b2565b64173539b7b760d91b815260050190565b95945050505050565b600082821015612aab57612aab612905565b500390565b634e487b7160e01b600052601260045260246000fd5b600082612ad557612ad5612ab0565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612b3b57612b3b612ab0565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b73908301846124c5565b9695505050505050565b600060208284031215612b8f57600080fd5b8151611ce581612466565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220ea717006e9fbce53d48fa51314ef3eb35aa7f0b448c72e21c0dfd7d6c431e74d64736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d51544b3950716f6d703568656a523678557176686546337542434d507743514450786d6e4555437a7363627400000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d636d6f65576632547259423653737755537533664c59444b43364c6167324c424d33615668415577776e70430000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmQTK9Pqomp5hejR6xUqvheF3uBCMPwCQDPxmnEUCzscbt
Arg [1] : _initNotRevealedUri (string): ipfs://QmcmoeWf2TrYB6SswUSu3fLYDKC6Lag2LBM3aVhAUwwnpC

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d51544b3950716f6d703568656a52367855717668654633
Arg [4] : 7542434d507743514450786d6e4555437a736362740000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [6] : 697066733a2f2f516d636d6f65576632547259423653737755537533664c5944
Arg [7] : 4b43364c6167324c424d33615668415577776e70430000000000000000000000


Deployed Bytecode Sourcemap

52205:5487:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45793:300;;;;;;;;;;-1:-1:-1;45793:300:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;45793:300:0;;;;;;;;56483:75;;;;;;;;;;;;;:::i;:::-;;32957:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34650:308::-;;;;;;;;;;-1:-1:-1;34650:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;34650:308:0;1550:203:1;52354:28:0;;;;;;;;;;;;;:::i;34173:411::-;;;;;;;;;;-1:-1:-1;34173:411:0;;;;;:::i;:::-;;:::i;52389:32::-;;;;;;;;;;;;;;;;;;;2341:25:1;;;2329:2;2314:18;52389:32:0;2195:177:1;46596:113:0;;;;;;;;;;-1:-1:-1;46684:10:0;:17;46596:113;;52722:55;;;;;;;;;;-1:-1:-1;52722:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;35709:376;;;;;;;;;;-1:-1:-1;35709:376:0;;;;;:::i;:::-;;:::i;52643:26::-;;;;;;;;;;-1:-1:-1;52643:26:0;;;;;;;;;;;46177:343;;;;;;;;;;-1:-1:-1;46177:343:0;;;;;:::i;:::-;;:::i;53006:274::-;;;;;;;;;;-1:-1:-1;53006:274:0;;;;;:::i;:::-;;:::i;57328:361::-;;;;;;;;;;;;;:::i;36156:185::-;;;;;;;;;;-1:-1:-1;36156:185:0;;;;;:::i;:::-;;:::i;53288:390::-;;;;;;;;;;-1:-1:-1;53288:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56566:86::-;;;;;;;;;;-1:-1:-1;56566:86:0;;;;;:::i;:::-;;:::i;46786:320::-;;;;;;;;;;-1:-1:-1;46786:320:0;;;;;:::i;:::-;;:::i;52604:32::-;;;;;;;;;;-1:-1:-1;52604:32:0;;;;;;;;;;;56827:104;;;;;;;;;;-1:-1:-1;56827:104:0;;;;;:::i;:::-;;:::i;52546:26::-;;;;;;;;;;-1:-1:-1;52546:26:0;;;;;;;;32564:326;;;;;;;;;;-1:-1:-1;32564:326:0;;;;;:::i;:::-;;:::i;57163:157::-;;;;;;;;;;-1:-1:-1;57163:157:0;;;;;:::i;:::-;;:::i;52326:21::-;;;;;;;;;;;;;:::i;56660:159::-;;;;;;;;;;-1:-1:-1;56660:159:0;;;;;:::i;:::-;;:::i;32207:295::-;;;;;;;;;;-1:-1:-1;32207:295:0;;;;;:::i;:::-;;:::i;11749:94::-;;;;;;;;;;;;;:::i;54402:1117::-;;;;;;:::i;:::-;;:::i;56939:69::-;;;;;;;;;;;;;:::i;11098:87::-;;;;;;;;;;-1:-1:-1;11171:6:0;;-1:-1:-1;;;;;11171:6:0;11098:87;;33126:104;;;;;;;;;;;;;:::i;52510:29::-;;;;;;;;;;;;;;;;55527:930;;;;;;:::i;:::-;;:::i;35030:327::-;;;;;;;;;;-1:-1:-1;35030:327:0;;;;;:::i;:::-;;:::i;52579:18::-;;;;;;;;;;-1:-1:-1;52579:18:0;;;;;;;;;;;36412:365;;;;;;;;;;-1:-1:-1;36412:365:0;;;;;:::i;:::-;;:::i;52676:37::-;;;;;;;;;;-1:-1:-1;52676:37:0;;;;;:::i;:::-;;:::i;52466:::-;;;;;;;;;;;;;;;;53686:708;;;;;;;;;;-1:-1:-1;53686:708:0;;;;;:::i;:::-;;:::i;57016:139::-;;;;;;;;;;;;;:::i;52428:31::-;;;;;;;;;;;;;;;;35428:214;;;;;;;;;;-1:-1:-1;35428:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;35599:25:0;;;35570:4;35599:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35428:214;11998:229;;;;;;;;;;-1:-1:-1;11998:229:0;;;;;:::i;:::-;;:::i;45793:300::-;45940:4;-1:-1:-1;;;;;;45982:50:0;;-1:-1:-1;;;45982:50:0;;:103;;;46049:36;46073:11;46049:23;:36::i;:::-;45962:123;45793:300;-1:-1:-1;;45793:300:0:o;56483:75::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;;;;;;;;;56544:6:::1;::::0;;-1:-1:-1;;56534:16:0;::::1;56544:6;::::0;;;::::1;;;56543:7;56534:16:::0;;::::1;;::::0;;56483:75::o;32957:100::-;33011:13;33044:5;33037:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32957:100;:::o;34650:308::-;34771:7;38413:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38413:16:0;34796:110;;;;-1:-1:-1;;;34796:110:0;;7620:2:1;34796:110:0;;;7602:21:1;7659:2;7639:18;;;7632:30;7698:34;7678:18;;;7671:62;-1:-1:-1;;;7749:18:1;;;7742:42;7801:19;;34796:110:0;7418:408:1;34796:110:0;-1:-1:-1;34926:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34926:24:0;;34650:308::o;52354:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34173:411::-;34254:13;34270:23;34285:7;34270:14;:23::i;:::-;34254:39;;34318:5;-1:-1:-1;;;;;34312:11:0;:2;-1:-1:-1;;;;;34312:11:0;;;34304:57;;;;-1:-1:-1;;;34304:57:0;;8033:2:1;34304:57:0;;;8015:21:1;8072:2;8052:18;;;8045:30;8111:34;8091:18;;;8084:62;-1:-1:-1;;;8162:18:1;;;8155:31;8203:19;;34304:57:0;7831:397:1;34304:57:0;9947:10;-1:-1:-1;;;;;34396:21:0;;;;:62;;-1:-1:-1;34421:37:0;34438:5;9947:10;35428:214;:::i;34421:37::-;34374:168;;;;-1:-1:-1;;;34374:168:0;;8435:2:1;34374:168:0;;;8417:21:1;8474:2;8454:18;;;8447:30;8513:34;8493:18;;;8486:62;8584:26;8564:18;;;8557:54;8628:19;;34374:168:0;8233:420:1;34374:168:0;34555:21;34564:2;34568:7;34555:8;:21::i;:::-;34243:341;34173:411;;:::o;35709:376::-;35918:41;9947:10;35951:7;35918:18;:41::i;:::-;35896:140;;;;-1:-1:-1;;;35896:140:0;;;;;;;:::i;:::-;36049:28;36059:4;36065:2;36069:7;36049:9;:28::i;46177:343::-;46319:7;46374:23;46391:5;46374:16;:23::i;:::-;46366:5;:31;46344:124;;;;-1:-1:-1;;;46344:124:0;;9278:2:1;46344:124:0;;;9260:21:1;9317:2;9297:18;;;9290:30;9356:34;9336:18;;;9329:62;-1:-1:-1;;;9407:18:1;;;9400:41;9458:19;;46344:124:0;9076:407:1;46344:124:0;-1:-1:-1;;;;;;46486:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46177:343::o;53006:274::-;53065:4;;53082:168;53106:20;:27;53102:31;;53082:168;;;53186:5;-1:-1:-1;;;;;53159:32:0;:20;53180:1;53159:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;53159:23:0;:32;53155:84;;;-1:-1:-1;53219:4:0;;53006:274;-1:-1:-1;;53006:274:0:o;53155:84::-;53135:3;;;;:::i;:::-;;;;53082:168;;;-1:-1:-1;53267:5:0;;53006:274;-1:-1:-1;;53006:274:0:o;57328:361::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;57393:21:::1;57376:14;57448:42;57518:23;57537:3;57518:14;57393:21:::0;57529:2:::1;57518:10;:14::i;:::-;:18:::0;::::1;:23::i;:::-;57440:116;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57425:131;;;57575:3;57567:12;;;::::0;::::1;;57591:7;57612;11171:6:::0;;-1:-1:-1;;;;;11171:6:0;;11098:87;57612:7:::1;-1:-1:-1::0;;;;;57604:21:0::1;57633;57604:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57590:69;;;57678:2;57670:11;;;::::0;::::1;36156:185:::0;36294:39;36311:4;36317:2;36321:7;36294:39;;;;;;;;;;;;:16;:39::i;53288:390::-;53375:16;53409:23;53435:17;53445:6;53435:9;:17::i;:::-;53409:43;;53463:25;53505:15;53491:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53491:30:0;;53463:58;;53537:9;53532:113;53552:15;53548:1;:19;53532:113;;;53603:30;53623:6;53631:1;53603:19;:30::i;:::-;53589:8;53598:1;53589:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;53569:3;;;;:::i;:::-;;;;53532:113;;;-1:-1:-1;53662:8:0;53288:390;-1:-1:-1;;;53288:390:0:o;56566:86::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;56629:4:::1;:15:::0;56566:86::o;46786:320::-;46906:7;46961:30;46684:10;:17;;46596:113;46961:30;46953:5;:38;46931:132;;;;-1:-1:-1;;;46931:132:0;;10304:2:1;46931:132:0;;;10286:21:1;10343:2;10323:18;;;10316:30;10382:34;10362:18;;;10355:62;-1:-1:-1;;;10433:18:1;;;10426:42;10485:19;;46931:132:0;10102:408:1;46931:132:0;47081:10;47092:5;47081:17;;;;;;;;:::i;:::-;;;;;;;;;47074:24;;46786:320;;;:::o;56827:104::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;56902:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56827:104:::0;:::o;32564:326::-;32681:7;32722:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32722:16:0;32771:19;32749:110;;;;-1:-1:-1;;;32749:110:0;;10717:2:1;32749:110:0;;;10699:21:1;10756:2;10736:18;;;10729:30;10795:34;10775:18;;;10768:62;-1:-1:-1;;;10846:18:1;;;10839:39;10895:19;;32749:110:0;10515:405:1;57163:157:0;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;57245:27:::1;57252:20;;57245:27;:::i;:::-;57283:29;:20;57306:6:::0;;57283:29:::1;:::i;52326:21::-:0;;;;;;;:::i;56660:159::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;56771:18:::1;:40:::0;56660:159::o;32207:295::-;32324:7;-1:-1:-1;;;;;32371:19:0;;32349:111;;;;-1:-1:-1;;;32349:111:0;;11127:2:1;32349:111:0;;;11109:21:1;11166:2;11146:18;;;11139:30;11205:34;11185:18;;;11178:62;-1:-1:-1;;;11256:18:1;;;11249:40;11306:19;;32349:111:0;10925:406:1;32349:111:0;-1:-1:-1;;;;;;32478:16:0;;;;;:9;:16;;;;;;;32207:295::o;11749:94::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;11814:21:::1;11832:1;11814:9;:21::i;:::-;11749:94::o:0;54402:1117::-;54477:6;;;;54476:7;54468:42;;;;-1:-1:-1;;;54468:42:0;;11538:2:1;54468:42:0;;;11520:21:1;11577:2;11557:18;;;11550:30;-1:-1:-1;;;11596:18:1;;;11589:52;11658:18;;54468:42:0;11336:346:1;54468:42:0;54543:27;9947:10;53006:274;:::i;54543:27::-;54521:123;;;;-1:-1:-1;;;54521:123:0;;11889:2:1;54521:123:0;;;11871:21:1;11928:2;11908:18;;;11901:30;11967:34;11947:18;;;11940:62;-1:-1:-1;;;12018:18:1;;;12011:44;12072:19;;54521:123:0;11687:410:1;54521:123:0;54663:13;;;;;;;54655:61;;;;-1:-1:-1;;;54655:61:0;;12304:2:1;54655:61:0;;;12286:21:1;12343:2;12323:18;;;12316:30;12382:34;12362:18;;;12355:62;-1:-1:-1;;;12433:18:1;;;12426:33;12476:19;;54655:61:0;12102:399:1;54655:61:0;54727:14;54744:13;46684:10;:17;;46596:113;54744:13;54796:9;;54727:30;;-1:-1:-1;54776:16:0;54785:7;54727:30;54776:16;:::i;:::-;:29;;54768:64;;;;-1:-1:-1;;;54768:64:0;;12841:2:1;54768:64:0;;;12823:21:1;12880:2;12860:18;;;12853:30;-1:-1:-1;;;12899:18:1;;;12892:52;12961:18;;54768:64:0;12639:346:1;54768:64:0;54862:18;;54851:7;:29;;54843:38;;;;;;54940:10;54892:24;54919:32;;;:20;:32;;;;;;55014:18;;54984:26;55003:7;54919:32;54984:26;:::i;:::-;:48;;54962:126;;;;-1:-1:-1;;;54962:126:0;;13192:2:1;54962:126:0;;;13174:21:1;13231:2;13211:18;;;13204:30;13270;13250:18;;;13243:58;13318:18;;54962:126:0;12990:352:1;54962:126:0;55122:2;55103:16;55112:7;55103:6;:16;:::i;:::-;:21;55099:253;;;11171:6;;-1:-1:-1;;;;;11171:6:0;55145:10;:21;55141:200;;55237:7;55230:4;;:14;;;;:::i;:::-;55217:9;:27;;55187:138;;;;-1:-1:-1;;;55187:138:0;;;;;;;:::i;:::-;55379:1;55362:150;55387:7;55382:1;:12;55362:150;;55437:10;55416:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;55465:35;55475:10;55489;;55487:12;;;;;:::i;:::-;;;;;-1:-1:-1;55465:9:0;:35::i;:::-;55396:3;;;;:::i;:::-;;;;55362:150;;;;54457:1062;;54402:1117;:::o;56939:69::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;56994:6:::1;::::0;;-1:-1:-1;;56984:16:0;::::1;56994:6;::::0;;::::1;56993:7;56984:16;::::0;;56939:69::o;33126:104::-;33182:13;33215:7;33208:14;;;;;:::i;55527:930::-;55595:6;;;;55594:7;55586:42;;;;-1:-1:-1;;;55586:42:0;;11538:2:1;55586:42:0;;;11520:21:1;11577:2;11557:18;;;11550:30;-1:-1:-1;;;11596:18:1;;;11589:52;11658:18;;55586:42:0;11336:346:1;55586:42:0;55647:14;;;;;;;55639:64;;;;-1:-1:-1;;;55639:64:0;;14128:2:1;55639:64:0;;;14110:21:1;14167:2;14147:18;;;14140:30;14206:34;14186:18;;;14179:62;-1:-1:-1;;;14257:18:1;;;14250:35;14302:19;;55639:64:0;13926:401:1;55639:64:0;55714:14;55731:13;46684:10;:17;;46596:113;55731:13;55783:9;;55714:30;;-1:-1:-1;55763:16:0;55772:7;55714:30;55763:16;:::i;:::-;:29;;55755:64;;;;-1:-1:-1;;;55755:64:0;;12841:2:1;55755:64:0;;;12823:21:1;12880:2;12860:18;;;12853:30;-1:-1:-1;;;12899:18:1;;;12892:52;12961:18;;55755:64:0;12639:346:1;55755:64:0;11171:6;;-1:-1:-1;;;;;11171:6:0;55834:10;:21;55830:460;;55891:18;;55880:7;:29;;55872:38;;;;;;55973:10;55925:24;55952:32;;;:20;:32;;;;;;56055:18;;56025:26;56044:7;55952:32;56025:26;:::i;:::-;:48;;55999:138;;;;-1:-1:-1;;;55999:138:0;;13192:2:1;55999:138:0;;;13174:21:1;13231:2;13211:18;;;13204:30;13270;13250:18;;;13243:58;13318:18;;55999:138:0;12990:352:1;55999:138:0;56198:7;56191:4;;:14;;;;:::i;:::-;56178:9;:27;;56152:126;;;;-1:-1:-1;;;56152:126:0;;;;;;;:::i;:::-;55857:433;55830:460;56317:1;56300:150;56325:7;56320:1;:12;56300:150;;56375:10;56354:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;56403:35;56413:10;56427;;56425:12;;;;;:::i;56403:35::-;56334:3;;;;:::i;:::-;;;;56300:150;;35030:327;-1:-1:-1;;;;;35165:24:0;;9947:10;35165:24;;35157:62;;;;-1:-1:-1;;;35157:62:0;;14534:2:1;35157:62:0;;;14516:21:1;14573:2;14553:18;;;14546:30;14612:27;14592:18;;;14585:55;14657:18;;35157:62:0;14332:349:1;35157:62:0;9947:10;35232:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35232:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35232:53:0;;;;;;;;;;35301:48;;540:41:1;;;35232:42:0;;9947:10;35301:48;;513:18:1;35301:48:0;;;;;;;35030:327;;:::o;36412:365::-;36601:41;9947:10;36634:7;36601:18;:41::i;:::-;36579:140;;;;-1:-1:-1;;;36579:140:0;;;;;;;:::i;:::-;36730:39;36744:4;36750:2;36754:7;36763:5;36730:13;:39::i;52676:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52676:37:0;;-1:-1:-1;52676:37:0;:::o;53686:708::-;38389:4;38413:16;;;:7;:16;;;;;;53787:13;;-1:-1:-1;;;;;38413:16:0;53818:68;;;;-1:-1:-1;;;53818:68:0;;14888:2:1;53818:68:0;;;14870:21:1;14927:2;14907:18;;;14900:30;14966:34;14946:18;;;14939:62;-1:-1:-1;;;15017:18:1;;;15010:37;15064:19;;53818:68:0;14686:403:1;53818:68:0;53901:6;;;;;;;53897:490;;;53972:1;53954:7;53948:21;;;;;:::i;:::-;;;:25;:333;;;;;;;;;;;;;;;;;54077:7;54149:18;:7;:16;:18::i;:::-;54030:202;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53924:357;53686:708;-1:-1:-1;;53686:708:0:o;53897:490::-;54352:1;54327:14;54321:28;;;;;:::i;:::-;;;:32;:54;;;;;;;;;;;;;;;;;54356:14;54321:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54314:61;53686:708;-1:-1:-1;;53686:708:0:o;53897:490::-;53686:708;;;:::o;57016:139::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;57091:13:::1;::::0;;57133:14;57091:13:::1;::::0;;;::::1;::::0;::::1;57090:14;57074:30;-1:-1:-1::0;;57074:30:0;::::1;::::0;::::1;57133:14:::0;;::::1;::::0;;::::1;57132:15;57115:32:::0;;::::1;-1:-1:-1::0;;57115:32:0;;;-1:-1:-1;;57115:32:0;;;;;;;::::1;::::0;;57016:139::o;11998:229::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12101:22:0;::::1;12079:110;;;::::0;-1:-1:-1;;;12079:110:0;;17287:2:1;12079:110:0::1;::::0;::::1;17269:21:1::0;17326:2;17306:18;;;17299:30;17365:34;17345:18;;;17338:62;-1:-1:-1;;;17416:18:1;;;17409:36;17462:19;;12079:110:0::1;17085:402:1::0;12079:110:0::1;12200:19;12210:8;12200:9;:19::i;:::-;11998:229:::0;:::o;31788:355::-;31935:4;-1:-1:-1;;;;;;31977:40:0;;-1:-1:-1;;;31977:40:0;;:105;;-1:-1:-1;;;;;;;32034:48:0;;-1:-1:-1;;;32034:48:0;31977:105;:158;;;-1:-1:-1;;;;;;;;;;23729:40:0;;;32099:36;23570:207;42447:174;42522:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42522:29:0;-1:-1:-1;;;;;42522:29:0;;;;;;;;:24;;42576:23;42522:24;42576:14;:23::i;:::-;-1:-1:-1;;;;;42567:46:0;;;;;;;;;;;42447:174;;:::o;38618:452::-;38747:4;38413:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38413:16:0;38769:110;;;;-1:-1:-1;;;38769:110:0;;17694:2:1;38769:110:0;;;17676:21:1;17733:2;17713:18;;;17706:30;17772:34;17752:18;;;17745:62;-1:-1:-1;;;17823:18:1;;;17816:42;17875:19;;38769:110:0;17492:408:1;38769:110:0;38890:13;38906:23;38921:7;38906:14;:23::i;:::-;38890:39;;38959:5;-1:-1:-1;;;;;38948:16:0;:7;-1:-1:-1;;;;;38948:16:0;;:64;;;;39005:7;-1:-1:-1;;;;;38981:31:0;:20;38993:7;38981:11;:20::i;:::-;-1:-1:-1;;;;;38981:31:0;;38948:64;:113;;;-1:-1:-1;;;;;;35599:25:0;;;35570:4;35599:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39029:32;38940:122;38618:452;-1:-1:-1;;;;38618:452:0:o;41714:615::-;41887:4;-1:-1:-1;;;;;41860:31:0;:23;41875:7;41860:14;:23::i;:::-;-1:-1:-1;;;;;41860:31:0;;41838:122;;;;-1:-1:-1;;;41838:122:0;;18107:2:1;41838:122:0;;;18089:21:1;18146:2;18126:18;;;18119:30;18185:34;18165:18;;;18158:62;-1:-1:-1;;;18236:18:1;;;18229:39;18285:19;;41838:122:0;17905:405:1;41838:122:0;-1:-1:-1;;;;;41979:16:0;;41971:65;;;;-1:-1:-1;;;41971:65:0;;18517:2:1;41971:65:0;;;18499:21:1;18556:2;18536:18;;;18529:30;18595:34;18575:18;;;18568:62;-1:-1:-1;;;18646:18:1;;;18639:34;18690:19;;41971:65:0;18315:400:1;41971:65:0;42049:39;42070:4;42076:2;42080:7;42049:20;:39::i;:::-;42153:29;42170:1;42174:7;42153:8;:29::i;:::-;-1:-1:-1;;;;;42195:15:0;;;;;;:9;:15;;;;;:20;;42214:1;;42195:15;:20;;42214:1;;42195:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42226:13:0;;;;;;:9;:13;;;;;:18;;42243:1;;42226:13;:18;;42243:1;;42226:18;:::i;:::-;;;;-1:-1:-1;;42255:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42255:21:0;-1:-1:-1;;;;;42255:21:0;;;;;;;;;42294:27;;42255:16;;42294:27;;;;;;;41714:615;;;:::o;3721:98::-;3779:7;3806:5;3810:1;3806;:5;:::i;:::-;3799:12;3721:98;-1:-1:-1;;;3721:98:0:o;4120:::-;4178:7;4205:5;4209:1;4205;:5;:::i;12235:173::-;12310:6;;;-1:-1:-1;;;;;12327:17:0;;;-1:-1:-1;;;;;;12327:17:0;;;;;;;12360:40;;12310:6;;;12327:17;12310:6;;12360:40;;12291:16;;12360:40;12280:128;12235:173;:::o;39412:110::-;39488:26;39498:2;39502:7;39488:26;;;;;;;;;;;;:9;:26::i;37659:352::-;37816:28;37826:4;37832:2;37836:7;37816:9;:28::i;:::-;37877:48;37900:4;37906:2;37910:7;37919:5;37877:22;:48::i;:::-;37855:148;;;;-1:-1:-1;;;37855:148:0;;;;;;;:::i;7455:723::-;7511:13;7732:10;7728:53;;-1:-1:-1;;7759:10:0;;;;;;;;;;;;-1:-1:-1;;;7759:10:0;;;;;7455:723::o;7728:53::-;7806:5;7791:12;7847:78;7854:9;;7847:78;;7880:8;;;;:::i;:::-;;-1:-1:-1;7903:10:0;;-1:-1:-1;7911:2:0;7903:10;;:::i;:::-;;;7847:78;;;7935:19;7967:6;7957:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7957:17:0;;7935:39;;7985:154;7992:10;;7985:154;;8019:11;8029:1;8019:11;;:::i;:::-;;-1:-1:-1;8088:10:0;8096:2;8088:5;:10;:::i;:::-;8075:24;;:2;:24;:::i;:::-;8062:39;;8045:6;8052;8045:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8045:56:0;;;;;;;;-1:-1:-1;8116:11:0;8125:2;8116:11;;:::i;:::-;;;7985:154;;47719:589;-1:-1:-1;;;;;47925:18:0;;47921:187;;47960:40;47992:7;49135:10;:17;;49108:24;;;;:15;:24;;;;;:44;;;49163:24;;;;;;;;;;;;49031:164;47960:40;47921:187;;;48030:2;-1:-1:-1;;;;;48022:10:0;:4;-1:-1:-1;;;;;48022:10:0;;48018:90;;48049:47;48082:4;48088:7;48049:32;:47::i;:::-;-1:-1:-1;;;;;48122:16:0;;48118:183;;48155:45;48192:7;48155:36;:45::i;48118:183::-;48228:4;-1:-1:-1;;;;;48222:10:0;:2;-1:-1:-1;;;;;48222:10:0;;48218:83;;48249:40;48277:2;48281:7;48249:27;:40::i;39749:321::-;39879:18;39885:2;39889:7;39879:5;:18::i;:::-;39930:54;39961:1;39965:2;39969:7;39978:5;39930:22;:54::i;:::-;39908:154;;;;-1:-1:-1;;;39908:154:0;;;;;;;:::i;43186:980::-;43341:4;-1:-1:-1;;;;;43362:13:0;;13500:20;13548:8;43358:801;;43415:175;;-1:-1:-1;;;43415:175:0;;-1:-1:-1;;;;;43415:36:0;;;;;:175;;9947:10;;43509:4;;43536:7;;43566:5;;43415:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43415:175:0;;;;;;;;-1:-1:-1;;43415:175:0;;;;;;;;;;;;:::i;:::-;;;43394:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43773:13:0;;43769:320;;43816:108;;-1:-1:-1;;;43816:108:0;;;;;;;:::i;43769:320::-;44039:6;44033:13;44024:6;44020:2;44016:15;44009:38;43394:710;-1:-1:-1;;;;;;43654:51:0;-1:-1:-1;;;43654:51:0;;-1:-1:-1;43647:58:0;;43358:801;-1:-1:-1;44143:4:0;43186:980;;;;;;:::o;49822:1002::-;50102:22;50152:1;50127:22;50144:4;50127:16;:22::i;:::-;:26;;;;:::i;:::-;50164:18;50185:26;;;:17;:26;;;;;;50102:51;;-1:-1:-1;50318:28:0;;;50314:328;;-1:-1:-1;;;;;50385:18:0;;50363:19;50385:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50436:30;;;;;;:44;;;50553:30;;:17;:30;;;;;:43;;;50314:328;-1:-1:-1;50738:26:0;;;;:17;:26;;;;;;;;50731:33;;;-1:-1:-1;;;;;50782:18:0;;;;;:12;:18;;;;;:34;;;;;;;50775:41;49822:1002::o;51119:1079::-;51397:10;:17;51372:22;;51397:21;;51417:1;;51397:21;:::i;:::-;51429:18;51450:24;;;:15;:24;;;;;;51823:10;:26;;51372:46;;-1:-1:-1;51450:24:0;;51372:46;;51823:26;;;;;;:::i;:::-;;;;;;;;;51801:48;;51887:11;51862:10;51873;51862:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;51967:28;;;:15;:28;;;;;;;:41;;;52139:24;;;;;52132:31;52174:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51190:1008;;;51119:1079;:::o;48609:221::-;48694:14;48711:20;48728:2;48711:16;:20::i;:::-;-1:-1:-1;;;;;48742:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48787:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48609:221:0:o;40406:382::-;-1:-1:-1;;;;;40486:16:0;;40478:61;;;;-1:-1:-1;;;40478:61:0;;20736:2:1;40478:61:0;;;20718:21:1;;;20755:18;;;20748:30;20814:34;20794:18;;;20787:62;20866:18;;40478:61:0;20534:356:1;40478:61:0;38389:4;38413:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38413:16:0;:30;40550:58;;;;-1:-1:-1;;;40550:58:0;;21097:2:1;40550:58:0;;;21079:21:1;21136:2;21116:18;;;21109:30;21175;21155:18;;;21148:58;21223:18;;40550:58:0;20895:352:1;40550:58:0;40621:45;40650:1;40654:2;40658:7;40621:20;:45::i;:::-;-1:-1:-1;;;;;40679:13:0;;;;;;:9;:13;;;;;:18;;40696:1;;40679:13;:18;;40696:1;;40679:18;:::i;:::-;;;;-1:-1:-1;;40708:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40708:21:0;-1:-1:-1;;;;;40708:21:0;;;;;;;;40747:33;;40708:16;;;40747:33;;40708:16;;40747:33;40406:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1936:254;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:186::-;2436:6;2489:2;2477:9;2468:7;2464:23;2460:32;2457:52;;;2505:1;2502;2495:12;2457:52;2528:29;2547:9;2528:29;:::i;2568:328::-;2645:6;2653;2661;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;2753:29;2772:9;2753:29;:::i;:::-;2743:39;;2801:38;2835:2;2824:9;2820:18;2801:38;:::i;:::-;2791:48;;2886:2;2875:9;2871:18;2858:32;2848:42;;2568:328;;;;;:::o;2901:632::-;3072:2;3124:21;;;3194:13;;3097:18;;;3216:22;;;3043:4;;3072:2;3295:15;;;;3269:2;3254:18;;;3043:4;3338:169;3352:6;3349:1;3346:13;3338:169;;;3413:13;;3401:26;;3482:15;;;;3447:12;;;;3374:1;3367:9;3338:169;;;-1:-1:-1;3524:3:1;;2901:632;-1:-1:-1;;;;;;2901:632:1:o;3538:127::-;3599:10;3594:3;3590:20;3587:1;3580:31;3630:4;3627:1;3620:15;3654:4;3651:1;3644:15;3670:632;3735:5;3765:18;3806:2;3798:6;3795:14;3792:40;;;3812:18;;:::i;:::-;3887:2;3881:9;3855:2;3941:15;;-1:-1:-1;;3937:24:1;;;3963:2;3933:33;3929:42;3917:55;;;3987:18;;;4007:22;;;3984:46;3981:72;;;4033:18;;:::i;:::-;4073:10;4069:2;4062:22;4102:6;4093:15;;4132:6;4124;4117:22;4172:3;4163:6;4158:3;4154:16;4151:25;4148:45;;;4189:1;4186;4179:12;4148:45;4239:6;4234:3;4227:4;4219:6;4215:17;4202:44;4294:1;4287:4;4278:6;4270;4266:19;4262:30;4255:41;;;;3670:632;;;;;:::o;4307:451::-;4376:6;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4485:9;4472:23;4518:18;4510:6;4507:30;4504:50;;;4550:1;4547;4540:12;4504:50;4573:22;;4626:4;4618:13;;4614:27;-1:-1:-1;4604:55:1;;4655:1;4652;4645:12;4604:55;4678:74;4744:7;4739:2;4726:16;4721:2;4717;4713:11;4678:74;:::i;4763:615::-;4849:6;4857;4910:2;4898:9;4889:7;4885:23;4881:32;4878:52;;;4926:1;4923;4916:12;4878:52;4966:9;4953:23;4995:18;5036:2;5028:6;5025:14;5022:34;;;5052:1;5049;5042:12;5022:34;5090:6;5079:9;5075:22;5065:32;;5135:7;5128:4;5124:2;5120:13;5116:27;5106:55;;5157:1;5154;5147:12;5106:55;5197:2;5184:16;5223:2;5215:6;5212:14;5209:34;;;5239:1;5236;5229:12;5209:34;5292:7;5287:2;5277:6;5274:1;5270:14;5266:2;5262:23;5258:32;5255:45;5252:65;;;5313:1;5310;5303:12;5252:65;5344:2;5336:11;;;;;5366:6;;-1:-1:-1;4763:615:1;;-1:-1:-1;;;;4763:615:1:o;5383:347::-;5448:6;5456;5509:2;5497:9;5488:7;5484:23;5480:32;5477:52;;;5525:1;5522;5515:12;5477:52;5548:29;5567:9;5548:29;:::i;:::-;5538:39;;5627:2;5616:9;5612:18;5599:32;5674:5;5667:13;5660:21;5653:5;5650:32;5640:60;;5696:1;5693;5686:12;5640:60;5719:5;5709:15;;;5383:347;;;;;:::o;5735:667::-;5830:6;5838;5846;5854;5907:3;5895:9;5886:7;5882:23;5878:33;5875:53;;;5924:1;5921;5914:12;5875:53;5947:29;5966:9;5947:29;:::i;:::-;5937:39;;5995:38;6029:2;6018:9;6014:18;5995:38;:::i;:::-;5985:48;;6080:2;6069:9;6065:18;6052:32;6042:42;;6135:2;6124:9;6120:18;6107:32;6162:18;6154:6;6151:30;6148:50;;;6194:1;6191;6184:12;6148:50;6217:22;;6270:4;6262:13;;6258:27;-1:-1:-1;6248:55:1;;6299:1;6296;6289:12;6248:55;6322:74;6388:7;6383:2;6370:16;6365:2;6361;6357:11;6322:74;:::i;:::-;6312:84;;;5735:667;;;;;;;:::o;6407:260::-;6475:6;6483;6536:2;6524:9;6515:7;6511:23;6507:32;6504:52;;;6552:1;6549;6542:12;6504:52;6575:29;6594:9;6575:29;:::i;:::-;6565:39;;6623:38;6657:2;6646:9;6642:18;6623:38;:::i;:::-;6613:48;;6407:260;;;;;:::o;6672:356::-;6874:2;6856:21;;;6893:18;;;6886:30;6952:34;6947:2;6932:18;;6925:62;7019:2;7004:18;;6672:356::o;7033:380::-;7112:1;7108:12;;;;7155;;;7176:61;;7230:4;7222:6;7218:17;7208:27;;7176:61;7283:2;7275:6;7272:14;7252:18;7249:38;7246:161;;;7329:10;7324:3;7320:20;7317:1;7310:31;7364:4;7361:1;7354:15;7392:4;7389:1;7382:15;7246:161;;7033:380;;;:::o;8658:413::-;8860:2;8842:21;;;8899:2;8879:18;;;8872:30;8938:34;8933:2;8918:18;;8911:62;-1:-1:-1;;;9004:2:1;8989:18;;8982:47;9061:3;9046:19;;8658:413::o;9488:127::-;9549:10;9544:3;9540:20;9537:1;9530:31;9580:4;9577:1;9570:15;9604:4;9601:1;9594:15;9620:127;9681:10;9676:3;9672:20;9669:1;9662:31;9712:4;9709:1;9702:15;9736:4;9733:1;9726:15;9752:135;9791:3;-1:-1:-1;;9812:17:1;;9809:43;;;9832:18;;:::i;:::-;-1:-1:-1;9879:1:1;9868:13;;9752:135::o;12506:128::-;12546:3;12577:1;12573:6;12570:1;12567:13;12564:39;;;12583:18;;:::i;:::-;-1:-1:-1;12619:9:1;;12506:128::o;13347:168::-;13387:7;13453:1;13449;13445:6;13441:14;13438:1;13435:21;13430:1;13423:9;13416:17;13412:45;13409:71;;;13460:18;;:::i;:::-;-1:-1:-1;13500:9:1;;13347:168::o;13520:401::-;13722:2;13704:21;;;13761:2;13741:18;;;13734:30;13800:34;13795:2;13780:18;;13773:62;-1:-1:-1;;;13866:2:1;13851:18;;13844:35;13911:3;13896:19;;13520:401::o;15339:185::-;15381:3;15419:5;15413:12;15434:52;15479:6;15474:3;15467:4;15460:5;15456:16;15434:52;:::i;:::-;15502:16;;;;;15339:185;-1:-1:-1;;15339:185:1:o;15647:1433::-;16025:3;16054:1;16087:6;16081:13;16117:3;16139:1;16167:9;16163:2;16159:18;16149:28;;16227:2;16216:9;16212:18;16249;16239:61;;16293:4;16285:6;16281:17;16271:27;;16239:61;16319:2;16367;16359:6;16356:14;16336:18;16333:38;16330:165;;;-1:-1:-1;;;16394:33:1;;16450:4;16447:1;16440:15;16480:4;16401:3;16468:17;16330:165;16511:18;16538:104;;;;16656:1;16651:320;;;;16504:467;;16538:104;-1:-1:-1;;16571:24:1;;16559:37;;16616:16;;;;-1:-1:-1;16538:104:1;;16651:320;15167:1;15160:14;;;15204:4;15191:18;;16746:1;16760:165;16774:6;16771:1;16768:13;16760:165;;;16852:14;;16839:11;;;16832:35;16895:16;;;;16789:10;;16760:165;;;16764:3;;16954:6;16949:3;16945:16;16938:23;;16504:467;;;;;;;16987:87;17012:61;17038:34;17068:3;-1:-1:-1;;;15285:16:1;;15326:1;15317:11;;15220:114;17038:34;17030:6;17012:61;:::i;:::-;-1:-1:-1;;;15589:20:1;;15634:1;15625:11;;15529:113;16987:87;16980:94;15647:1433;-1:-1:-1;;;;;15647:1433:1:o;18720:125::-;18760:4;18788:1;18785;18782:8;18779:34;;;18793:18;;:::i;:::-;-1:-1:-1;18830:9:1;;18720:125::o;18850:127::-;18911:10;18906:3;18902:20;18899:1;18892:31;18942:4;18939:1;18932:15;18966:4;18963:1;18956:15;18982:120;19022:1;19048;19038:35;;19053:18;;:::i;:::-;-1:-1:-1;19087:9:1;;18982:120::o;19107:414::-;19309:2;19291:21;;;19348:2;19328:18;;;19321:30;19387:34;19382:2;19367:18;;19360:62;-1:-1:-1;;;19453:2:1;19438:18;;19431:48;19511:3;19496:19;;19107:414::o;19526:112::-;19558:1;19584;19574:35;;19589:18;;:::i;:::-;-1:-1:-1;19623:9:1;;19526:112::o;19643:500::-;-1:-1:-1;;;;;19912:15:1;;;19894:34;;19964:15;;19959:2;19944:18;;19937:43;20011:2;19996:18;;19989:34;;;20059:3;20054:2;20039:18;;20032:31;;;19837:4;;20080:57;;20117:19;;20109:6;20080:57;:::i;:::-;20072:65;19643:500;-1:-1:-1;;;;;;19643:500:1:o;20148:249::-;20217:6;20270:2;20258:9;20249:7;20245:23;20241:32;20238:52;;;20286:1;20283;20276:12;20238:52;20318:9;20312:16;20337:30;20361:5;20337:30;:::i;20402:127::-;20463:10;20458:3;20454:20;20451:1;20444:31;20494:4;20491:1;20484:15;20518:4;20515:1;20508:15

Swarm Source

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