ETH Price: $3,444.55 (-1.01%)
Gas: 2 Gwei

Token

Feel Gang Pixel (FGP)
 

Overview

Max Total Supply

230 FGP

Holders

106

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cristo17.eth
Balance
2 FGP
0xe6fa5a5998ae1b7427f5d0009eb65d414d206547
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:
FeelGangPixel

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol





pragma solidity ^0.8.10;











/**

 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including

 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.

 *

 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).

 *

 * Does not support burning tokens to address(0).

 */

contract ERC721A is

  Context,

  ERC165,

  IERC721,

  IERC721Metadata,

  IERC721Enumerable

{

  using Address for address;

  using Strings for uint256;



  struct TokenOwnership {

    address addr;

    uint64 startTimestamp;

  }



  struct AddressData {

    uint128 balance;

    uint128 numberMinted;

  }



  uint256 private currentIndex = 1;



  uint256 public immutable maxBatchSize;



  // Token name

  string private _name;



  // Token symbol

  string private _symbol;



  // Mapping from token ID to ownership details

  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.

  mapping(uint256 => TokenOwnership) private _ownerships;



  // Mapping owner address to address data

  mapping(address => AddressData) private _addressData;



  // 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

   * `maxBatchSize` refers to how much a minter can mint at a time.

   */

  constructor(

    string memory name_,

    string memory symbol_,

    uint256 maxBatchSize_

  ) {

    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");

    _name = name_;

    _symbol = symbol_;

    maxBatchSize = maxBatchSize_;

  }



  /**

   * @dev See {IERC721Enumerable-totalSupply}.

   */

  function totalSupply() public view override returns (uint256) {

    return currentIndex - 1;

  }



  /**

   * @dev See {IERC721Enumerable-tokenByIndex}.

   */

  function tokenByIndex(uint256 index) public view override returns (uint256) {

    require(index < totalSupply(), "ERC721A: global index out of bounds");

    return index;

  }



  /**

   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.

   * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.

   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.

   */

  function tokenOfOwnerByIndex(address owner, uint256 index)

    public

    view

    override

    returns (uint256)

  {

    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");

    uint256 numMintedSoFar = totalSupply();

    uint256 tokenIdsIdx = 0;

    address currOwnershipAddr = address(0);

    for (uint256 i = 0; i < numMintedSoFar; i++) {

      TokenOwnership memory ownership = _ownerships[i];

      if (ownership.addr != address(0)) {

        currOwnershipAddr = ownership.addr;

      }

      if (currOwnershipAddr == owner) {

        if (tokenIdsIdx == index) {

          return i;

        }

        tokenIdsIdx++;

      }

    }

    revert("ERC721A: unable to get token of owner by index");

  }



  /**

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

      interfaceId == type(IERC721Enumerable).interfaceId ||

      super.supportsInterface(interfaceId);

  }



  /**

   * @dev See {IERC721-balanceOf}.

   */

  function balanceOf(address owner) public view override returns (uint256) {

    require(owner != address(0), "ERC721A: balance query for the zero address");

    return uint256(_addressData[owner].balance);

  }



  function _numberMinted(address owner) internal view returns (uint256) {

    require(

      owner != address(0),

      "ERC721A: number minted query for the zero address"

    );

    return uint256(_addressData[owner].numberMinted);

  }



  function ownershipOf(uint256 tokenId)

    internal

    view

    returns (TokenOwnership memory)

  {

    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");



    uint256 lowestTokenToCheck;

    if (tokenId >= maxBatchSize) {

      lowestTokenToCheck = tokenId - maxBatchSize + 1;

    }



    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {

      TokenOwnership memory ownership = _ownerships[curr];

      if (ownership.addr != address(0)) {

        return ownership;

      }

    }



    revert("ERC721A: unable to determine the owner of token");

  }



  /**

   * @dev See {IERC721-ownerOf}.

   */

  function ownerOf(uint256 tokenId) public view override returns (address) {

    return ownershipOf(tokenId).addr;

  }



  /**

   * @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 override {

    address owner = ERC721A.ownerOf(tokenId);

    require(to != owner, "ERC721A: approval to current owner");



    require(

      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),

      "ERC721A: approve caller is not owner nor approved for all"

    );



    _approve(to, tokenId, owner);

  }



  /**

   * @dev See {IERC721-getApproved}.

   */

  function getApproved(uint256 tokenId) public view override returns (address) {

    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");



    return _tokenApprovals[tokenId];

  }



  /**

   * @dev See {IERC721-setApprovalForAll}.

   */

  function setApprovalForAll(address operator, bool approved) public override {

    require(operator != _msgSender(), "ERC721A: 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 override {

    _transfer(from, to, tokenId);

  }



  /**

   * @dev See {IERC721-safeTransferFrom}.

   */

  function safeTransferFrom(

    address from,

    address to,

    uint256 tokenId

  ) public override {

    safeTransferFrom(from, to, tokenId, "");

  }



  /**

   * @dev See {IERC721-safeTransferFrom}.

   */

  function safeTransferFrom(

    address from,

    address to,

    uint256 tokenId,

    bytes memory _data

  ) public override {

    _transfer(from, to, tokenId);

    require(

      _checkOnERC721Received(from, to, tokenId, _data),

      "ERC721A: 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`),

   */

  function _exists(uint256 tokenId) internal view returns (bool) {

    return tokenId < currentIndex;

  }



  function _safeMint(address to, uint256 quantity) internal {

    _safeMint(to, quantity, "");

  }



  /**

   * @dev Mints `quantity` tokens and transfers them to `to`.

   *

   * Requirements:

   *

   * - `to` cannot be the zero address.

   * - `quantity` cannot be larger than the max batch size.

   *

   * Emits a {Transfer} event.

   */

  function _safeMint(

    address to,

    uint256 quantity,

    bytes memory _data

  ) internal {

    uint256 startTokenId = currentIndex;

    require(to != address(0), "ERC721A: mint to the zero address");

    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.

    require(!_exists(startTokenId), "ERC721A: token already minted");

    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");



    _beforeTokenTransfers(address(0), to, startTokenId, quantity);



    AddressData memory addressData = _addressData[to];

    _addressData[to] = AddressData(

      addressData.balance + uint128(quantity),

      addressData.numberMinted + uint128(quantity)

    );

    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));



    uint256 updatedIndex = startTokenId;



    for (uint256 i = 0; i < quantity; i++) {

      emit Transfer(address(0), to, updatedIndex);

      require(

        _checkOnERC721Received(address(0), to, updatedIndex, _data),

        "ERC721A: transfer to non ERC721Receiver implementer"

      );

      updatedIndex++;

    }



    currentIndex = updatedIndex;

    _afterTokenTransfers(address(0), to, startTokenId, quantity);

  }



  /**

   * @dev Transfers `tokenId` from `from` to `to`.

   *

   * 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

  ) private {

    TokenOwnership memory prevOwnership = ownershipOf(tokenId);



    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||

      getApproved(tokenId) == _msgSender() ||

      isApprovedForAll(prevOwnership.addr, _msgSender()));



    require(

      isApprovedOrOwner,

      "ERC721A: transfer caller is not owner nor approved"

    );



    require(

      prevOwnership.addr == from,

      "ERC721A: transfer from incorrect owner"

    );

    require(to != address(0), "ERC721A: transfer to the zero address");



    _beforeTokenTransfers(from, to, tokenId, 1);



    // Clear approvals from the previous owner

    _approve(address(0), tokenId, prevOwnership.addr);



    _addressData[from].balance -= 1;

    _addressData[to].balance += 1;

    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));



    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.

    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

    uint256 nextTokenId = tokenId + 1;

    if (_ownerships[nextTokenId].addr == address(0)) {

      if (_exists(nextTokenId)) {

        _ownerships[nextTokenId] = TokenOwnership(

          prevOwnership.addr,

          prevOwnership.startTimestamp

        );

      }

    }



    emit Transfer(from, to, tokenId);

    _afterTokenTransfers(from, to, tokenId, 1);

  }



  /**

   * @dev Approve `to` to operate on `tokenId`

   *

   * Emits a {Approval} event.

   */

  function _approve(

    address to,

    uint256 tokenId,

    address owner

  ) private {

    _tokenApprovals[tokenId] = to;

    emit Approval(owner, to, tokenId);

  }



  uint256 public nextOwnerToExplicitlySet = 0;



  /**

   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().

   */

  function _setOwnersExplicit(uint256 quantity) internal {

    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;

    require(quantity > 0, "quantity must be nonzero");

    uint256 endIndex = oldNextOwnerToSet + quantity - 1;

    if (endIndex > currentIndex - 1) {

      endIndex = currentIndex - 1;

    }

    // We know if the last one in the group exists, all in the group exist, due to serial ordering.

    require(_exists(endIndex), "not enough minted yet for this cleanup");

    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {

      if (_ownerships[i].addr == address(0)) {

        TokenOwnership memory ownership = ownershipOf(i);

        _ownerships[i] = TokenOwnership(

          ownership.addr,

          ownership.startTimestamp

        );

      }

    }

    nextOwnerToExplicitlySet = endIndex + 1;

  }



  /**

   * @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(to).onERC721Received.selector;

      } catch (bytes memory reason) {

        if (reason.length == 0) {

          revert("ERC721A: transfer to non ERC721Receiver implementer");

        } else {

          assembly {

            revert(add(32, reason), mload(reason))

          }

        }

      }

    } else {

      return true;

    }

  }



  /**

   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.

   *

   * startTokenId - the first token id to be transferred

   * quantity - the amount to be transferred

   *

   * 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`.

   */

  function _beforeTokenTransfers(

    address from,

    address to,

    uint256 startTokenId,

    uint256 quantity

  ) internal virtual {}



  /**

   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes

   * minting.

   *

   * startTokenId - the first token id to be transferred

   * quantity - the amount to be transferred

   *

   * Calling conditions:

   *

   * - when `from` and `to` are both non-zero.

   * - `from` and `to` are never both zero.

   */

  function _afterTokenTransfers(

    address from,

    address to,

    uint256 startTokenId,

    uint256 quantity

  ) internal virtual {}

}
// File: contracts/FGP.sol





//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel







pragma solidity >=0.7.0 <0.9.0;







contract FeelGangPixel is ERC721A, Ownable {

  using Strings for uint256;



  string public baseURI;

  string public baseExtension = ".json";

  string public notRevealedUri;

  uint256 public cost = 0.01 ether;

  uint256 public maxSupply = 2500;

  uint256 public maxsize = 30 ; // max mint per tx

  bool public paused = true;

  bool public revealed = true;

  bool public publicSale = true;

  address public feelgang;



  constructor(

    string memory _initBaseURI,

    string memory _initNotRevealedUri

  ) ERC721A("Feel Gang Pixel", "FGP", maxsize) {

    setBaseURI(_initBaseURI);

    setNotRevealedURI(_initNotRevealedUri);

    setfeelgangaddress(0x3Fd0e935effB3505BdF19262D974ce819bd631B4); // set your collection address here

  }



  // internal

  function _baseURI() internal view virtual override returns (string memory) {

    return baseURI;

  }



  // public

  function mint(uint256 tokens) public payable {

    require(!paused, "FGP: oops contract is paused");

    require(publicSale, "FGP: Sale Hasn't started yet");

    IERC721 NFT = IERC721(feelgang);

    uint256 ownerfeelgang = NFT.balanceOf(_msgSender());

    uint256 supply = totalSupply();

    uint256 ownercount = balanceOf(_msgSender());

    require(ownerfeelgang > 0, "You dont own a FeelGang NFT");

    require(tokens > 0, "FGP: need to mint at least 1 NFT");

    require(tokens <= ownerfeelgang, "FGP: max nft exceeded");

    require(supply + tokens <= maxSupply, "FGP: Supply Exceeded");

    require(ownercount + tokens <= ownerfeelgang, "FGP: Max NFT Per Wallet exceeded");

    require(tokens <= maxsize, "FGP: MAX MINT PER TX Exceeded");

    require(msg.value >= cost * tokens, "FGP: insufficient funds");



      _safeMint(_msgSender(), tokens);

    

  }





  





  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

    virtual

    override

    returns (string memory)

  {

    require(

      _exists(tokenId),

      "ERC721AMetadata: URI query for nonexistent token"

    );

    

    if(revealed == false) {

        return notRevealedUri;

    }



    string memory currentBaseURI = _baseURI();

    return bytes(currentBaseURI).length > 0

        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))

        : "";

  }



  //only owner



function gift(uint256 _mintAmount, address destination) public onlyOwner {

    require(_mintAmount > 0, "need to mint at least 1 NFT");

    uint256 supply = totalSupply();

    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");



      _safeMint(destination, _mintAmount);



  }

  function reveal(bool _state) public onlyOwner {

      revealed = _state;

  }





  function setmaxsize(uint256 _maxsize) public onlyOwner {

    maxsize = _maxsize;

  }





    function setMaxsupply(uint256 _newsupply) public onlyOwner {

    maxSupply = _newsupply;

  }





  function setBaseURI(string memory _newBaseURI) public onlyOwner {

    baseURI = _newBaseURI;

  }



  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {

    baseExtension = _newBaseExtension;

  }

  

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {

    notRevealedUri = _notRevealedURI;

  }



  function pause(bool _state) public onlyOwner {

    paused = _state;

  }





    function togglepublicSale(bool _state) external onlyOwner {

        publicSale = _state;

    }



        function setfeelgangaddress(address _newaddress) public onlyOwner {

        feelgang = _newaddress;

    }



    function setCost(uint256 _newCost) public onlyOwner {

    cost = _newCost;

  }

  

 

  function withdraw() public payable onlyOwner {

    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");

    require(success);

  }

}

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":[{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"feelgang","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxsize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","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":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newaddress","type":"address"}],"name":"setfeelgangaddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxsize","type":"uint256"}],"name":"setmaxsize","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":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6001600090815560075560e0604052600560a081905264173539b7b760d91b60c09081526200003291600a91906200033e565b50662386f26fc10000600c556109c4600d55601e600e55600f805462ffffff1916620101011790553480156200006757600080fd5b5060405162003194380380620031948339810160408190526200008a91620004b1565b6040518060400160405280600f81526020016e1199595b0811d85b99c8141a5e195b608a1b8152506040518060400160405280600381526020016204647560ec1b815250600e5460008111620001375760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b82516200014c9060019060208601906200033e565b508151620001629060029060208501906200033e565b506080525062000174905033620001b1565b6200017f8262000203565b6200018a8162000267565b620001a9733fd0e935effb3505bdf19262d974ce819bd631b4620002c7565b505062000558565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200024e5760405162461bcd60e51b815260206004820181905260248201526000805160206200317483398151915260448201526064016200012e565b8051620002639060099060208401906200033e565b5050565b6008546001600160a01b03163314620002b25760405162461bcd60e51b815260206004820181905260248201526000805160206200317483398151915260448201526064016200012e565b80516200026390600b9060208401906200033e565b6008546001600160a01b03163314620003125760405162461bcd60e51b815260206004820181905260248201526000805160206200317483398151915260448201526064016200012e565b600f80546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b8280546200034c906200051b565b90600052602060002090601f016020900481019282620003705760008555620003bb565b82601f106200038b57805160ff1916838001178555620003bb565b82800160010185558215620003bb579182015b82811115620003bb5782518255916020019190600101906200039e565b50620003c9929150620003cd565b5090565b5b80821115620003c95760008155600101620003ce565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200040c57600080fd5b81516001600160401b0380821115620004295762000429620003e4565b604051601f8301601f19908116603f01168101908282118183101715620004545762000454620003e4565b816040528381526020925086838588010111156200047157600080fd5b600091505b8382101562000495578582018301518183018401529082019062000476565b83821115620004a75760008385830101525b9695505050505050565b60008060408385031215620004c557600080fd5b82516001600160401b0380821115620004dd57600080fd5b620004eb86838701620003fa565b935060208501519150808211156200050257600080fd5b506200051185828601620003fa565b9150509250929050565b600181811c908216806200053057607f821691505b602082108114156200055257634e487b7160e01b600052602260045260246000fd5b50919050565b608051612beb62000589600039600081816103e801528181611ddf01528181611e09015261223c0152612beb6000f3fe6080604052600436106102725760003560e01c80636c0360eb1161014f578063af4fe610116100c1578063d7224ba01161007a578063d7224ba014610730578063da3ef23f14610746578063e985e9c514610766578063f2c4ce1e146107af578063f2fde38b146107cf578063f3257cdd146107ef57600080fd5b8063af4fe6101461067e578063b88d4fde146106a5578063c6682862146106c5578063c87b56dd146106da578063ca6b7ef5146106fa578063d5abeb011461071a57600080fd5b80638da5cb5b116101135780638da5cb5b146105d8578063940cd05b146105f657806395d89b4114610616578063a0712d681461062b578063a22cb4651461063e578063aaa7b9cb1461065e57600080fd5b80636c0360eb146105585780636c6e927e1461056d57806370a0823114610583578063715018a6146105a357806383a076be146105b857600080fd5b80632f745c59116101e857806344a0d68a116101ac57806344a0d68a1461049f5780634f6ccce7146104bf57806351830227146104df57806355f804b3146104fe5780635c975abb1461051e5780636352211e1461053857600080fd5b80632f745c591461040a57806333bc1c5c1461042a5780633ccfd60b1461044a57806342842e0e14610452578063438b63001461047257600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d578063149835a01461038157806318160ddd146103a157806323b872dd146103b65780632913daa0146103d657600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b50610297610292366004612500565b61080f565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612532565b61087c565b005b3480156102da57600080fd5b506102e36108c2565b6040516102a391906125a5565b3480156102fc57600080fd5b5061031061030b3660046125b8565b610954565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e36109df565b34801561034957600080fd5b506102cc6103583660046125e8565b610a6d565b34801561036957600080fd5b50610373600c5481565b6040519081526020016102a3565b34801561038d57600080fd5b506102cc61039c3660046125b8565b610b85565b3480156103ad57600080fd5b50610373610bb4565b3480156103c257600080fd5b506102cc6103d1366004612612565b610bca565b3480156103e257600080fd5b506103737f000000000000000000000000000000000000000000000000000000000000000081565b34801561041657600080fd5b506103736104253660046125e8565b610bd5565b34801561043657600080fd5b50600f546102979062010000900460ff1681565b6102cc610d4d565b34801561045e57600080fd5b506102cc61046d366004612612565b610dcf565b34801561047e57600080fd5b5061049261048d36600461264e565b610dea565b6040516102a39190612669565b3480156104ab57600080fd5b506102cc6104ba3660046125b8565b610e8c565b3480156104cb57600080fd5b506103736104da3660046125b8565b610ebb565b3480156104eb57600080fd5b50600f5461029790610100900460ff1681565b34801561050a57600080fd5b506102cc610519366004612739565b610f23565b34801561052a57600080fd5b50600f546102979060ff1681565b34801561054457600080fd5b506103106105533660046125b8565b610f64565b34801561056457600080fd5b506102e3610f76565b34801561057957600080fd5b50610373600e5481565b34801561058f57600080fd5b5061037361059e36600461264e565b610f83565b3480156105af57600080fd5b506102cc611014565b3480156105c457600080fd5b506102cc6105d3366004612782565b61104a565b3480156105e457600080fd5b506008546001600160a01b0316610310565b34801561060257600080fd5b506102cc610611366004612532565b61112f565b34801561062257600080fd5b506102e3611173565b6102cc6106393660046125b8565b611182565b34801561064a57600080fd5b506102cc6106593660046127ae565b61151f565b34801561066a57600080fd5b506102cc61067936600461264e565b6115e4565b34801561068a57600080fd5b50600f5461031090630100000090046001600160a01b031681565b3480156106b157600080fd5b506102cc6106c03660046127d8565b61163a565b3480156106d157600080fd5b506102e3611673565b3480156106e657600080fd5b506102e36106f53660046125b8565b611680565b34801561070657600080fd5b506102cc6107153660046125b8565b6117f2565b34801561072657600080fd5b50610373600d5481565b34801561073c57600080fd5b5061037360075481565b34801561075257600080fd5b506102cc610761366004612739565b611821565b34801561077257600080fd5b50610297610781366004612854565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107bb57600080fd5b506102cc6107ca366004612739565b61185e565b3480156107db57600080fd5b506102cc6107ea36600461264e565b61189b565b3480156107fb57600080fd5b506102cc61080a366004612532565b611933565b60006001600160e01b031982166380ac58cd60e01b148061084057506001600160e01b03198216635b5e139f60e01b145b8061085b57506001600160e01b0319821663780e9d6360e01b145b8061087657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108af5760405162461bcd60e51b81526004016108a69061287e565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600180546108d1906128b3565b80601f01602080910402602001604051908101604052809291908181526020018280546108fd906128b3565b801561094a5780601f1061091f5761010080835404028352916020019161094a565b820191906000526020600020905b81548152906001019060200180831161092d57829003601f168201915b5050505050905090565b6000610961826000541190565b6109c35760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016108a6565b506000908152600560205260409020546001600160a01b031690565b600b80546109ec906128b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a18906128b3565b8015610a655780601f10610a3a57610100808354040283529160200191610a65565b820191906000526020600020905b815481529060010190602001808311610a4857829003601f168201915b505050505081565b6000610a7882610f64565b9050806001600160a01b0316836001600160a01b03161415610ae75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108a6565b336001600160a01b0382161480610b035750610b038133610781565b610b755760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108a6565b610b80838383611979565b505050565b6008546001600160a01b03163314610baf5760405162461bcd60e51b81526004016108a69061287e565b600d55565b60006001600054610bc59190612904565b905090565b610b808383836119d5565b6000610be083610f83565b8210610c395760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108a6565b6000610c43610bb4565b905060008060005b83811015610ced576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c9e57805192505b876001600160a01b0316836001600160a01b03161415610cda5786841415610ccc5750935061087692505050565b83610cd68161291b565b9450505b5080610ce58161291b565b915050610c4b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108a6565b6008546001600160a01b03163314610d775760405162461bcd60e51b81526004016108a69061287e565b604051600090339047908381818185875af1925050503d8060008114610db9576040519150601f19603f3d011682016040523d82523d6000602084013e610dbe565b606091505b5050905080610dcc57600080fd5b50565b610b808383836040518060200160405280600081525061163a565b60606000610df783610f83565b905060008167ffffffffffffffff811115610e1457610e146126ad565b604051908082528060200260200182016040528015610e3d578160200160208202803683370190505b50905060005b82811015610e8457610e558582610bd5565b828281518110610e6757610e67612936565b602090810291909101015280610e7c8161291b565b915050610e43565b509392505050565b6008546001600160a01b03163314610eb65760405162461bcd60e51b81526004016108a69061287e565b600c55565b6000610ec5610bb4565b8210610f1f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108a6565b5090565b6008546001600160a01b03163314610f4d5760405162461bcd60e51b81526004016108a69061287e565b8051610f6090600990602084019061245a565b5050565b6000610f6f82611d5d565b5192915050565b600980546109ec906128b3565b60006001600160a01b038216610fef5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108a6565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b0316331461103e5760405162461bcd60e51b81526004016108a69061287e565b6110486000611f07565b565b6008546001600160a01b031633146110745760405162461bcd60e51b81526004016108a69061287e565b600082116110c45760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108a6565b60006110ce610bb4565b600d549091506110de848361294c565b11156111255760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108a6565b610b808284611f59565b6008546001600160a01b031633146111595760405162461bcd60e51b81526004016108a69061287e565b600f80549115156101000261ff0019909216919091179055565b6060600280546108d1906128b3565b600f5460ff16156111d55760405162461bcd60e51b815260206004820152601c60248201527f4647503a206f6f707320636f6e7472616374206973207061757365640000000060448201526064016108a6565b600f5462010000900460ff1661122d5760405162461bcd60e51b815260206004820152601c60248201527f4647503a2053616c65204861736e27742073746172746564207965740000000060448201526064016108a6565b600f54630100000090046001600160a01b03166000816370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561128d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b19190612964565b905060006112bd610bb4565b905060006112ca33610f83565b90506000831161131c5760405162461bcd60e51b815260206004820152601b60248201527f596f7520646f6e74206f776e2061204665656c47616e67204e4654000000000060448201526064016108a6565b6000851161136c5760405162461bcd60e51b815260206004820181905260248201527f4647503a206e65656420746f206d696e74206174206c656173742031204e465460448201526064016108a6565b828511156113b45760405162461bcd60e51b81526020600482015260156024820152741191d40e881b585e081b999d08195e18d959591959605a1b60448201526064016108a6565b600d546113c1868461294c565b11156114065760405162461bcd60e51b81526020600482015260146024820152731191d40e8814dd5c1c1b1e48115e18d95959195960621b60448201526064016108a6565b82611411868361294c565b111561145f5760405162461bcd60e51b815260206004820181905260248201527f4647503a204d6178204e4654205065722057616c6c657420657863656564656460448201526064016108a6565b600e548511156114b15760405162461bcd60e51b815260206004820152601d60248201527f4647503a204d4158204d494e542050455220545820457863656564656400000060448201526064016108a6565b84600c546114bf919061297d565b34101561150e5760405162461bcd60e51b815260206004820152601760248201527f4647503a20696e73756666696369656e742066756e647300000000000000000060448201526064016108a6565b6115183386611f59565b5050505050565b6001600160a01b0382163314156115785760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108a6565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461160e5760405162461bcd60e51b81526004016108a69061287e565b600f80546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b6116458484846119d5565b61165184848484611f73565b61166d5760405162461bcd60e51b81526004016108a69061299c565b50505050565b600a80546109ec906128b3565b606061168d826000541190565b6116f25760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b60648201526084016108a6565b600f54610100900460ff1661179357600b805461170e906128b3565b80601f016020809104026020016040519081016040528092919081815260200182805461173a906128b3565b80156117875780601f1061175c57610100808354040283529160200191611787565b820191906000526020600020905b81548152906001019060200180831161176a57829003601f168201915b50505050509050919050565b600061179d612072565b905060008151116117bd57604051806020016040528060008152506117eb565b806117c784612081565b600a6040516020016117db939291906129ef565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461181c5760405162461bcd60e51b81526004016108a69061287e565b600e55565b6008546001600160a01b0316331461184b5760405162461bcd60e51b81526004016108a69061287e565b8051610f6090600a90602084019061245a565b6008546001600160a01b031633146118885760405162461bcd60e51b81526004016108a69061287e565b8051610f6090600b90602084019061245a565b6008546001600160a01b031633146118c55760405162461bcd60e51b81526004016108a69061287e565b6001600160a01b03811661192a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a6565b610dcc81611f07565b6008546001600160a01b0316331461195d5760405162461bcd60e51b81526004016108a69061287e565b600f8054911515620100000262ff000019909216919091179055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119e082611d5d565b80519091506000906001600160a01b0316336001600160a01b03161480611a17575033611a0c84610954565b6001600160a01b0316145b80611a2957508151611a299033610781565b905080611a935760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108a6565b846001600160a01b031682600001516001600160a01b031614611b075760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108a6565b6001600160a01b038416611b6b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108a6565b611b7b6000848460000151611979565b6001600160a01b0385166000908152600460205260408120805460019290611bad9084906001600160801b0316612ab3565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611bf991859116612adb565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611c8184600161294c565b6000818152600360205260409020549091506001600160a01b0316611d1357611cab816000541190565b15611d135760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611d7c826000541190565b611ddb5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108a6565b60007f00000000000000000000000000000000000000000000000000000000000000008310611e3c57611e2e7f000000000000000000000000000000000000000000000000000000000000000084612904565b611e3990600161294c565b90505b825b818110611ea6576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e9357949350505050565b5080611e9e81612b06565b915050611e3e565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108a6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f6082826040518060200160405280600081525061217f565b60006001600160a01b0384163b1561206657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fb7903390899088908890600401612b1d565b6020604051808303816000875af1925050508015611ff2575060408051601f3d908101601f19168201909252611fef91810190612b5a565b60015b61204c573d808015612020576040519150601f19603f3d011682016040523d82523d6000602084013e612025565b606091505b5080516120445760405162461bcd60e51b81526004016108a69061299c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061206a565b5060015b949350505050565b6060600980546108d1906128b3565b6060816120a55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120cf57806120b98161291b565b91506120c89050600a83612b8d565b91506120a9565b60008167ffffffffffffffff8111156120ea576120ea6126ad565b6040519080825280601f01601f191660200182016040528015612114576020820181803683370190505b5090505b841561206a57612129600183612904565b9150612136600a86612ba1565b61214190603061294c565b60f81b81838151811061215657612156612936565b60200101906001600160f81b031916908160001a905350612178600a86612b8d565b9450612118565b6000546001600160a01b0384166121e25760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108a6565b6121ed816000541190565b1561223a5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108a6565b7f00000000000000000000000000000000000000000000000000000000000000008311156122b55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108a6565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612311908790612adb565b6001600160801b0316815260200185836020015161232f9190612adb565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561244f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124136000888488611f73565b61242f5760405162461bcd60e51b81526004016108a69061299c565b816124398161291b565b92505080806124479061291b565b9150506123c6565b506000819055611d55565b828054612466906128b3565b90600052602060002090601f01602090048101928261248857600085556124ce565b82601f106124a157805160ff19168380011785556124ce565b828001600101855582156124ce579182015b828111156124ce5782518255916020019190600101906124b3565b50610f1f9291505b80821115610f1f57600081556001016124d6565b6001600160e01b031981168114610dcc57600080fd5b60006020828403121561251257600080fd5b81356117eb816124ea565b8035801515811461252d57600080fd5b919050565b60006020828403121561254457600080fd5b6117eb8261251d565b60005b83811015612568578181015183820152602001612550565b8381111561166d5750506000910152565b6000815180845261259181602086016020860161254d565b601f01601f19169290920160200192915050565b6020815260006117eb6020830184612579565b6000602082840312156125ca57600080fd5b5035919050565b80356001600160a01b038116811461252d57600080fd5b600080604083850312156125fb57600080fd5b612604836125d1565b946020939093013593505050565b60008060006060848603121561262757600080fd5b612630846125d1565b925061263e602085016125d1565b9150604084013590509250925092565b60006020828403121561266057600080fd5b6117eb826125d1565b6020808252825182820181905260009190848201906040850190845b818110156126a157835183529284019291840191600101612685565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156126de576126de6126ad565b604051601f8501601f19908116603f01168101908282118183101715612706576127066126ad565b8160405280935085815286868601111561271f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561274b57600080fd5b813567ffffffffffffffff81111561276257600080fd5b8201601f8101841361277357600080fd5b61206a848235602084016126c3565b6000806040838503121561279557600080fd5b823591506127a5602084016125d1565b90509250929050565b600080604083850312156127c157600080fd5b6127ca836125d1565b91506127a56020840161251d565b600080600080608085870312156127ee57600080fd5b6127f7856125d1565b9350612805602086016125d1565b925060408501359150606085013567ffffffffffffffff81111561282857600080fd5b8501601f8101871361283957600080fd5b612848878235602084016126c3565b91505092959194509250565b6000806040838503121561286757600080fd5b612870836125d1565b91506127a5602084016125d1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806128c757607f821691505b602082108114156128e857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612916576129166128ee565b500390565b600060001982141561292f5761292f6128ee565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000821982111561295f5761295f6128ee565b500190565b60006020828403121561297657600080fd5b5051919050565b6000816000190483118215151615612997576129976128ee565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600084516020612a028285838a0161254d565b855191840191612a158184848a0161254d565b8554920191600090600181811c9080831680612a3257607f831692505b858310811415612a5057634e487b7160e01b85526022600452602485fd5b808015612a645760018114612a7557612aa2565b60ff19851688528388019550612aa2565b60008b81526020902060005b85811015612a9a5781548a820152908401908801612a81565b505083880195505b50939b9a5050505050505050505050565b60006001600160801b0383811690831681811015612ad357612ad36128ee565b039392505050565b60006001600160801b03808316818516808303821115612afd57612afd6128ee565b01949350505050565b600081612b1557612b156128ee565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b5090830184612579565b9695505050505050565b600060208284031215612b6c57600080fd5b81516117eb816124ea565b634e487b7160e01b600052601260045260246000fd5b600082612b9c57612b9c612b77565b500490565b600082612bb057612bb0612b77565b50069056fea26469706673582212207ea191102c80224587a54bbf8aba8dca0bfd775d8db33210c9e17b39230a54a264736f6c634300080c00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636c0360eb1161014f578063af4fe610116100c1578063d7224ba01161007a578063d7224ba014610730578063da3ef23f14610746578063e985e9c514610766578063f2c4ce1e146107af578063f2fde38b146107cf578063f3257cdd146107ef57600080fd5b8063af4fe6101461067e578063b88d4fde146106a5578063c6682862146106c5578063c87b56dd146106da578063ca6b7ef5146106fa578063d5abeb011461071a57600080fd5b80638da5cb5b116101135780638da5cb5b146105d8578063940cd05b146105f657806395d89b4114610616578063a0712d681461062b578063a22cb4651461063e578063aaa7b9cb1461065e57600080fd5b80636c0360eb146105585780636c6e927e1461056d57806370a0823114610583578063715018a6146105a357806383a076be146105b857600080fd5b80632f745c59116101e857806344a0d68a116101ac57806344a0d68a1461049f5780634f6ccce7146104bf57806351830227146104df57806355f804b3146104fe5780635c975abb1461051e5780636352211e1461053857600080fd5b80632f745c591461040a57806333bc1c5c1461042a5780633ccfd60b1461044a57806342842e0e14610452578063438b63001461047257600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d578063149835a01461038157806318160ddd146103a157806323b872dd146103b65780632913daa0146103d657600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b50610297610292366004612500565b61080f565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612532565b61087c565b005b3480156102da57600080fd5b506102e36108c2565b6040516102a391906125a5565b3480156102fc57600080fd5b5061031061030b3660046125b8565b610954565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e36109df565b34801561034957600080fd5b506102cc6103583660046125e8565b610a6d565b34801561036957600080fd5b50610373600c5481565b6040519081526020016102a3565b34801561038d57600080fd5b506102cc61039c3660046125b8565b610b85565b3480156103ad57600080fd5b50610373610bb4565b3480156103c257600080fd5b506102cc6103d1366004612612565b610bca565b3480156103e257600080fd5b506103737f000000000000000000000000000000000000000000000000000000000000001e81565b34801561041657600080fd5b506103736104253660046125e8565b610bd5565b34801561043657600080fd5b50600f546102979062010000900460ff1681565b6102cc610d4d565b34801561045e57600080fd5b506102cc61046d366004612612565b610dcf565b34801561047e57600080fd5b5061049261048d36600461264e565b610dea565b6040516102a39190612669565b3480156104ab57600080fd5b506102cc6104ba3660046125b8565b610e8c565b3480156104cb57600080fd5b506103736104da3660046125b8565b610ebb565b3480156104eb57600080fd5b50600f5461029790610100900460ff1681565b34801561050a57600080fd5b506102cc610519366004612739565b610f23565b34801561052a57600080fd5b50600f546102979060ff1681565b34801561054457600080fd5b506103106105533660046125b8565b610f64565b34801561056457600080fd5b506102e3610f76565b34801561057957600080fd5b50610373600e5481565b34801561058f57600080fd5b5061037361059e36600461264e565b610f83565b3480156105af57600080fd5b506102cc611014565b3480156105c457600080fd5b506102cc6105d3366004612782565b61104a565b3480156105e457600080fd5b506008546001600160a01b0316610310565b34801561060257600080fd5b506102cc610611366004612532565b61112f565b34801561062257600080fd5b506102e3611173565b6102cc6106393660046125b8565b611182565b34801561064a57600080fd5b506102cc6106593660046127ae565b61151f565b34801561066a57600080fd5b506102cc61067936600461264e565b6115e4565b34801561068a57600080fd5b50600f5461031090630100000090046001600160a01b031681565b3480156106b157600080fd5b506102cc6106c03660046127d8565b61163a565b3480156106d157600080fd5b506102e3611673565b3480156106e657600080fd5b506102e36106f53660046125b8565b611680565b34801561070657600080fd5b506102cc6107153660046125b8565b6117f2565b34801561072657600080fd5b50610373600d5481565b34801561073c57600080fd5b5061037360075481565b34801561075257600080fd5b506102cc610761366004612739565b611821565b34801561077257600080fd5b50610297610781366004612854565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107bb57600080fd5b506102cc6107ca366004612739565b61185e565b3480156107db57600080fd5b506102cc6107ea36600461264e565b61189b565b3480156107fb57600080fd5b506102cc61080a366004612532565b611933565b60006001600160e01b031982166380ac58cd60e01b148061084057506001600160e01b03198216635b5e139f60e01b145b8061085b57506001600160e01b0319821663780e9d6360e01b145b8061087657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108af5760405162461bcd60e51b81526004016108a69061287e565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600180546108d1906128b3565b80601f01602080910402602001604051908101604052809291908181526020018280546108fd906128b3565b801561094a5780601f1061091f5761010080835404028352916020019161094a565b820191906000526020600020905b81548152906001019060200180831161092d57829003601f168201915b5050505050905090565b6000610961826000541190565b6109c35760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016108a6565b506000908152600560205260409020546001600160a01b031690565b600b80546109ec906128b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a18906128b3565b8015610a655780601f10610a3a57610100808354040283529160200191610a65565b820191906000526020600020905b815481529060010190602001808311610a4857829003601f168201915b505050505081565b6000610a7882610f64565b9050806001600160a01b0316836001600160a01b03161415610ae75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108a6565b336001600160a01b0382161480610b035750610b038133610781565b610b755760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108a6565b610b80838383611979565b505050565b6008546001600160a01b03163314610baf5760405162461bcd60e51b81526004016108a69061287e565b600d55565b60006001600054610bc59190612904565b905090565b610b808383836119d5565b6000610be083610f83565b8210610c395760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108a6565b6000610c43610bb4565b905060008060005b83811015610ced576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c9e57805192505b876001600160a01b0316836001600160a01b03161415610cda5786841415610ccc5750935061087692505050565b83610cd68161291b565b9450505b5080610ce58161291b565b915050610c4b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108a6565b6008546001600160a01b03163314610d775760405162461bcd60e51b81526004016108a69061287e565b604051600090339047908381818185875af1925050503d8060008114610db9576040519150601f19603f3d011682016040523d82523d6000602084013e610dbe565b606091505b5050905080610dcc57600080fd5b50565b610b808383836040518060200160405280600081525061163a565b60606000610df783610f83565b905060008167ffffffffffffffff811115610e1457610e146126ad565b604051908082528060200260200182016040528015610e3d578160200160208202803683370190505b50905060005b82811015610e8457610e558582610bd5565b828281518110610e6757610e67612936565b602090810291909101015280610e7c8161291b565b915050610e43565b509392505050565b6008546001600160a01b03163314610eb65760405162461bcd60e51b81526004016108a69061287e565b600c55565b6000610ec5610bb4565b8210610f1f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108a6565b5090565b6008546001600160a01b03163314610f4d5760405162461bcd60e51b81526004016108a69061287e565b8051610f6090600990602084019061245a565b5050565b6000610f6f82611d5d565b5192915050565b600980546109ec906128b3565b60006001600160a01b038216610fef5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108a6565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b0316331461103e5760405162461bcd60e51b81526004016108a69061287e565b6110486000611f07565b565b6008546001600160a01b031633146110745760405162461bcd60e51b81526004016108a69061287e565b600082116110c45760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108a6565b60006110ce610bb4565b600d549091506110de848361294c565b11156111255760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108a6565b610b808284611f59565b6008546001600160a01b031633146111595760405162461bcd60e51b81526004016108a69061287e565b600f80549115156101000261ff0019909216919091179055565b6060600280546108d1906128b3565b600f5460ff16156111d55760405162461bcd60e51b815260206004820152601c60248201527f4647503a206f6f707320636f6e7472616374206973207061757365640000000060448201526064016108a6565b600f5462010000900460ff1661122d5760405162461bcd60e51b815260206004820152601c60248201527f4647503a2053616c65204861736e27742073746172746564207965740000000060448201526064016108a6565b600f54630100000090046001600160a01b03166000816370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561128d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b19190612964565b905060006112bd610bb4565b905060006112ca33610f83565b90506000831161131c5760405162461bcd60e51b815260206004820152601b60248201527f596f7520646f6e74206f776e2061204665656c47616e67204e4654000000000060448201526064016108a6565b6000851161136c5760405162461bcd60e51b815260206004820181905260248201527f4647503a206e65656420746f206d696e74206174206c656173742031204e465460448201526064016108a6565b828511156113b45760405162461bcd60e51b81526020600482015260156024820152741191d40e881b585e081b999d08195e18d959591959605a1b60448201526064016108a6565b600d546113c1868461294c565b11156114065760405162461bcd60e51b81526020600482015260146024820152731191d40e8814dd5c1c1b1e48115e18d95959195960621b60448201526064016108a6565b82611411868361294c565b111561145f5760405162461bcd60e51b815260206004820181905260248201527f4647503a204d6178204e4654205065722057616c6c657420657863656564656460448201526064016108a6565b600e548511156114b15760405162461bcd60e51b815260206004820152601d60248201527f4647503a204d4158204d494e542050455220545820457863656564656400000060448201526064016108a6565b84600c546114bf919061297d565b34101561150e5760405162461bcd60e51b815260206004820152601760248201527f4647503a20696e73756666696369656e742066756e647300000000000000000060448201526064016108a6565b6115183386611f59565b5050505050565b6001600160a01b0382163314156115785760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108a6565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461160e5760405162461bcd60e51b81526004016108a69061287e565b600f80546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b6116458484846119d5565b61165184848484611f73565b61166d5760405162461bcd60e51b81526004016108a69061299c565b50505050565b600a80546109ec906128b3565b606061168d826000541190565b6116f25760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b60648201526084016108a6565b600f54610100900460ff1661179357600b805461170e906128b3565b80601f016020809104026020016040519081016040528092919081815260200182805461173a906128b3565b80156117875780601f1061175c57610100808354040283529160200191611787565b820191906000526020600020905b81548152906001019060200180831161176a57829003601f168201915b50505050509050919050565b600061179d612072565b905060008151116117bd57604051806020016040528060008152506117eb565b806117c784612081565b600a6040516020016117db939291906129ef565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461181c5760405162461bcd60e51b81526004016108a69061287e565b600e55565b6008546001600160a01b0316331461184b5760405162461bcd60e51b81526004016108a69061287e565b8051610f6090600a90602084019061245a565b6008546001600160a01b031633146118885760405162461bcd60e51b81526004016108a69061287e565b8051610f6090600b90602084019061245a565b6008546001600160a01b031633146118c55760405162461bcd60e51b81526004016108a69061287e565b6001600160a01b03811661192a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a6565b610dcc81611f07565b6008546001600160a01b0316331461195d5760405162461bcd60e51b81526004016108a69061287e565b600f8054911515620100000262ff000019909216919091179055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119e082611d5d565b80519091506000906001600160a01b0316336001600160a01b03161480611a17575033611a0c84610954565b6001600160a01b0316145b80611a2957508151611a299033610781565b905080611a935760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108a6565b846001600160a01b031682600001516001600160a01b031614611b075760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108a6565b6001600160a01b038416611b6b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108a6565b611b7b6000848460000151611979565b6001600160a01b0385166000908152600460205260408120805460019290611bad9084906001600160801b0316612ab3565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611bf991859116612adb565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611c8184600161294c565b6000818152600360205260409020549091506001600160a01b0316611d1357611cab816000541190565b15611d135760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611d7c826000541190565b611ddb5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108a6565b60007f000000000000000000000000000000000000000000000000000000000000001e8310611e3c57611e2e7f000000000000000000000000000000000000000000000000000000000000001e84612904565b611e3990600161294c565b90505b825b818110611ea6576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e9357949350505050565b5080611e9e81612b06565b915050611e3e565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108a6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f6082826040518060200160405280600081525061217f565b60006001600160a01b0384163b1561206657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fb7903390899088908890600401612b1d565b6020604051808303816000875af1925050508015611ff2575060408051601f3d908101601f19168201909252611fef91810190612b5a565b60015b61204c573d808015612020576040519150601f19603f3d011682016040523d82523d6000602084013e612025565b606091505b5080516120445760405162461bcd60e51b81526004016108a69061299c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061206a565b5060015b949350505050565b6060600980546108d1906128b3565b6060816120a55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120cf57806120b98161291b565b91506120c89050600a83612b8d565b91506120a9565b60008167ffffffffffffffff8111156120ea576120ea6126ad565b6040519080825280601f01601f191660200182016040528015612114576020820181803683370190505b5090505b841561206a57612129600183612904565b9150612136600a86612ba1565b61214190603061294c565b60f81b81838151811061215657612156612936565b60200101906001600160f81b031916908160001a905350612178600a86612b8d565b9450612118565b6000546001600160a01b0384166121e25760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108a6565b6121ed816000541190565b1561223a5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108a6565b7f000000000000000000000000000000000000000000000000000000000000001e8311156122b55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108a6565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612311908790612adb565b6001600160801b0316815260200185836020015161232f9190612adb565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561244f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124136000888488611f73565b61242f5760405162461bcd60e51b81526004016108a69061299c565b816124398161291b565b92505080806124479061291b565b9150506123c6565b506000819055611d55565b828054612466906128b3565b90600052602060002090601f01602090048101928261248857600085556124ce565b82601f106124a157805160ff19168380011785556124ce565b828001600101855582156124ce579182015b828111156124ce5782518255916020019190600101906124b3565b50610f1f9291505b80821115610f1f57600081556001016124d6565b6001600160e01b031981168114610dcc57600080fd5b60006020828403121561251257600080fd5b81356117eb816124ea565b8035801515811461252d57600080fd5b919050565b60006020828403121561254457600080fd5b6117eb8261251d565b60005b83811015612568578181015183820152602001612550565b8381111561166d5750506000910152565b6000815180845261259181602086016020860161254d565b601f01601f19169290920160200192915050565b6020815260006117eb6020830184612579565b6000602082840312156125ca57600080fd5b5035919050565b80356001600160a01b038116811461252d57600080fd5b600080604083850312156125fb57600080fd5b612604836125d1565b946020939093013593505050565b60008060006060848603121561262757600080fd5b612630846125d1565b925061263e602085016125d1565b9150604084013590509250925092565b60006020828403121561266057600080fd5b6117eb826125d1565b6020808252825182820181905260009190848201906040850190845b818110156126a157835183529284019291840191600101612685565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156126de576126de6126ad565b604051601f8501601f19908116603f01168101908282118183101715612706576127066126ad565b8160405280935085815286868601111561271f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561274b57600080fd5b813567ffffffffffffffff81111561276257600080fd5b8201601f8101841361277357600080fd5b61206a848235602084016126c3565b6000806040838503121561279557600080fd5b823591506127a5602084016125d1565b90509250929050565b600080604083850312156127c157600080fd5b6127ca836125d1565b91506127a56020840161251d565b600080600080608085870312156127ee57600080fd5b6127f7856125d1565b9350612805602086016125d1565b925060408501359150606085013567ffffffffffffffff81111561282857600080fd5b8501601f8101871361283957600080fd5b612848878235602084016126c3565b91505092959194509250565b6000806040838503121561286757600080fd5b612870836125d1565b91506127a5602084016125d1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806128c757607f821691505b602082108114156128e857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612916576129166128ee565b500390565b600060001982141561292f5761292f6128ee565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000821982111561295f5761295f6128ee565b500190565b60006020828403121561297657600080fd5b5051919050565b6000816000190483118215151615612997576129976128ee565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600084516020612a028285838a0161254d565b855191840191612a158184848a0161254d565b8554920191600090600181811c9080831680612a3257607f831692505b858310811415612a5057634e487b7160e01b85526022600452602485fd5b808015612a645760018114612a7557612aa2565b60ff19851688528388019550612aa2565b60008b81526020902060005b85811015612a9a5781548a820152908401908801612a81565b505083880195505b50939b9a5050505050505050505050565b60006001600160801b0383811690831681811015612ad357612ad36128ee565b039392505050565b60006001600160801b03808316818516808303821115612afd57612afd6128ee565b01949350505050565b600081612b1557612b156128ee565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b5090830184612579565b9695505050505050565b600060208284031215612b6c57600080fd5b81516117eb816124ea565b634e487b7160e01b600052601260045260246000fd5b600082612b9c57612b9c612b77565b500490565b600082612bb057612bb0612b77565b50069056fea26469706673582212207ea191102c80224587a54bbf8aba8dca0bfd775d8db33210c9e17b39230a54a264736f6c634300080c0033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string):
Arg [1] : _initNotRevealedUri (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47615:4460:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34409:394;;;;;;;;;;-1:-1:-1;34409:394:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34409:394:0;;;;;;;;51473:77;;;;;;;;;;-1:-1:-1;51473:77:0;;;;;:::i;:::-;;:::i;:::-;;36259:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37904:212::-;;;;;;;;;;-1:-1:-1;37904:212:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;37904:212:0;1878:203:1;47773:28:0;;;;;;;;;;;;;:::i;37437:399::-;;;;;;;;;;-1:-1:-1;37437:399:0;;;;;:::i;:::-;;:::i;47808:32::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;47808:32:0;2523:177:1;50977:98:0;;;;;;;;;;-1:-1:-1;50977:98:0;;;;;:::i;:::-;;:::i;32879:102::-;;;;;;;;;;;;;:::i;38818:154::-;;;;;;;;;;-1:-1:-1;38818:154:0;;;;;:::i;:::-;;:::i;31679:37::-;;;;;;;;;;;;;;;33545:790;;;;;;;;;;-1:-1:-1;33545:790:0;;;;;:::i;:::-;;:::i;48005:29::-;;;;;;;;;;-1:-1:-1;48005:29:0;;;;;;;;;;;51906:164;;;:::i;39045:169::-;;;;;;;;;;-1:-1:-1;39045:169:0;;;;;:::i;:::-;;:::i;49506:370::-;;;;;;;;;;-1:-1:-1;49506:370:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51805:84::-;;;;;;;;;;-1:-1:-1;51805:84:0;;;;;:::i;:::-;;:::i;33060:183::-;;;;;;;;;;-1:-1:-1;33060:183:0;;;;;:::i;:::-;;:::i;47971:27::-;;;;;;;;;;-1:-1:-1;47971:27:0;;;;;;;;;;;51089:102;;;;;;;;;;-1:-1:-1;51089:102:0;;;;;:::i;:::-;;:::i;47939:25::-;;;;;;;;;;-1:-1:-1;47939:25:0;;;;;;;;36068:122;;;;;;;;;;-1:-1:-1;36068:122:0;;;;;:::i;:::-;;:::i;47701:21::-;;;;;;;;;;;;;:::i;47885:27::-;;;;;;;;;;;;;;;;34869:217;;;;;;;;;;-1:-1:-1;34869:217:0;;;;;:::i;:::-;;:::i;11757:103::-;;;;;;;;;;;;;:::i;50454:315::-;;;;;;;;;;-1:-1:-1;50454:315:0;;;;;:::i;:::-;;:::i;11106:87::-;;;;;;;;;;-1:-1:-1;11179:6:0;;-1:-1:-1;;;;;11179:6:0;11106:87;;50775:82;;;;;;;;;;-1:-1:-1;50775:82:0;;;;;:::i;:::-;;:::i;36428:102::-;;;;;;;;;;;;;:::i;48567:911::-;;;;;;:::i;:::-;;:::i;38190:284::-;;;;;;;;;;-1:-1:-1;38190:284:0;;;;;:::i;:::-;;:::i;51682:111::-;;;;;;;;;;-1:-1:-1;51682:111:0;;;;;:::i;:::-;;:::i;48041:23::-;;;;;;;;;;-1:-1:-1;48041:23:0;;;;;;;-1:-1:-1;;;;;48041:23:0;;;39287:333;;;;;;;;;;-1:-1:-1;39287:333:0;;;;;:::i;:::-;;:::i;47729:37::-;;;;;;;;;;;;;:::i;49886:538::-;;;;;;;;;;-1:-1:-1;49886:538:0;;;;;:::i;:::-;;:::i;50871:90::-;;;;;;;;;;-1:-1:-1;50871:90:0;;;;;:::i;:::-;;:::i;47847:31::-;;;;;;;;;;;;;;;;43906:43;;;;;;;;;;;;;;;;51201:126;;;;;;;;;;-1:-1:-1;51201:126:0;;;;;:::i;:::-;;:::i;38547:202::-;;;;;;;;;;-1:-1:-1;38547:202:0;;;;;:::i;:::-;-1:-1:-1;;;;;38706:25:0;;;38679:4;38706:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38547:202;51339:124;;;;;;;;;;-1:-1:-1;51339:124:0;;;;;:::i;:::-;;:::i;12015:201::-;;;;;;;;;;-1:-1:-1;12015:201:0;;;;;:::i;:::-;;:::i;51566:100::-;;;;;;;;;;-1:-1:-1;51566:100:0;;;;;:::i;:::-;;:::i;34409:394::-;34546:4;-1:-1:-1;;;;;;34582:40:0;;-1:-1:-1;;;34582:40:0;;:101;;-1:-1:-1;;;;;;;34635:48:0;;-1:-1:-1;;;34635:48:0;34582:101;:164;;;-1:-1:-1;;;;;;;34696:50:0;;-1:-1:-1;;;34696:50:0;34582:164;:213;;;-1:-1:-1;;;;;;;;;;23999:40:0;;;34759:36;34566:229;34409:394;-1:-1:-1;;34409:394:0:o;51473:77::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;;;;;;;;;51527:6:::1;:15:::0;;-1:-1:-1;;51527:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51473:77::o;36259:98::-;36313:13;36344:5;36337:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36259:98;:::o;37904:212::-;37972:7;37998:16;38006:7;39934:4;39966:12;-1:-1:-1;39956:22:0;39877:109;37998:16;37990:74;;;;-1:-1:-1;;;37990:74:0;;7494:2:1;37990:74:0;;;7476:21:1;7533:2;7513:18;;;7506:30;7572:34;7552:18;;;7545:62;-1:-1:-1;;;7623:18:1;;;7616:43;7676:19;;37990:74:0;7292:409:1;37990:74:0;-1:-1:-1;38084:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38084:24:0;;37904:212::o;47773:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37437:399::-;37508:13;37524:24;37540:7;37524:15;:24::i;:::-;37508:40;;37571:5;-1:-1:-1;;;;;37565:11:0;:2;-1:-1:-1;;;;;37565:11:0;;;37557:58;;;;-1:-1:-1;;;37557:58:0;;7908:2:1;37557:58:0;;;7890:21:1;7947:2;7927:18;;;7920:30;7986:34;7966:18;;;7959:62;-1:-1:-1;;;8037:18:1;;;8030:32;8079:19;;37557:58:0;7706:398:1;37557:58:0;9910:10;-1:-1:-1;;;;;37646:21:0;;;;:62;;-1:-1:-1;37671:37:0;37688:5;9910:10;38547:202;:::i;37671:37::-;37628:159;;;;-1:-1:-1;;;37628:159:0;;8311:2:1;37628:159:0;;;8293:21:1;8350:2;8330:18;;;8323:30;8389:34;8369:18;;;8362:62;8460:27;8440:18;;;8433:55;8505:19;;37628:159:0;8109:421:1;37628:159:0;37800:28;37809:2;37813:7;37822:5;37800:8;:28::i;:::-;37499:337;37437:399;;:::o;50977:98::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;51045:9:::1;:22:::0;50977:98::o;32879:102::-;32932:7;32972:1;32957:12;;:16;;;;:::i;:::-;32950:23;;32879:102;:::o;38818:154::-;38936:28;38946:4;38952:2;38956:7;38936:9;:28::i;33545:790::-;33662:7;33701:16;33711:5;33701:9;:16::i;:::-;33693:5;:24;33685:71;;;;-1:-1:-1;;;33685:71:0;;8999:2:1;33685:71:0;;;8981:21:1;9038:2;9018:18;;;9011:30;9077:34;9057:18;;;9050:62;-1:-1:-1;;;9128:18:1;;;9121:32;9170:19;;33685:71:0;8797:398:1;33685:71:0;33765:22;33790:13;:11;:13::i;:::-;33765:38;;33812:19;33844:25;33896:9;33891:372;33915:14;33911:1;:18;33891:372;;;33947:31;33981:14;;;:11;:14;;;;;;;;;33947:48;;;;;;;;;-1:-1:-1;;;;;33947:48:0;;;;;-1:-1:-1;;;33947:48:0;;;;;;;;;;;;34010:28;34006:93;;34073:14;;;-1:-1:-1;34006:93:0;34134:5;-1:-1:-1;;;;;34113:26:0;:17;-1:-1:-1;;;;;34113:26:0;;34109:145;;;34173:5;34158:11;:20;34154:63;;;-1:-1:-1;34202:1:0;-1:-1:-1;34195:8:0;;-1:-1:-1;;;34195:8:0;34154:63;34229:13;;;;:::i;:::-;;;;34109:145;-1:-1:-1;33931:3:0;;;;:::i;:::-;;;;33891:372;;;-1:-1:-1;34271:56:0;;-1:-1:-1;;;34271:56:0;;9542:2:1;34271:56:0;;;9524:21:1;9581:2;9561:18;;;9554:30;9620:34;9600:18;;;9593:62;-1:-1:-1;;;9671:18:1;;;9664:44;9725:19;;34271:56:0;9340:410:1;51906:164:0;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;51979:58:::1;::::0;51961:12:::1;::::0;51987:10:::1;::::0;52011:21:::1;::::0;51961:12;51979:58;51961:12;51979:58;52011:21;51987:10;51979:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51960:77;;;52054:7;52046:16;;;::::0;::::1;;51951:119;51906:164::o:0;39045:169::-;39167:39;39184:4;39190:2;39194:7;39167:39;;;;;;;;;;;;:16;:39::i;49506:370::-;49587:16;49619:23;49645:17;49655:6;49645:9;:17::i;:::-;49619:43;;49671:25;49713:15;49699:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49699:30:0;;49671:58;;49743:9;49738:107;49758:15;49754:1;:19;49738:107;;;49805:30;49825:6;49833:1;49805:19;:30::i;:::-;49791:8;49800:1;49791:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;49775:3;;;;:::i;:::-;;;;49738:107;;;-1:-1:-1;49860:8:0;49506:370;-1:-1:-1;;;49506:370:0:o;51805:84::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;51866:4:::1;:15:::0;51805:84::o;33060:183::-;33127:7;33161:13;:11;:13::i;:::-;33153:5;:21;33145:69;;;;-1:-1:-1;;;33145:69:0;;10299:2:1;33145:69:0;;;10281:21:1;10338:2;10318:18;;;10311:30;10377:34;10357:18;;;10350:62;-1:-1:-1;;;10428:18:1;;;10421:33;10471:19;;33145:69:0;10097:399:1;33145:69:0;-1:-1:-1;33230:5:0;33060:183::o;51089:102::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;51162:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51089:102:::0;:::o;36068:122::-;36132:7;36157:20;36169:7;36157:11;:20::i;:::-;:25;;36068:122;-1:-1:-1;;36068:122:0:o;47701:21::-;;;;;;;:::i;34869:217::-;34933:7;-1:-1:-1;;;;;34959:19:0;;34951:75;;;;-1:-1:-1;;;34951:75:0;;10703:2:1;34951:75:0;;;10685:21:1;10742:2;10722:18;;;10715:30;10781:34;10761:18;;;10754:62;-1:-1:-1;;;10832:18:1;;;10825:41;10883:19;;34951:75:0;10501:407:1;34951:75:0;-1:-1:-1;;;;;;35050:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;35050:27:0;;34869:217::o;11757:103::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;11822:30:::1;11849:1;11822:18;:30::i;:::-;11757:103::o:0;50454:315::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;50558:1:::1;50544:11;:15;50536:55;;;::::0;-1:-1:-1;;;50536:55:0;;11115:2:1;50536:55:0::1;::::0;::::1;11097:21:1::0;11154:2;11134:18;;;11127:30;11193:29;11173:18;;;11166:57;11240:18;;50536:55:0::1;10913:351:1::0;50536:55:0::1;50600:14;50617:13;:11;:13::i;:::-;50671:9;::::0;50600:30;;-1:-1:-1;50647:20:0::1;50656:11:::0;50600:30;50647:20:::1;:::i;:::-;:33;;50639:68;;;::::0;-1:-1:-1;;;50639:68:0;;11604:2:1;50639:68:0::1;::::0;::::1;11586:21:1::0;11643:2;11623:18;;;11616:30;-1:-1:-1;;;11662:18:1;;;11655:52;11724:18;;50639:68:0::1;11402:346:1::0;50639:68:0::1;50722:35;50732:11;50745;50722:9;:35::i;50775:82::-:0;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;50832:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;50832:17:0;;::::1;::::0;;;::::1;::::0;;50775:82::o;36428:102::-;36484:13;36515:7;36508:14;;;;;:::i;48567:911::-;48630:6;;;;48629:7;48621:48;;;;-1:-1:-1;;;48621:48:0;;11955:2:1;48621:48:0;;;11937:21:1;11994:2;11974:18;;;11967:30;12033;12013:18;;;12006:58;12081:18;;48621:48:0;11753:352:1;48621:48:0;48686:10;;;;;;;48678:51;;;;-1:-1:-1;;;48678:51:0;;12312:2:1;48678:51:0;;;12294:21:1;12351:2;12331:18;;;12324:30;12390;12370:18;;;12363:58;12438:18;;48678:51:0;12110:352:1;48678:51:0;48760:8;;;;;-1:-1:-1;;;;;48760:8:0;48738:11;48760:8;48802:13;9910:10;48802:27;;-1:-1:-1;;;;;;48802:27:0;;;;;;;-1:-1:-1;;;;;2042:32:1;;;48802:27:0;;;2024:51:1;1997:18;;48802:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48778:51;;48838:14;48855:13;:11;:13::i;:::-;48838:30;-1:-1:-1;48877:18:0;48898:23;9910:10;34869:217;:::i;48898:23::-;48877:44;;48954:1;48938:13;:17;48930:57;;;;-1:-1:-1;;;48930:57:0;;12858:2:1;48930:57:0;;;12840:21:1;12897:2;12877:18;;;12870:30;12936:29;12916:18;;;12909:57;12983:18;;48930:57:0;12656:351:1;48930:57:0;49013:1;49004:6;:10;48996:55;;;;-1:-1:-1;;;48996:55:0;;13214:2:1;48996:55:0;;;13196:21:1;;;13233:18;;;13226:30;13292:34;13272:18;;;13265:62;13344:18;;48996:55:0;13012:356:1;48996:55:0;49078:13;49068:6;:23;;49060:57;;;;-1:-1:-1;;;49060:57:0;;13575:2:1;49060:57:0;;;13557:21:1;13614:2;13594:18;;;13587:30;-1:-1:-1;;;13633:18:1;;;13626:51;13694:18;;49060:57:0;13373:345:1;49060:57:0;49153:9;;49134:15;49143:6;49134;:15;:::i;:::-;:28;;49126:61;;;;-1:-1:-1;;;49126:61:0;;13925:2:1;49126:61:0;;;13907:21:1;13964:2;13944:18;;;13937:30;-1:-1:-1;;;13983:18:1;;;13976:50;14043:18;;49126:61:0;13723:344:1;49126:61:0;49227:13;49204:19;49217:6;49204:10;:19;:::i;:::-;:36;;49196:81;;;;-1:-1:-1;;;49196:81:0;;14274:2:1;49196:81:0;;;14256:21:1;;;14293:18;;;14286:30;14352:34;14332:18;;;14325:62;14404:18;;49196:81:0;14072:356:1;49196:81:0;49304:7;;49294:6;:17;;49286:59;;;;-1:-1:-1;;;49286:59:0;;14635:2:1;49286:59:0;;;14617:21:1;14674:2;14654:18;;;14647:30;14713:31;14693:18;;;14686:59;14762:18;;49286:59:0;14433:353:1;49286:59:0;49382:6;49375:4;;:13;;;;:::i;:::-;49362:9;:26;;49354:62;;;;-1:-1:-1;;;49354:62:0;;15166:2:1;49354:62:0;;;15148:21:1;15205:2;15185:18;;;15178:30;15244:25;15224:18;;;15217:53;15287:18;;49354:62:0;14964:347:1;49354:62:0;49431:31;9910:10;49455:6;49431:9;:31::i;:::-;48612:866;;;;48567:911;:::o;38190:284::-;-1:-1:-1;;;;;38283:24:0;;9910:10;38283:24;;38275:63;;;;-1:-1:-1;;;38275:63:0;;15518:2:1;38275:63:0;;;15500:21:1;15557:2;15537:18;;;15530:30;15596:28;15576:18;;;15569:56;15642:18;;38275:63:0;15316:350:1;38275:63:0;9910:10;38351:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38351:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;38351:53:0;;;;;;;;;;38418:48;;540:41:1;;;38351:42:0;;9910:10;38418:48;;513:18:1;38418:48:0;;;;;;;38190:284;;:::o;51682:111::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;51761:8:::1;:22:::0;;-1:-1:-1;;;;;51761:22:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;51761:22:0;;::::1;::::0;;;::::1;::::0;;51682:111::o;39287:333::-;39436:28;39446:4;39452:2;39456:7;39436:9;:28::i;:::-;39491:48;39514:4;39520:2;39524:7;39533:5;39491:22;:48::i;:::-;39473:139;;;;-1:-1:-1;;;39473:139:0;;;;;;;:::i;:::-;39287:333;;;;:::o;47729:37::-;;;;;;;:::i;49886:538::-;49994:13;50041:16;50049:7;39934:4;39966:12;-1:-1:-1;39956:22:0;39877:109;50041:16;50023:104;;;;-1:-1:-1;;;50023:104:0;;16293:2:1;50023:104:0;;;16275:21:1;16332:2;16312:18;;;16305:30;16371:34;16351:18;;;16344:62;-1:-1:-1;;;16422:18:1;;;16415:46;16478:19;;50023:104:0;16091:412:1;50023:104:0;50147:8;;;;;;;50144:66;;50186:14;50179:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49886:538;;;:::o;50144:66::-;50222:28;50253:10;:8;:10::i;:::-;50222:41;;50310:1;50285:14;50279:28;:32;:137;;;;;;;;;;;;;;;;;50349:14;50365:18;:7;:16;:18::i;:::-;50385:13;50332:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50279:137;50272:144;49886:538;-1:-1:-1;;;49886:538:0:o;50871:90::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;50935:7:::1;:18:::0;50871:90::o;51201:126::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;51286:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;51339:124::-:0;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;51423:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;12015:201::-:0;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12104:22:0;::::1;12096:73;;;::::0;-1:-1:-1;;;12096:73:0;;18368:2:1;12096:73:0::1;::::0;::::1;18350:21:1::0;18407:2;18387:18;;;18380:30;18446:34;18426:18;;;18419:62;-1:-1:-1;;;18497:18:1;;;18490:36;18543:19;;12096:73:0::1;18166:402:1::0;12096:73:0::1;12180:28;12199:8;12180:18;:28::i;51566:100::-:0;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;51637:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;51637:19:0;;::::1;::::0;;;::::1;::::0;;51566:100::o;43710:186::-;43817:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43817:29:0;-1:-1:-1;;;;;43817:29:0;;;;;;;;;43860:28;;43817:24;;43860:28;;;;;;;43710:186;;;:::o;41971:1619::-;42078:35;42116:20;42128:7;42116:11;:20::i;:::-;42191:18;;42078:58;;-1:-1:-1;42149:22:0;;-1:-1:-1;;;;;42175:34:0;9910:10;-1:-1:-1;;;;;42175:34:0;;:83;;;-1:-1:-1;9910:10:0;42222:20;42234:7;42222:11;:20::i;:::-;-1:-1:-1;;;;;42222:36:0;;42175:83;:146;;;-1:-1:-1;42288:18:0;;42271:50;;9910:10;38547:202;:::i;42271:50::-;42149:173;;42353:17;42335:107;;;;-1:-1:-1;;;42335:107:0;;18775:2:1;42335:107:0;;;18757:21:1;18814:2;18794:18;;;18787:30;18853:34;18833:18;;;18826:62;-1:-1:-1;;;18904:18:1;;;18897:48;18962:19;;42335:107:0;18573:414:1;42335:107:0;42495:4;-1:-1:-1;;;;;42473:26:0;:13;:18;;;-1:-1:-1;;;;;42473:26:0;;42455:104;;;;-1:-1:-1;;;42455:104:0;;19194:2:1;42455:104:0;;;19176:21:1;19233:2;19213:18;;;19206:30;19272:34;19252:18;;;19245:62;-1:-1:-1;;;19323:18:1;;;19316:36;19369:19;;42455:104:0;18992:402:1;42455:104:0;-1:-1:-1;;;;;42576:16:0;;42568:66;;;;-1:-1:-1;;;42568:66:0;;19601:2:1;42568:66:0;;;19583:21:1;19640:2;19620:18;;;19613:30;19679:34;19659:18;;;19652:62;-1:-1:-1;;;19730:18:1;;;19723:35;19775:19;;42568:66:0;19399:401:1;42568:66:0;42753:49;42770:1;42774:7;42783:13;:18;;;42753:8;:49::i;:::-;-1:-1:-1;;;;;42815:18:0;;;;;;:12;:18;;;;;:31;;42845:1;;42815:18;:31;;42845:1;;-1:-1:-1;;;;;42815:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;42815:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42855:16:0;;-1:-1:-1;42855:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;42855:16:0;;:29;;-1:-1:-1;;42855:29:0;;:::i;:::-;;;-1:-1:-1;;;;;42855:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42916:43:0;;;;;;;;-1:-1:-1;;;;;42916:43:0;;;;;;42942:15;42916:43;;;;;;;;;-1:-1:-1;42893:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;42893:66:0;-1:-1:-1;;;;;;42893:66:0;;;;;;;;;;;43217:11;42905:7;-1:-1:-1;43217:11:0;:::i;:::-;43282:1;43241:24;;;:11;:24;;;;;:29;43195:33;;-1:-1:-1;;;;;;43241:29:0;43237:250;;43301:20;43309:11;39934:4;39966:12;-1:-1:-1;39956:22:0;39877:109;43301:20;43297:181;;;43363:103;;;;;;;;43392:18;;-1:-1:-1;;;;;43363:103:0;;;;;;43425:28;;;;43363:103;;;;;;;;;;-1:-1:-1;43336:24:0;;;:11;:24;;;;;;;:130;;;;;;;;;-1:-1:-1;;;43336:130:0;-1:-1:-1;;;;;;43336:130:0;;;;;;;;;;;;43297:181;43523:7;43519:2;-1:-1:-1;;;;;43504:27:0;43513:4;-1:-1:-1;;;;;43504:27:0;;;;;;;;;;;43540:42;42069:1521;;;41971:1619;;;:::o;35358:646::-;-1:-1:-1;;;;;;;;;;;;;;;;;35485:16:0;35493:7;39934:4;39966:12;-1:-1:-1;39956:22:0;39877:109;35485:16;35477:71;;;;-1:-1:-1;;;35477:71:0;;20516:2:1;35477:71:0;;;20498:21:1;20555:2;20535:18;;;20528:30;20594:34;20574:18;;;20567:62;-1:-1:-1;;;20645:18:1;;;20638:40;20695:19;;35477:71:0;20314:406:1;35477:71:0;35561:26;35611:12;35600:7;:23;35596:97;;35657:22;35667:12;35657:7;:22;:::i;:::-;:26;;35682:1;35657:26;:::i;:::-;35636:47;;35596:97;35725:7;35705:222;35742:18;35734:4;:26;35705:222;;35781:31;35815:17;;;:11;:17;;;;;;;;;35781:51;;;;;;;;;-1:-1:-1;;;;;35781:51:0;;;;;-1:-1:-1;;;35781:51:0;;;;;;;;;;;;35847:28;35843:75;;35897:9;35358:646;-1:-1:-1;;;;35358:646:0:o;35843:75::-;-1:-1:-1;35762:6:0;;;;:::i;:::-;;;;35705:222;;;-1:-1:-1;35939:57:0;;-1:-1:-1;;;35939:57:0;;21068:2:1;35939:57:0;;;21050:21:1;21107:2;21087:18;;;21080:30;21146:34;21126:18;;;21119:62;-1:-1:-1;;;21197:18:1;;;21190:45;21252:19;;35939:57:0;20866:411:1;12376:191:0;12469:6;;;-1:-1:-1;;;;;12486:17:0;;;-1:-1:-1;;;;;;12486:17:0;;;;;;;12519:40;;12469:6;;;12486:17;12469:6;;12519:40;;12450:16;;12519:40;12439:128;12376:191;:::o;39996:102::-;40063:27;40073:2;40077:8;40063:27;;;;;;;;;;;;:9;:27::i;45511:736::-;45658:4;-1:-1:-1;;;;;45677:13:0;;14102:19;:23;45673:567;;45720:72;;-1:-1:-1;;;45720:72:0;;-1:-1:-1;;;;;45720:36:0;;;;;:72;;9910:10;;45771:4;;45777:7;;45786:5;;45720:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45720:72:0;;;;;;;;-1:-1:-1;;45720:72:0;;;;;;;;;;;;:::i;:::-;;;45705:488;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45959:13:0;;45955:227;;45994:61;;-1:-1:-1;;;45994:61:0;;;;;;;:::i;45955:227::-;46146:6;46140:13;46131:6;46127:2;46123:15;46116:38;45705:488;-1:-1:-1;;;;;;45846:55:0;-1:-1:-1;;;45846:55:0;;-1:-1:-1;45839:62:0;;45673:567;-1:-1:-1;46226:4:0;45673:567;45511:736;;;;;;:::o;48436:106::-;48496:13;48527:7;48520:14;;;;;:::i;7392:723::-;7448:13;7669:10;7665:53;;-1:-1:-1;;7696:10:0;;;;;;;;;;;;-1:-1:-1;;;7696:10:0;;;;;7392:723::o;7665:53::-;7743:5;7728:12;7784:78;7791:9;;7784:78;;7817:8;;;;:::i;:::-;;-1:-1:-1;7840:10:0;;-1:-1:-1;7848:2:0;7840:10;;:::i;:::-;;;7784:78;;;7872:19;7904:6;7894:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7894:17:0;;7872:39;;7922:154;7929:10;;7922:154;;7956:11;7966:1;7956:11;;:::i;:::-;;-1:-1:-1;8025:10:0;8033:2;8025:5;:10;:::i;:::-;8012:24;;:2;:24;:::i;:::-;7999:39;;7982:6;7989;7982:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7982:56:0;;;;;;;;-1:-1:-1;8053:11:0;8062:2;8053:11;;:::i;:::-;;;7922:154;;40377:1338;40492:20;40515:12;-1:-1:-1;;;;;40544:16:0;;40536:62;;;;-1:-1:-1;;;40536:62:0;;22606:2:1;40536:62:0;;;22588:21:1;22645:2;22625:18;;;22618:30;22684:34;22664:18;;;22657:62;-1:-1:-1;;;22735:18:1;;;22728:31;22776:19;;40536:62:0;22404:397:1;40536:62:0;40739:21;40747:12;39934:4;39966:12;-1:-1:-1;39956:22:0;39877:109;40739:21;40738:22;40730:64;;;;-1:-1:-1;;;40730:64:0;;23008:2:1;40730:64:0;;;22990:21:1;23047:2;23027:18;;;23020:30;23086:31;23066:18;;;23059:59;23135:18;;40730:64:0;22806:353:1;40730:64:0;40823:12;40811:8;:24;;40803:71;;;;-1:-1:-1;;;40803:71:0;;23366:2:1;40803:71:0;;;23348:21:1;23405:2;23385:18;;;23378:30;23444:34;23424:18;;;23417:62;-1:-1:-1;;;23495:18:1;;;23488:32;23537:19;;40803:71:0;23164:398:1;40803:71:0;-1:-1:-1;;;;;40994:16:0;;40961:30;40994:16;;;:12;:16;;;;;;;;;40961:49;;;;;;;;;-1:-1:-1;;;;;40961:49:0;;;;;-1:-1:-1;;;40961:49:0;;;;;;;;;;;41038:125;;;;;;;;41060:19;;40961:49;;41038:125;;;41060:39;;41090:8;;41060:39;:::i;:::-;-1:-1:-1;;;;;41038:125:0;;;;;41145:8;41110:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;41038:125:0;;;;;;-1:-1:-1;;;;;41019:16:0;;;;;;;:12;:16;;;;;;;;:144;;;;;;;;-1:-1:-1;;;41019:144:0;;;;;;;;;;;;41200:43;;;;;;;;;;;41226:15;41200:43;;;;;;;;41172:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;41172:71:0;-1:-1:-1;;;;;;41172:71:0;;;;;;;;;;;;;;;;;;41184:12;;41304:295;41328:8;41324:1;:12;41304:295;;;41359:38;;41384:12;;-1:-1:-1;;;;;41359:38:0;;;41376:1;;41359:38;;41376:1;;41359:38;41428:59;41459:1;41463:2;41467:12;41481:5;41428:22;:59::i;:::-;41408:156;;;;-1:-1:-1;;;41408:156:0;;;;;;;:::i;:::-;41575:14;;;;:::i;:::-;;;;41338:3;;;;;:::i;:::-;;;;41304:295;;;-1:-1:-1;41611:12:0;:27;;;41647:60;39287:333;-1:-1:-1;;;;;;;:::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:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:632;4063:5;4093:18;4134:2;4126:6;4123:14;4120:40;;;4140:18;;:::i;:::-;4215:2;4209:9;4183:2;4269:15;;-1:-1:-1;;4265:24:1;;;4291:2;4261:33;4257:42;4245:55;;;4315:18;;;4335:22;;;4312:46;4309:72;;;4361:18;;:::i;:::-;4401:10;4397:2;4390:22;4430:6;4421:15;;4460:6;4452;4445:22;4500:3;4491:6;4486:3;4482:16;4479:25;4476:45;;;4517:1;4514;4507:12;4476:45;4567:6;4562:3;4555:4;4547:6;4543:17;4530:44;4622:1;4615:4;4606:6;4598;4594:19;4590:30;4583:41;;;;3998:632;;;;;:::o;4635:451::-;4704:6;4757:2;4745:9;4736:7;4732:23;4728:32;4725:52;;;4773:1;4770;4763:12;4725:52;4813:9;4800:23;4846:18;4838:6;4835:30;4832:50;;;4878:1;4875;4868:12;4832:50;4901:22;;4954:4;4946:13;;4942:27;-1:-1:-1;4932:55:1;;4983:1;4980;4973:12;4932:55;5006:74;5072:7;5067:2;5054:16;5049:2;5045;5041:11;5006:74;:::i;5091:254::-;5159:6;5167;5220:2;5208:9;5199:7;5195:23;5191:32;5188:52;;;5236:1;5233;5226:12;5188:52;5272:9;5259:23;5249:33;;5301:38;5335:2;5324:9;5320:18;5301:38;:::i;:::-;5291:48;;5091:254;;;;;:::o;5350:::-;5415:6;5423;5476:2;5464:9;5455:7;5451:23;5447:32;5444:52;;;5492:1;5489;5482:12;5444:52;5515:29;5534:9;5515:29;:::i;:::-;5505:39;;5563:35;5594:2;5583:9;5579:18;5563:35;:::i;5609:667::-;5704:6;5712;5720;5728;5781:3;5769:9;5760:7;5756:23;5752:33;5749:53;;;5798:1;5795;5788:12;5749:53;5821:29;5840:9;5821:29;:::i;:::-;5811:39;;5869:38;5903:2;5892:9;5888:18;5869:38;:::i;:::-;5859:48;;5954:2;5943:9;5939:18;5926:32;5916:42;;6009:2;5998:9;5994:18;5981:32;6036:18;6028:6;6025:30;6022:50;;;6068:1;6065;6058:12;6022:50;6091:22;;6144:4;6136:13;;6132:27;-1:-1:-1;6122:55:1;;6173:1;6170;6163:12;6122:55;6196:74;6262:7;6257:2;6244:16;6239:2;6235;6231:11;6196:74;:::i;:::-;6186:84;;;5609:667;;;;;;;:::o;6281:260::-;6349:6;6357;6410:2;6398:9;6389:7;6385:23;6381:32;6378:52;;;6426:1;6423;6416:12;6378:52;6449:29;6468:9;6449:29;:::i;:::-;6439:39;;6497:38;6531:2;6520:9;6516:18;6497:38;:::i;6546:356::-;6748:2;6730:21;;;6767:18;;;6760:30;6826:34;6821:2;6806:18;;6799:62;6893:2;6878:18;;6546:356::o;6907:380::-;6986:1;6982:12;;;;7029;;;7050:61;;7104:4;7096:6;7092:17;7082:27;;7050:61;7157:2;7149:6;7146:14;7126:18;7123:38;7120:161;;;7203:10;7198:3;7194:20;7191:1;7184:31;7238:4;7235:1;7228:15;7266:4;7263:1;7256:15;7120:161;;6907:380;;;:::o;8535:127::-;8596:10;8591:3;8587:20;8584:1;8577:31;8627:4;8624:1;8617:15;8651:4;8648:1;8641:15;8667:125;8707:4;8735:1;8732;8729:8;8726:34;;;8740:18;;:::i;:::-;-1:-1:-1;8777:9:1;;8667:125::o;9200:135::-;9239:3;-1:-1:-1;;9260:17:1;;9257:43;;;9280:18;;:::i;:::-;-1:-1:-1;9327:1:1;9316:13;;9200:135::o;9965:127::-;10026:10;10021:3;10017:20;10014:1;10007:31;10057:4;10054:1;10047:15;10081:4;10078:1;10071:15;11269:128;11309:3;11340:1;11336:6;11333:1;11330:13;11327:39;;;11346:18;;:::i;:::-;-1:-1:-1;11382:9:1;;11269:128::o;12467:184::-;12537:6;12590:2;12578:9;12569:7;12565:23;12561:32;12558:52;;;12606:1;12603;12596:12;12558:52;-1:-1:-1;12629:16:1;;12467:184;-1:-1:-1;12467:184:1:o;14791:168::-;14831:7;14897:1;14893;14889:6;14885:14;14882:1;14879:21;14874:1;14867:9;14860:17;14856:45;14853:71;;;14904:18;;:::i;:::-;-1:-1:-1;14944:9:1;;14791:168::o;15671:415::-;15873:2;15855:21;;;15912:2;15892:18;;;15885:30;15951:34;15946:2;15931:18;;15924:62;-1:-1:-1;;;16017:2:1;16002:18;;15995:49;16076:3;16061:19;;15671:415::o;16634:1527::-;16858:3;16896:6;16890:13;16922:4;16935:51;16979:6;16974:3;16969:2;16961:6;16957:15;16935:51;:::i;:::-;17049:13;;17008:16;;;;17071:55;17049:13;17008:16;17093:15;;;17071:55;:::i;:::-;17215:13;;17148:20;;;17188:1;;17275;17297:18;;;;17350;;;;17377:93;;17455:4;17445:8;17441:19;17429:31;;17377:93;17518:2;17508:8;17505:16;17485:18;17482:40;17479:167;;;-1:-1:-1;;;17545:33:1;;17601:4;17598:1;17591:15;17631:4;17552:3;17619:17;17479:167;17662:18;17689:110;;;;17813:1;17808:328;;;;17655:481;;17689:110;-1:-1:-1;;17724:24:1;;17710:39;;17769:20;;;;-1:-1:-1;17689:110:1;;17808:328;16581:1;16574:14;;;16618:4;16605:18;;17903:1;17917:169;17931:8;17928:1;17925:15;17917:169;;;18013:14;;17998:13;;;17991:37;18056:16;;;;17948:10;;17917:169;;;17921:3;;18117:8;18110:5;18106:20;18099:27;;17655:481;-1:-1:-1;18152:3:1;;16634:1527;-1:-1:-1;;;;;;;;;;;16634:1527:1:o;19805:246::-;19845:4;-1:-1:-1;;;;;19958:10:1;;;;19928;;19980:12;;;19977:38;;;19995:18;;:::i;:::-;20032:13;;19805:246;-1:-1:-1;;;19805:246:1:o;20056:253::-;20096:3;-1:-1:-1;;;;;20185:2:1;20182:1;20178:10;20215:2;20212:1;20208:10;20246:3;20242:2;20238:12;20233:3;20230:21;20227:47;;;20254:18;;:::i;:::-;20290:13;;20056:253;-1:-1:-1;;;;20056:253:1:o;20725:136::-;20764:3;20792:5;20782:39;;20801:18;;:::i;:::-;-1:-1:-1;;;20837:18:1;;20725:136::o;21282:489::-;-1:-1:-1;;;;;21551:15:1;;;21533:34;;21603:15;;21598:2;21583:18;;21576:43;21650:2;21635:18;;21628:34;;;21698:3;21693:2;21678:18;;21671:31;;;21476:4;;21719:46;;21745:19;;21737:6;21719:46;:::i;:::-;21711:54;21282:489;-1:-1:-1;;;;;;21282:489:1:o;21776:249::-;21845:6;21898:2;21886:9;21877:7;21873:23;21869:32;21866:52;;;21914:1;21911;21904:12;21866:52;21946:9;21940:16;21965:30;21989:5;21965:30;:::i;22030:127::-;22091:10;22086:3;22082:20;22079:1;22072:31;22122:4;22119:1;22112:15;22146:4;22143:1;22136:15;22162:120;22202:1;22228;22218:35;;22233:18;;:::i;:::-;-1:-1:-1;22267:9:1;;22162:120::o;22287:112::-;22319:1;22345;22335:35;;22350:18;;:::i;:::-;-1:-1:-1;22384:9:1;;22287:112::o

Swarm Source

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