ETH Price: $3,476.08 (+2.00%)
Gas: 8 Gwei

Token

FGP (FGP)
 

Overview

Max Total Supply

2,178 FGP

Holders

715

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 FGP
0x6547F22b0e11A07f4108D2e160e421b8cF2528Da
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

DROP 1: 977 Guppies We are all about service as a utility. Buy a Fertile Guppies NFT and reap the rewards of staking your NFT. By offering a unique staking platform, our members can pay for our services with staking reward “GupBux!” We will also open breeding season betwe...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FGP

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-02
*/

/**
 *Submitted for verification at Etherscan.io on 2021-12-02
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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);
    }
}

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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);
}

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);
}

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;
    }
}

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;
}

pragma solidity ^0.8.0;

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

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

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

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);
}

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;
    }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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.
     */

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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


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

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

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

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

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

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

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

        string memory base = baseURI();
        return bytes(base).length > 0 ? string(abi.encodePacked(base, 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 _baseURI;
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

contract  FGP  is ERC721Enumerable, Ownable
{
    using SafeMath for uint256;
    uint public maxSupply=7899;
    uint public firstAirDropSupply=977;
    uint private secondAirDropSupply=2967;
    uint private tokenId=1;
    uint public firstPrice=0.035 ether;
    uint public secondPrice=0.04 ether;
    uint public thirdPrice=0.045 ether;
    uint public maxTrx=5;
    bool public isPreSalePaused=true;
    bool public isPaused=true;
    bool public isSecondPaused=true;
    bool public isThirdPaused=true;
    uint public reserve = 1400;
    uint private startReserve=6499;

        struct SpecificAddresses{
        
        
        address userAddress;
        uint counter;
    }

    mapping(address => SpecificAddresses) public _whiteList;


    mapping(address=>bool) public _addressExist;

    constructor(string memory baseURI) ERC721("FGP", "FGP")  {
        setBaseURI(baseURI);
    }
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseURI = baseURI;
    }

    function flipPreSalePauseStatus() public onlyOwner {
        isPreSalePaused = !isPreSalePaused;
    }
       function flipPauseStatus() public onlyOwner {
        isPaused = !isPaused;
    }
    function flipSecondPauseStatus() public onlyOwner {
        isSecondPaused = !isSecondPaused;
    }
    function flipThirdPauseStatus() public onlyOwner {
        isThirdPaused = !isThirdPaused;
    }
    function reserveTokens(uint quantity) public onlyOwner {
        require(quantity <= reserve, "The quantity exceeds the reserve.");
        reserve -= quantity;
        for (uint i = 0; i < quantity; i++) {
            _safeMint(msg.sender,startReserve);
            startReserve++;
        }
    }
    function addWhiteListBundle(address[] memory whiteAddress,uint [] memory counter)public onlyOwner {
            for (uint i = 0; i < whiteAddress.length; i++)
            {

        require(!_addressExist[whiteAddress[i]],"Address already Exist");
        _whiteList[whiteAddress[i]]=SpecificAddresses({
             userAddress :whiteAddress[i],
            counter:counter[i]
           });
           _addressExist[whiteAddress[i]]=true;
    }
        }
        
   function firstAirDrop(uint quantity) public payable{
         
        
     require(isPreSalePaused == false, "Sale is not active at the moment");
      require(totalSupply()+quantity<=firstAirDropSupply,"Quantity is greater than remaining Supply");
        require(_addressExist[msg.sender]==true,"Address not Found in whitelist");
        SpecificAddresses storage myaddress = _whiteList[msg.sender];
        require(firstPrice.mul(quantity) == msg.value, "Sent ether value is incorrect");
        require(myaddress.counter>=quantity,"The Amount Selected is Greater than the Remaining Amount of the Token at this Address");

                  for (uint256 i; i <= quantity; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            
        }
    
        myaddress.counter-=quantity;
       
    }
        function publicMint(uint chosenAmount) public payable {
        require(isPaused == false, "Sale is not active at the moment");
        require(totalSupply()+chosenAmount<=firstAirDropSupply,"Quantity must be lesser then MaxSupply");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= maxTrx,"Chosen Amount exceeds MaxQuantity");
        require(firstPrice.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            }
    }
        function secondAirDrop(uint chosenAmount) public payable {
        require(isSecondPaused == false, "Sale is not active at the moment");
        require(totalSupply()+chosenAmount<=secondAirDropSupply+1400,"Quantity must be lesser then MaxSupply");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= maxTrx,"Chosen Amount exceeds MaxQuantity");
        require(secondPrice.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            }
    }
            function thirdAirDrop(uint chosenAmount) public payable {
        require(isThirdPaused == false, "Sale is not active at the moment");
        require(totalSupply()+chosenAmount<=maxSupply-reserve,"Quantity must be lesser then MaxSupply");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= maxTrx,"Chosen Amount exceeds MaxQuantity");
        require(thirdPrice.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            }
    }

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

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
    function totalsupply() private view returns (uint)
   
    {
        return tokenId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_addressExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whiteList","outputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"counter","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"whiteAddress","type":"address[]"},{"internalType":"uint256[]","name":"counter","type":"uint256[]"}],"name":"addWhiteListBundle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"firstAirDrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"firstAirDropSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSalePauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSecondPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipThirdPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSecondPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isThirdPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTrx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"secondAirDrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"secondPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"thirdAirDrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"thirdPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611edb600c556103d1600d55610b97600e556001600f55667c585087238000601055668e1bc9bf040000601155669fdf42f6e4800060125560056013556014805463ffffffff191663010101011790556105786015556119636016553480156200006d57600080fd5b50604051620031753803806200317583398101604081905262000090916200027b565b60408051808201825260038082526204647560ec1b602080840182815285518087019096529285528401528151919291620000ce91600091620001d5565b508051620000e4906001906020840190620001d5565b5050506000620000f96200015960201b60201c565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000152816200015d565b50620003aa565b3390565b600b546001600160a01b03163314620001bc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d1906006906020840190620001d5565b5050565b828054620001e39062000357565b90600052602060002090601f01602090048101928262000207576000855562000252565b82601f106200022257805160ff191683800117855562000252565b8280016001018555821562000252579182015b828111156200025257825182559160200191906001019062000235565b506200026092915062000264565b5090565b5b8082111562000260576000815560010162000265565b600060208083850312156200028f57600080fd5b82516001600160401b0380821115620002a757600080fd5b818501915085601f830112620002bc57600080fd5b815181811115620002d157620002d162000394565b604051601f8201601f19908116603f01168101908382118183101715620002fc57620002fc62000394565b8160405282815288868487010111156200031557600080fd5b600093505b828410156200033957848401860151818501870152928501926200031a565b828411156200034b5760008684830101525b98975050505050505050565b600181811c908216806200036c57607f821691505b602082108114156200038e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612dbb80620003ba6000396000f3fe6080604052600436106102725760003560e01c8063743976a01161014f578063cd3293de116100c1578063e82c1e791161007a578063e82c1e7914610737578063e985e9c514610757578063ed7bfc29146107a0578063f2fde38b146107b3578063f927ef4e146107d3578063fa62884c146107e857600080fd5b8063cd3293de146106ac578063cde06ce4146106c2578063d031370b146106d5578063d1e61e24146106f5578063d5abeb011461070b578063e291cc211461072157600080fd5b806395d89b411161011357806395d89b41146105e8578063a22cb465146105fd578063b187bd261461061d578063b88d4fde1461063c578063c2f037761461065c578063c87b56dd1461068c57600080fd5b8063743976a0146105525780637ed50f06146105675780638462151c146105875780638da5cb5b146105b4578063916162d1146105d257600080fd5b806339a3da4a116101e8578063569c2fbe116101ac578063569c2fbe146104b15780636352211e146104d25780636706c6f0146104f257806367f8ccb8146105075780636b13c0751461051c57806370a082311461053257600080fd5b806339a3da4a146104265780633ccfd60b1461043c57806342842e0e146104515780634f6ccce71461047157806355f804b31461049157600080fd5b806318160ddd1161023a57806318160ddd1461038757806323b872dd146103a65780632db11544146103c65780632e280e32146103d95780632f745c59146103f3578063317675d01461041357600080fd5b806301ffc9a71461027757806305d60ffb146102ac57806306fdde031461030b578063081812fc1461032d578063095ea7b314610365575b600080fd5b34801561028357600080fd5b5061029761029236600461280b565b6107fd565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102ec6102c73660046125d8565b601760205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b0390931683526020830191909152016102a3565b34801561031757600080fd5b50610320610828565b6040516102a39190612983565b34801561033957600080fd5b5061034d61034836600461288e565b6108ba565b6040516001600160a01b0390911681526020016102a3565b34801561037157600080fd5b5061038561038036600461271a565b610954565b005b34801561039357600080fd5b506009545b6040519081526020016102a3565b3480156103b257600080fd5b506103856103c1366004612626565b610a6a565b6103856103d436600461288e565b610a9b565b3480156103e557600080fd5b506014546102979060ff1681565b3480156103ff57600080fd5b5061039861040e36600461271a565b610baf565b61038561042136600461288e565b610c45565b34801561043257600080fd5b5061039860105481565b34801561044857600080fd5b50610385610e73565b34801561045d57600080fd5b5061038561046c366004612626565b610ecc565b34801561047d57600080fd5b5061039861048c36600461288e565b610ee7565b34801561049d57600080fd5b506103856104ac366004612845565b610f7a565b3480156104bd57600080fd5b50601454610297906301000000900460ff1681565b3480156104de57600080fd5b5061034d6104ed36600461288e565b610fb7565b3480156104fe57600080fd5b5061038561102e565b34801561051357600080fd5b50610385611077565b34801561052857600080fd5b5061039860135481565b34801561053e57600080fd5b5061039861054d3660046125d8565b6110b5565b34801561055e57600080fd5b5061032061113c565b34801561057357600080fd5b506014546102979062010000900460ff1681565b34801561059357600080fd5b506105a76105a23660046125d8565b6111ca565b6040516102a3919061293f565b3480156105c057600080fd5b50600b546001600160a01b031661034d565b3480156105de57600080fd5b50610398600d5481565b3480156105f457600080fd5b5061032061126c565b34801561060957600080fd5b506103856106183660046126de565b61127b565b34801561062957600080fd5b5060145461029790610100900460ff1681565b34801561064857600080fd5b50610385610657366004612662565b611340565b34801561066857600080fd5b506102976106773660046125d8565b60186020526000908152604090205460ff1681565b34801561069857600080fd5b506103206106a736600461288e565b611378565b3480156106b857600080fd5b5061039860155481565b6103856106d036600461288e565b611453565b3480156106e157600080fd5b506103856106f036600461288e565b61156d565b34801561070157600080fd5b5061039860115481565b34801561071757600080fd5b50610398600c5481565b34801561072d57600080fd5b5061039860125481565b34801561074357600080fd5b50610385610752366004612744565b61164a565b34801561076357600080fd5b506102976107723660046125f3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103856107ae36600461288e565b611826565b3480156107bf57600080fd5b506103856107ce3660046125d8565b61193e565b3480156107df57600080fd5b506103856119d9565b3480156107f457600080fd5b50610385611a24565b60006001600160e01b0319821663780e9d6360e01b1480610822575061082282611a6b565b92915050565b60606000805461083790612c97565b80601f016020809104026020016040519081016040528092919081815260200182805461086390612c97565b80156108b05780601f10610885576101008083540402835291602001916108b0565b820191906000526020600020905b81548152906001019060200180831161089357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061095f82610fb7565b9050806001600160a01b0316836001600160a01b031614156109cd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161092f565b336001600160a01b03821614806109e957506109e98133610772565b610a5b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161092f565b610a658383611abb565b505050565b610a743382611b29565b610a905760405162461bcd60e51b815260040161092f90612b2e565b610a65838383611c20565b601454610100900460ff1615610ac35760405162461bcd60e51b815260040161092f90612b7f565b600d5481610ad060095490565b610ada9190612c09565b1115610af85760405162461bcd60e51b815260040161092f90612ae8565b60008111610b185760405162461bcd60e51b815260040161092f90612996565b601354811115610b3a5760405162461bcd60e51b815260040161092f90612a72565b6010543490610b499083611dcb565b14610b665760405162461bcd60e51b815260040161092f90612a3b565b60005b81811015610bab57610b8333610b7e600f5490565b611dd7565b600f8054906000610b9383612cd2565b91905055508080610ba390612cd2565b915050610b69565b5050565b6000610bba836110b5565b8210610c1c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161092f565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b60145460ff1615610c685760405162461bcd60e51b815260040161092f90612b7f565b600d5481610c7560095490565b610c7f9190612c09565b1115610cdf5760405162461bcd60e51b815260206004820152602960248201527f5175616e746974792069732067726561746572207468616e2072656d61696e696044820152686e6720537570706c7960b81b606482015260840161092f565b3360009081526018602052604090205460ff161515600114610d435760405162461bcd60e51b815260206004820152601e60248201527f41646472657373206e6f7420466f756e6420696e2077686974656c6973740000604482015260640161092f565b3360009081526017602052604090206010543490610d619084611dcb565b14610d7e5760405162461bcd60e51b815260040161092f90612a3b565b8181600101541015610e165760405162461bcd60e51b815260206004820152605560248201527f54686520416d6f756e742053656c65637465642069732047726561746572207460448201527f68616e207468652052656d61696e696e6720416d6f756e74206f662074686520606482015274546f6b656e2061742074686973204164647265737360581b608482015260a40161092f565b60005b828111610e5557610e2d33610b7e600f5490565b600f8054906000610e3d83612cd2565b91905055508080610e4d90612cd2565b915050610e19565b5081816001016000828254610e6a9190612c54565b90915550505050565b600b546001600160a01b03163314610e9d5760405162461bcd60e51b815260040161092f90612ab3565b6040514790339082156108fc029083906000818181858888f19350505050158015610bab573d6000803e3d6000fd5b610a6583838360405180602001604052806000815250611340565b6000610ef260095490565b8210610f555760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161092f565b60098281548110610f6857610f68612d43565b90600052602060002001549050919050565b600b546001600160a01b03163314610fa45760405162461bcd60e51b815260040161092f90612ab3565b8051610bab906006906020840190612459565b6000818152600260205260408120546001600160a01b0316806108225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161092f565b600b546001600160a01b031633146110585760405162461bcd60e51b815260040161092f90612ab3565b6014805462ff0000198116620100009182900460ff1615909102179055565b600b546001600160a01b031633146110a15760405162461bcd60e51b815260040161092f90612ab3565b6014805460ff19811660ff90911615179055565b60006001600160a01b0382166111205760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161092f565b506001600160a01b031660009081526003602052604090205490565b6006805461114990612c97565b80601f016020809104026020016040519081016040528092919081815260200182805461117590612c97565b80156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b505050505081565b606060006111d7836110b5565b905060008167ffffffffffffffff8111156111f4576111f4612d59565b60405190808252806020026020018201604052801561121d578160200160208202803683370190505b50905060005b82811015611264576112358582610baf565b82828151811061124757611247612d43565b60209081029190910101528061125c81612cd2565b915050611223565b509392505050565b60606001805461083790612c97565b6001600160a01b0382163314156112d45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161092f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61134a3383611b29565b6113665760405162461bcd60e51b815260040161092f90612b2e565b61137284848484611df1565b50505050565b6000818152600260205260409020546060906001600160a01b03166113f75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161092f565b6000611401611e24565b90506000815111611421576040518060200160405280600081525061144c565b8061142b84611e33565b60405160200161143c9291906128d3565b6040516020818303038152906040525b9392505050565b6014546301000000900460ff161561147d5760405162461bcd60e51b815260040161092f90612b7f565b601554600c5461148d9190612c54565b8161149760095490565b6114a19190612c09565b11156114bf5760405162461bcd60e51b815260040161092f90612ae8565b600081116114df5760405162461bcd60e51b815260040161092f90612996565b6013548111156115015760405162461bcd60e51b815260040161092f90612a72565b60125434906115109083611dcb565b1461152d5760405162461bcd60e51b815260040161092f90612a3b565b60005b81811015610bab5761154533610b7e600f5490565b600f805490600061155583612cd2565b9190505550808061156590612cd2565b915050611530565b600b546001600160a01b031633146115975760405162461bcd60e51b815260040161092f90612ab3565b6015548111156115f35760405162461bcd60e51b815260206004820152602160248201527f546865207175616e7469747920657863656564732074686520726573657276656044820152601760f91b606482015260840161092f565b80601560008282546116059190612c54565b90915550600090505b81811015610bab5761162233601654611dd7565b6016805490600061163283612cd2565b9190505550808061164290612cd2565b91505061160e565b600b546001600160a01b031633146116745760405162461bcd60e51b815260040161092f90612ab3565b60005b8251811015610a65576018600084838151811061169657611696612d43565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16156117025760405162461bcd60e51b81526020600482015260156024820152741059191c995cdcc8185b1c9958591e48115e1a5cdd605a1b604482015260640161092f565b604051806040016040528084838151811061171f5761171f612d43565b60200260200101516001600160a01b0316815260200183838151811061174757611747612d43565b60200260200101518152506017600085848151811061176857611768612d43565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550602082015181600101559050506001601860008584815181106117e2576117e2612d43565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061181e81612cd2565b915050611677565b60145462010000900460ff161561184f5760405162461bcd60e51b815260040161092f90612b7f565b600e5461185e90610578612c09565b8161186860095490565b6118729190612c09565b11156118905760405162461bcd60e51b815260040161092f90612ae8565b600081116118b05760405162461bcd60e51b815260040161092f90612996565b6013548111156118d25760405162461bcd60e51b815260040161092f90612a72565b60115434906118e19083611dcb565b146118fe5760405162461bcd60e51b815260040161092f90612a3b565b60005b81811015610bab5761191633610b7e600f5490565b600f805490600061192683612cd2565b9190505550808061193690612cd2565b915050611901565b600b546001600160a01b031633146119685760405162461bcd60e51b815260040161092f90612ab3565b6001600160a01b0381166119cd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092f565b6119d681611f31565b50565b600b546001600160a01b03163314611a035760405162461bcd60e51b815260040161092f90612ab3565b6014805463ff00000019811663010000009182900460ff1615909102179055565b600b546001600160a01b03163314611a4e5760405162461bcd60e51b815260040161092f90612ab3565b6014805461ff001981166101009182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b1480611a9c57506001600160e01b03198216635b5e139f60e01b145b8061082257506301ffc9a760e01b6001600160e01b0319831614610822565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611af082610fb7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ba25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161092f565b6000611bad83610fb7565b9050806001600160a01b0316846001600160a01b03161480611be85750836001600160a01b0316611bdd846108ba565b6001600160a01b0316145b80611c1857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c3382610fb7565b6001600160a01b031614611c9b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161092f565b6001600160a01b038216611cfd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161092f565b611d08838383611f83565b611d13600082611abb565b6001600160a01b0383166000908152600360205260408120805460019290611d3c908490612c54565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d6a908490612c09565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061144c8284612c35565b610bab82826040518060200160405280600081525061203b565b611dfc848484611c20565b611e088484848461206e565b6113725760405162461bcd60e51b815260040161092f906129e9565b60606006805461083790612c97565b606081611e575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e815780611e6b81612cd2565b9150611e7a9050600a83612c21565b9150611e5b565b60008167ffffffffffffffff811115611e9c57611e9c612d59565b6040519080825280601f01601f191660200182016040528015611ec6576020820181803683370190505b5090505b8415611c1857611edb600183612c54565b9150611ee8600a86612ced565b611ef3906030612c09565b60f81b818381518110611f0857611f08612d43565b60200101906001600160f81b031916908160001a905350611f2a600a86612c21565b9450611eca565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611fde57611fd981600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612001565b816001600160a01b0316836001600160a01b03161461200157612001838261217b565b6001600160a01b03821661201857610a6581612218565b826001600160a01b0316826001600160a01b031614610a6557610a6582826122c7565b612045838361230b565b612052600084848461206e565b610a655760405162461bcd60e51b815260040161092f906129e9565b60006001600160a01b0384163b1561217057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120b2903390899088908890600401612902565b602060405180830381600087803b1580156120cc57600080fd5b505af19250505080156120fc575060408051601f3d908101601f191682019092526120f991810190612828565b60015b612156573d80801561212a576040519150601f19603f3d011682016040523d82523d6000602084013e61212f565b606091505b50805161214e5760405162461bcd60e51b815260040161092f906129e9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c18565b506001949350505050565b60006001612188846110b5565b6121929190612c54565b6000838152600860205260409020549091508082146121e5576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061222a90600190612c54565b6000838152600a60205260408120546009805493945090928490811061225257612252612d43565b90600052602060002001549050806009838154811061227357612273612d43565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806122ab576122ab612d2d565b6001900381819060005260206000200160009055905550505050565b60006122d2836110b5565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166123615760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161092f565b6000818152600260205260409020546001600160a01b0316156123c65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161092f565b6123d260008383611f83565b6001600160a01b03821660009081526003602052604081208054600192906123fb908490612c09565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461246590612c97565b90600052602060002090601f01602090048101928261248757600085556124cd565b82601f106124a057805160ff19168380011785556124cd565b828001600101855582156124cd579182015b828111156124cd5782518255916020019190600101906124b2565b506124d99291506124dd565b5090565b5b808211156124d957600081556001016124de565b600067ffffffffffffffff83111561250c5761250c612d59565b61251f601f8401601f1916602001612bb4565b905082815283838301111561253357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461256157600080fd5b919050565b600082601f83011261257757600080fd5b8135602061258c61258783612be5565b612bb4565b80838252828201915082860187848660051b89010111156125ac57600080fd5b60005b858110156125cb578135845292840192908401906001016125af565b5090979650505050505050565b6000602082840312156125ea57600080fd5b61144c8261254a565b6000806040838503121561260657600080fd5b61260f8361254a565b915061261d6020840161254a565b90509250929050565b60008060006060848603121561263b57600080fd5b6126448461254a565b92506126526020850161254a565b9150604084013590509250925092565b6000806000806080858703121561267857600080fd5b6126818561254a565b935061268f6020860161254a565b925060408501359150606085013567ffffffffffffffff8111156126b257600080fd5b8501601f810187136126c357600080fd5b6126d2878235602084016124f2565b91505092959194509250565b600080604083850312156126f157600080fd5b6126fa8361254a565b91506020830135801515811461270f57600080fd5b809150509250929050565b6000806040838503121561272d57600080fd5b6127368361254a565b946020939093013593505050565b6000806040838503121561275757600080fd5b823567ffffffffffffffff8082111561276f57600080fd5b818501915085601f83011261278357600080fd5b8135602061279361258783612be5565b8083825282820191508286018a848660051b89010111156127b357600080fd5b600096505b848710156127dd576127c98161254a565b8352600196909601959183019183016127b8565b50965050860135925050808211156127f457600080fd5b5061280185828601612566565b9150509250929050565b60006020828403121561281d57600080fd5b813561144c81612d6f565b60006020828403121561283a57600080fd5b815161144c81612d6f565b60006020828403121561285757600080fd5b813567ffffffffffffffff81111561286e57600080fd5b8201601f8101841361287f57600080fd5b611c18848235602084016124f2565b6000602082840312156128a057600080fd5b5035919050565b600081518084526128bf816020860160208601612c6b565b601f01601f19169290920160200192915050565b600083516128e5818460208801612c6b565b8351908301906128f9818360208801612c6b565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612935908301846128a7565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129775783518352928401929184019160010161295b565b50909695505050505050565b60208152600061144c60208301846128a7565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601d908201527f53656e742065746865722076616c756520697320696e636f7272656374000000604082015260600190565b60208082526021908201527f43686f73656e20416d6f756e742065786365656473204d61785175616e7469746040820152607960f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604082015265537570706c7960d01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612bdd57612bdd612d59565b604052919050565b600067ffffffffffffffff821115612bff57612bff612d59565b5060051b60200190565b60008219821115612c1c57612c1c612d01565b500190565b600082612c3057612c30612d17565b500490565b6000816000190483118215151615612c4f57612c4f612d01565b500290565b600082821015612c6657612c66612d01565b500390565b60005b83811015612c86578181015183820152602001612c6e565b838111156113725750506000910152565b600181811c90821680612cab57607f821691505b60208210811415612ccc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ce657612ce6612d01565b5060010190565b600082612cfc57612cfc612d17565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119d657600080fdfea2646970667358221220c1cd5ba236da173148fd7bdaf5295c022820822e79af7fb7074028263c424b8b64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f66657274696c652d677570706965732e6865726f6b756170702e636f6d2f6e66742f6d657461646174612f00000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c8063743976a01161014f578063cd3293de116100c1578063e82c1e791161007a578063e82c1e7914610737578063e985e9c514610757578063ed7bfc29146107a0578063f2fde38b146107b3578063f927ef4e146107d3578063fa62884c146107e857600080fd5b8063cd3293de146106ac578063cde06ce4146106c2578063d031370b146106d5578063d1e61e24146106f5578063d5abeb011461070b578063e291cc211461072157600080fd5b806395d89b411161011357806395d89b41146105e8578063a22cb465146105fd578063b187bd261461061d578063b88d4fde1461063c578063c2f037761461065c578063c87b56dd1461068c57600080fd5b8063743976a0146105525780637ed50f06146105675780638462151c146105875780638da5cb5b146105b4578063916162d1146105d257600080fd5b806339a3da4a116101e8578063569c2fbe116101ac578063569c2fbe146104b15780636352211e146104d25780636706c6f0146104f257806367f8ccb8146105075780636b13c0751461051c57806370a082311461053257600080fd5b806339a3da4a146104265780633ccfd60b1461043c57806342842e0e146104515780634f6ccce71461047157806355f804b31461049157600080fd5b806318160ddd1161023a57806318160ddd1461038757806323b872dd146103a65780632db11544146103c65780632e280e32146103d95780632f745c59146103f3578063317675d01461041357600080fd5b806301ffc9a71461027757806305d60ffb146102ac57806306fdde031461030b578063081812fc1461032d578063095ea7b314610365575b600080fd5b34801561028357600080fd5b5061029761029236600461280b565b6107fd565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102ec6102c73660046125d8565b601760205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b0390931683526020830191909152016102a3565b34801561031757600080fd5b50610320610828565b6040516102a39190612983565b34801561033957600080fd5b5061034d61034836600461288e565b6108ba565b6040516001600160a01b0390911681526020016102a3565b34801561037157600080fd5b5061038561038036600461271a565b610954565b005b34801561039357600080fd5b506009545b6040519081526020016102a3565b3480156103b257600080fd5b506103856103c1366004612626565b610a6a565b6103856103d436600461288e565b610a9b565b3480156103e557600080fd5b506014546102979060ff1681565b3480156103ff57600080fd5b5061039861040e36600461271a565b610baf565b61038561042136600461288e565b610c45565b34801561043257600080fd5b5061039860105481565b34801561044857600080fd5b50610385610e73565b34801561045d57600080fd5b5061038561046c366004612626565b610ecc565b34801561047d57600080fd5b5061039861048c36600461288e565b610ee7565b34801561049d57600080fd5b506103856104ac366004612845565b610f7a565b3480156104bd57600080fd5b50601454610297906301000000900460ff1681565b3480156104de57600080fd5b5061034d6104ed36600461288e565b610fb7565b3480156104fe57600080fd5b5061038561102e565b34801561051357600080fd5b50610385611077565b34801561052857600080fd5b5061039860135481565b34801561053e57600080fd5b5061039861054d3660046125d8565b6110b5565b34801561055e57600080fd5b5061032061113c565b34801561057357600080fd5b506014546102979062010000900460ff1681565b34801561059357600080fd5b506105a76105a23660046125d8565b6111ca565b6040516102a3919061293f565b3480156105c057600080fd5b50600b546001600160a01b031661034d565b3480156105de57600080fd5b50610398600d5481565b3480156105f457600080fd5b5061032061126c565b34801561060957600080fd5b506103856106183660046126de565b61127b565b34801561062957600080fd5b5060145461029790610100900460ff1681565b34801561064857600080fd5b50610385610657366004612662565b611340565b34801561066857600080fd5b506102976106773660046125d8565b60186020526000908152604090205460ff1681565b34801561069857600080fd5b506103206106a736600461288e565b611378565b3480156106b857600080fd5b5061039860155481565b6103856106d036600461288e565b611453565b3480156106e157600080fd5b506103856106f036600461288e565b61156d565b34801561070157600080fd5b5061039860115481565b34801561071757600080fd5b50610398600c5481565b34801561072d57600080fd5b5061039860125481565b34801561074357600080fd5b50610385610752366004612744565b61164a565b34801561076357600080fd5b506102976107723660046125f3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103856107ae36600461288e565b611826565b3480156107bf57600080fd5b506103856107ce3660046125d8565b61193e565b3480156107df57600080fd5b506103856119d9565b3480156107f457600080fd5b50610385611a24565b60006001600160e01b0319821663780e9d6360e01b1480610822575061082282611a6b565b92915050565b60606000805461083790612c97565b80601f016020809104026020016040519081016040528092919081815260200182805461086390612c97565b80156108b05780601f10610885576101008083540402835291602001916108b0565b820191906000526020600020905b81548152906001019060200180831161089357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061095f82610fb7565b9050806001600160a01b0316836001600160a01b031614156109cd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161092f565b336001600160a01b03821614806109e957506109e98133610772565b610a5b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161092f565b610a658383611abb565b505050565b610a743382611b29565b610a905760405162461bcd60e51b815260040161092f90612b2e565b610a65838383611c20565b601454610100900460ff1615610ac35760405162461bcd60e51b815260040161092f90612b7f565b600d5481610ad060095490565b610ada9190612c09565b1115610af85760405162461bcd60e51b815260040161092f90612ae8565b60008111610b185760405162461bcd60e51b815260040161092f90612996565b601354811115610b3a5760405162461bcd60e51b815260040161092f90612a72565b6010543490610b499083611dcb565b14610b665760405162461bcd60e51b815260040161092f90612a3b565b60005b81811015610bab57610b8333610b7e600f5490565b611dd7565b600f8054906000610b9383612cd2565b91905055508080610ba390612cd2565b915050610b69565b5050565b6000610bba836110b5565b8210610c1c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161092f565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b60145460ff1615610c685760405162461bcd60e51b815260040161092f90612b7f565b600d5481610c7560095490565b610c7f9190612c09565b1115610cdf5760405162461bcd60e51b815260206004820152602960248201527f5175616e746974792069732067726561746572207468616e2072656d61696e696044820152686e6720537570706c7960b81b606482015260840161092f565b3360009081526018602052604090205460ff161515600114610d435760405162461bcd60e51b815260206004820152601e60248201527f41646472657373206e6f7420466f756e6420696e2077686974656c6973740000604482015260640161092f565b3360009081526017602052604090206010543490610d619084611dcb565b14610d7e5760405162461bcd60e51b815260040161092f90612a3b565b8181600101541015610e165760405162461bcd60e51b815260206004820152605560248201527f54686520416d6f756e742053656c65637465642069732047726561746572207460448201527f68616e207468652052656d61696e696e6720416d6f756e74206f662074686520606482015274546f6b656e2061742074686973204164647265737360581b608482015260a40161092f565b60005b828111610e5557610e2d33610b7e600f5490565b600f8054906000610e3d83612cd2565b91905055508080610e4d90612cd2565b915050610e19565b5081816001016000828254610e6a9190612c54565b90915550505050565b600b546001600160a01b03163314610e9d5760405162461bcd60e51b815260040161092f90612ab3565b6040514790339082156108fc029083906000818181858888f19350505050158015610bab573d6000803e3d6000fd5b610a6583838360405180602001604052806000815250611340565b6000610ef260095490565b8210610f555760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161092f565b60098281548110610f6857610f68612d43565b90600052602060002001549050919050565b600b546001600160a01b03163314610fa45760405162461bcd60e51b815260040161092f90612ab3565b8051610bab906006906020840190612459565b6000818152600260205260408120546001600160a01b0316806108225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161092f565b600b546001600160a01b031633146110585760405162461bcd60e51b815260040161092f90612ab3565b6014805462ff0000198116620100009182900460ff1615909102179055565b600b546001600160a01b031633146110a15760405162461bcd60e51b815260040161092f90612ab3565b6014805460ff19811660ff90911615179055565b60006001600160a01b0382166111205760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161092f565b506001600160a01b031660009081526003602052604090205490565b6006805461114990612c97565b80601f016020809104026020016040519081016040528092919081815260200182805461117590612c97565b80156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b505050505081565b606060006111d7836110b5565b905060008167ffffffffffffffff8111156111f4576111f4612d59565b60405190808252806020026020018201604052801561121d578160200160208202803683370190505b50905060005b82811015611264576112358582610baf565b82828151811061124757611247612d43565b60209081029190910101528061125c81612cd2565b915050611223565b509392505050565b60606001805461083790612c97565b6001600160a01b0382163314156112d45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161092f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61134a3383611b29565b6113665760405162461bcd60e51b815260040161092f90612b2e565b61137284848484611df1565b50505050565b6000818152600260205260409020546060906001600160a01b03166113f75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161092f565b6000611401611e24565b90506000815111611421576040518060200160405280600081525061144c565b8061142b84611e33565b60405160200161143c9291906128d3565b6040516020818303038152906040525b9392505050565b6014546301000000900460ff161561147d5760405162461bcd60e51b815260040161092f90612b7f565b601554600c5461148d9190612c54565b8161149760095490565b6114a19190612c09565b11156114bf5760405162461bcd60e51b815260040161092f90612ae8565b600081116114df5760405162461bcd60e51b815260040161092f90612996565b6013548111156115015760405162461bcd60e51b815260040161092f90612a72565b60125434906115109083611dcb565b1461152d5760405162461bcd60e51b815260040161092f90612a3b565b60005b81811015610bab5761154533610b7e600f5490565b600f805490600061155583612cd2565b9190505550808061156590612cd2565b915050611530565b600b546001600160a01b031633146115975760405162461bcd60e51b815260040161092f90612ab3565b6015548111156115f35760405162461bcd60e51b815260206004820152602160248201527f546865207175616e7469747920657863656564732074686520726573657276656044820152601760f91b606482015260840161092f565b80601560008282546116059190612c54565b90915550600090505b81811015610bab5761162233601654611dd7565b6016805490600061163283612cd2565b9190505550808061164290612cd2565b91505061160e565b600b546001600160a01b031633146116745760405162461bcd60e51b815260040161092f90612ab3565b60005b8251811015610a65576018600084838151811061169657611696612d43565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16156117025760405162461bcd60e51b81526020600482015260156024820152741059191c995cdcc8185b1c9958591e48115e1a5cdd605a1b604482015260640161092f565b604051806040016040528084838151811061171f5761171f612d43565b60200260200101516001600160a01b0316815260200183838151811061174757611747612d43565b60200260200101518152506017600085848151811061176857611768612d43565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550602082015181600101559050506001601860008584815181106117e2576117e2612d43565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061181e81612cd2565b915050611677565b60145462010000900460ff161561184f5760405162461bcd60e51b815260040161092f90612b7f565b600e5461185e90610578612c09565b8161186860095490565b6118729190612c09565b11156118905760405162461bcd60e51b815260040161092f90612ae8565b600081116118b05760405162461bcd60e51b815260040161092f90612996565b6013548111156118d25760405162461bcd60e51b815260040161092f90612a72565b60115434906118e19083611dcb565b146118fe5760405162461bcd60e51b815260040161092f90612a3b565b60005b81811015610bab5761191633610b7e600f5490565b600f805490600061192683612cd2565b9190505550808061193690612cd2565b915050611901565b600b546001600160a01b031633146119685760405162461bcd60e51b815260040161092f90612ab3565b6001600160a01b0381166119cd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092f565b6119d681611f31565b50565b600b546001600160a01b03163314611a035760405162461bcd60e51b815260040161092f90612ab3565b6014805463ff00000019811663010000009182900460ff1615909102179055565b600b546001600160a01b03163314611a4e5760405162461bcd60e51b815260040161092f90612ab3565b6014805461ff001981166101009182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b1480611a9c57506001600160e01b03198216635b5e139f60e01b145b8061082257506301ffc9a760e01b6001600160e01b0319831614610822565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611af082610fb7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ba25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161092f565b6000611bad83610fb7565b9050806001600160a01b0316846001600160a01b03161480611be85750836001600160a01b0316611bdd846108ba565b6001600160a01b0316145b80611c1857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c3382610fb7565b6001600160a01b031614611c9b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161092f565b6001600160a01b038216611cfd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161092f565b611d08838383611f83565b611d13600082611abb565b6001600160a01b0383166000908152600360205260408120805460019290611d3c908490612c54565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d6a908490612c09565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061144c8284612c35565b610bab82826040518060200160405280600081525061203b565b611dfc848484611c20565b611e088484848461206e565b6113725760405162461bcd60e51b815260040161092f906129e9565b60606006805461083790612c97565b606081611e575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e815780611e6b81612cd2565b9150611e7a9050600a83612c21565b9150611e5b565b60008167ffffffffffffffff811115611e9c57611e9c612d59565b6040519080825280601f01601f191660200182016040528015611ec6576020820181803683370190505b5090505b8415611c1857611edb600183612c54565b9150611ee8600a86612ced565b611ef3906030612c09565b60f81b818381518110611f0857611f08612d43565b60200101906001600160f81b031916908160001a905350611f2a600a86612c21565b9450611eca565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611fde57611fd981600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612001565b816001600160a01b0316836001600160a01b03161461200157612001838261217b565b6001600160a01b03821661201857610a6581612218565b826001600160a01b0316826001600160a01b031614610a6557610a6582826122c7565b612045838361230b565b612052600084848461206e565b610a655760405162461bcd60e51b815260040161092f906129e9565b60006001600160a01b0384163b1561217057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120b2903390899088908890600401612902565b602060405180830381600087803b1580156120cc57600080fd5b505af19250505080156120fc575060408051601f3d908101601f191682019092526120f991810190612828565b60015b612156573d80801561212a576040519150601f19603f3d011682016040523d82523d6000602084013e61212f565b606091505b50805161214e5760405162461bcd60e51b815260040161092f906129e9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c18565b506001949350505050565b60006001612188846110b5565b6121929190612c54565b6000838152600860205260409020549091508082146121e5576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061222a90600190612c54565b6000838152600a60205260408120546009805493945090928490811061225257612252612d43565b90600052602060002001549050806009838154811061227357612273612d43565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806122ab576122ab612d2d565b6001900381819060005260206000200160009055905550505050565b60006122d2836110b5565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166123615760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161092f565b6000818152600260205260409020546001600160a01b0316156123c65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161092f565b6123d260008383611f83565b6001600160a01b03821660009081526003602052604081208054600192906123fb908490612c09565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461246590612c97565b90600052602060002090601f01602090048101928261248757600085556124cd565b82601f106124a057805160ff19168380011785556124cd565b828001600101855582156124cd579182015b828111156124cd5782518255916020019190600101906124b2565b506124d99291506124dd565b5090565b5b808211156124d957600081556001016124de565b600067ffffffffffffffff83111561250c5761250c612d59565b61251f601f8401601f1916602001612bb4565b905082815283838301111561253357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461256157600080fd5b919050565b600082601f83011261257757600080fd5b8135602061258c61258783612be5565b612bb4565b80838252828201915082860187848660051b89010111156125ac57600080fd5b60005b858110156125cb578135845292840192908401906001016125af565b5090979650505050505050565b6000602082840312156125ea57600080fd5b61144c8261254a565b6000806040838503121561260657600080fd5b61260f8361254a565b915061261d6020840161254a565b90509250929050565b60008060006060848603121561263b57600080fd5b6126448461254a565b92506126526020850161254a565b9150604084013590509250925092565b6000806000806080858703121561267857600080fd5b6126818561254a565b935061268f6020860161254a565b925060408501359150606085013567ffffffffffffffff8111156126b257600080fd5b8501601f810187136126c357600080fd5b6126d2878235602084016124f2565b91505092959194509250565b600080604083850312156126f157600080fd5b6126fa8361254a565b91506020830135801515811461270f57600080fd5b809150509250929050565b6000806040838503121561272d57600080fd5b6127368361254a565b946020939093013593505050565b6000806040838503121561275757600080fd5b823567ffffffffffffffff8082111561276f57600080fd5b818501915085601f83011261278357600080fd5b8135602061279361258783612be5565b8083825282820191508286018a848660051b89010111156127b357600080fd5b600096505b848710156127dd576127c98161254a565b8352600196909601959183019183016127b8565b50965050860135925050808211156127f457600080fd5b5061280185828601612566565b9150509250929050565b60006020828403121561281d57600080fd5b813561144c81612d6f565b60006020828403121561283a57600080fd5b815161144c81612d6f565b60006020828403121561285757600080fd5b813567ffffffffffffffff81111561286e57600080fd5b8201601f8101841361287f57600080fd5b611c18848235602084016124f2565b6000602082840312156128a057600080fd5b5035919050565b600081518084526128bf816020860160208601612c6b565b601f01601f19169290920160200192915050565b600083516128e5818460208801612c6b565b8351908301906128f9818360208801612c6b565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612935908301846128a7565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129775783518352928401929184019160010161295b565b50909695505050505050565b60208152600061144c60208301846128a7565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601d908201527f53656e742065746865722076616c756520697320696e636f7272656374000000604082015260600190565b60208082526021908201527f43686f73656e20416d6f756e742065786365656473204d61785175616e7469746040820152607960f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604082015265537570706c7960d01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612bdd57612bdd612d59565b604052919050565b600067ffffffffffffffff821115612bff57612bff612d59565b5060051b60200190565b60008219821115612c1c57612c1c612d01565b500190565b600082612c3057612c30612d17565b500490565b6000816000190483118215151615612c4f57612c4f612d01565b500290565b600082821015612c6657612c66612d01565b500390565b60005b83811015612c86578181015183820152602001612c6e565b838111156113725750506000910152565b600181811c90821680612cab57607f821691505b60208210811415612ccc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ce657612ce6612d01565b5060010190565b600082612cfc57612cfc612d17565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119d657600080fdfea2646970667358221220c1cd5ba236da173148fd7bdaf5295c022820822e79af7fb7074028263c424b8b64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f66657274696c652d677570706965732e6865726f6b756170702e636f6d2f6e66742f6d657461646174612f00000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://fertile-guppies.herokuapp.com/nft/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000033
Arg [2] : 68747470733a2f2f66657274696c652d677570706965732e6865726f6b756170
Arg [3] : 702e636f6d2f6e66742f6d657461646174612f00000000000000000000000000


Deployed Bytecode Sourcemap

49457:5713:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42986:224;;;;;;;;;;-1:-1:-1;42986:224:0;;;;;:::i;:::-;;:::i;:::-;;;8177:14:1;;8170:22;8152:41;;8140:2;8125:18;42986:224:0;;;;;;;;50174:55;;;;;;;;;;-1:-1:-1;50174:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50174:55:0;;;;;;;;;;-1:-1:-1;;;;;7288:32:1;;;7270:51;;7352:2;7337:18;;7330:34;;;;7243:18;50174:55:0;7096:274:1;30968:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32522:221::-;;;;;;;;;;-1:-1:-1;32522:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6559:32:1;;;6541:51;;6529:2;6514:18;32522:221:0;6395:203:1;32045:411:0;;;;;;;;;;-1:-1:-1;32045:411:0;;;;;:::i;:::-;;:::i;:::-;;43626:113;;;;;;;;;;-1:-1:-1;43714:10:0;:17;43626:113;;;19744:25:1;;;19732:2;19717:18;43626:113:0;19598:177:1;33412:339:0;;;;;;;;;;-1:-1:-1;33412:339:0;;;;;:::i;:::-;;:::i;52567:646::-;;;;;;:::i;:::-;;:::i;49839:32::-;;;;;;;;;;-1:-1:-1;49839:32:0;;;;;;;;43294:256;;;;;;;;;;-1:-1:-1;43294:256:0;;;;;:::i;:::-;;:::i;51704:853::-;;;;;;:::i;:::-;;:::i;49689:34::-;;;;;;;;;;;;;;;;54927:140;;;;;;;;;;;;;:::i;33822:185::-;;;;;;;;;;-1:-1:-1;33822:185:0;;;;;:::i;:::-;;:::i;43816:233::-;;;;;;;;;;-1:-1:-1;43816:233:0;;;;;:::i;:::-;;:::i;50393:97::-;;;;;;;;;;-1:-1:-1;50393:97:0;;;;;:::i;:::-;;:::i;49948:30::-;;;;;;;;;;-1:-1:-1;49948:30:0;;;;;;;;;;;30662:239;;;;;;;;;;-1:-1:-1;30662:239:0;;;;;:::i;:::-;;:::i;50700:101::-;;;;;;;;;;;;;:::i;50498:104::-;;;;;;;;;;;;;:::i;49812:20::-;;;;;;;;;;;;;;;;30392:208;;;;;;;;;;-1:-1:-1;30392:208:0;;;;;:::i;:::-;;:::i;29690:22::-;;;;;;;;;;;;;:::i;49910:31::-;;;;;;;;;;-1:-1:-1;49910:31:0;;;;;;;;;;;54568:351;;;;;;;;;;-1:-1:-1;54568:351:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27558:87::-;;;;;;;;;;-1:-1:-1;27631:6:0;;-1:-1:-1;;;;;27631:6:0;27558:87;;49575:34;;;;;;;;;;;;;;;;31137:104;;;;;;;;;;;;;:::i;32815:295::-;;;;;;;;;;-1:-1:-1;32815:295:0;;;;;:::i;:::-;;:::i;49878:25::-;;;;;;;;;;-1:-1:-1;49878:25:0;;;;;;;;;;;34078:328;;;;;;;;;;-1:-1:-1;34078:328:0;;;;;:::i;:::-;;:::i;50240:43::-;;;;;;;;;;-1:-1:-1;50240:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31312:324;;;;;;;;;;-1:-1:-1;31312:324:0;;;;;:::i;:::-;;:::i;49985:26::-;;;;;;;;;;;;;;;;53899:652;;;;;;:::i;:::-;;:::i;50911:305::-;;;;;;;;;;-1:-1:-1;50911:305:0;;;;;:::i;:::-;;:::i;49730:34::-;;;;;;;;;;;;;;;;49542:26;;;;;;;;;;;;;;;;49771:34;;;;;;;;;;;;;;;;51222:467;;;;;;;;;;-1:-1:-1;51222:467:0;;;;;:::i;:::-;;:::i;33181:164::-;;;;;;;;;;-1:-1:-1;33181:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33302:25:0;;;33278:4;33302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33181:164;53223:662;;;;;;:::i;:::-;;:::i;28358:192::-;;;;;;;;;;-1:-1:-1;28358:192:0;;;;;:::i;:::-;;:::i;50807:98::-;;;;;;;;;;;;;:::i;50611:83::-;;;;;;;;;;;;;:::i;42986:224::-;43088:4;-1:-1:-1;;;;;;43112:50:0;;-1:-1:-1;;;43112:50:0;;:90;;;43166:36;43190:11;43166:23;:36::i;:::-;43105:97;42986:224;-1:-1:-1;;42986:224:0:o;30968:100::-;31022:13;31055:5;31048:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30968:100;:::o;32522:221::-;32598:7;36005:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36005:16:0;32618:73;;;;-1:-1:-1;;;32618:73:0;;16199:2:1;32618:73:0;;;16181:21:1;16238:2;16218:18;;;16211:30;16277:34;16257:18;;;16250:62;-1:-1:-1;;;16328:18:1;;;16321:42;16380:19;;32618:73:0;;;;;;;;;-1:-1:-1;32711:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32711:24:0;;32522:221::o;32045:411::-;32126:13;32142:23;32157:7;32142:14;:23::i;:::-;32126:39;;32190:5;-1:-1:-1;;;;;32184:11:0;:2;-1:-1:-1;;;;;32184:11:0;;;32176:57;;;;-1:-1:-1;;;32176:57:0;;18206:2:1;32176:57:0;;;18188:21:1;18245:2;18225:18;;;18218:30;18284:34;18264:18;;;18257:62;-1:-1:-1;;;18335:18:1;;;18328:31;18376:19;;32176:57:0;18004:397:1;32176:57:0;26389:10;-1:-1:-1;;;;;32268:21:0;;;;:62;;-1:-1:-1;32293:37:0;32310:5;26389:10;33181:164;:::i;32293:37::-;32246:168;;;;-1:-1:-1;;;32246:168:0;;13832:2:1;32246:168:0;;;13814:21:1;13871:2;13851:18;;;13844:30;13910:34;13890:18;;;13883:62;13981:26;13961:18;;;13954:54;14025:19;;32246:168:0;13630:420:1;32246:168:0;32427:21;32436:2;32440:7;32427:8;:21::i;:::-;32115:341;32045:411;;:::o;33412:339::-;33607:41;26389:10;33640:7;33607:18;:41::i;:::-;33599:103;;;;-1:-1:-1;;;33599:103:0;;;;;;;:::i;:::-;33715:28;33725:4;33731:2;33735:7;33715:9;:28::i;52567:646::-;52640:8;;;;;;;:17;52632:62;;;;-1:-1:-1;;;52632:62:0;;;;;;;:::i;:::-;52741:18;;52727:12;52713:13;43714:10;:17;;43626:113;52713:13;:26;;;;:::i;:::-;:46;;52705:96;;;;-1:-1:-1;;;52705:96:0;;;;;;;:::i;:::-;52835:1;52820:12;:16;52812:80;;;;-1:-1:-1;;;52812:80:0;;;;;;;:::i;:::-;52927:6;;52911:12;:22;;52903:67;;;;-1:-1:-1;;;52903:67:0;;;;;;;:::i;:::-;52989:10;;53021:9;;52989:28;;53004:12;52989:14;:28::i;:::-;:41;52981:83;;;;-1:-1:-1;;;52981:83:0;;;;;;;:::i;:::-;53080:6;53075:131;53096:12;53092:1;:16;53075:131;;;53130:36;53140:10;53152:13;55152:7;;;55073:94;53152:13;53130:9;:36::i;:::-;53181:7;:9;;;:7;:9;;;:::i;:::-;;;;;;53110:3;;;;;:::i;:::-;;;;53075:131;;;;52567:646;:::o;43294:256::-;43391:7;43427:23;43444:5;43427:16;:23::i;:::-;43419:5;:31;43411:87;;;;-1:-1:-1;;;43411:87:0;;9050:2:1;43411:87:0;;;9032:21:1;9089:2;9069:18;;;9062:30;9128:34;9108:18;;;9101:62;-1:-1:-1;;;9179:18:1;;;9172:41;9230:19;;43411:87:0;8848:407:1;43411:87:0;-1:-1:-1;;;;;;43516:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43294:256::o;51704:853::-;51792:15;;;;:24;51784:69;;;;-1:-1:-1;;;51784:69:0;;;;;;;:::i;:::-;51894:18;;51884:8;51870:13;43714:10;:17;;43626:113;51870:13;:22;;;;:::i;:::-;:42;;51862:95;;;;-1:-1:-1;;;51862:95:0;;12928:2:1;51862:95:0;;;12910:21:1;12967:2;12947:18;;;12940:30;13006:34;12986:18;;;12979:62;-1:-1:-1;;;13057:18:1;;;13050:39;13106:19;;51862:95:0;12726:405:1;51862:95:0;51990:10;51976:25;;;;:13;:25;;;;;;;;:31;;:25;:31;51968:73;;;;-1:-1:-1;;;51968:73:0;;10645:2:1;51968:73:0;;;10627:21:1;10684:2;10664:18;;;10657:30;10723:32;10703:18;;;10696:60;10773:18;;51968:73:0;10443:354:1;51968:73:0;52101:10;52052:35;52090:22;;;:10;:22;;;;;52131:10;;52159:9;;52131:24;;52146:8;52131:14;:24::i;:::-;:37;52123:79;;;;-1:-1:-1;;;52123:79:0;;;;;;;:::i;:::-;52240:8;52221:9;:17;;;:27;;52213:124;;;;-1:-1:-1;;;52213:124:0;;13338:2:1;52213:124:0;;;13320:21:1;13377:2;13357:18;;;13350:30;13416:34;13396:18;;;13389:62;13487:34;13467:18;;;13460:62;-1:-1:-1;;;13538:19:1;;;13531:52;13600:19;;52213:124:0;13136:489:1;52213:124:0;52365:9;52360:137;52381:8;52376:1;:13;52360:137;;52411:36;52421:10;52433:13;55152:7;;;55073:94;52411:36;52462:7;:9;;;:7;:9;;;:::i;:::-;;;;;;52391:3;;;;;:::i;:::-;;;;52360:137;;;;52532:8;52513:9;:17;;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;51704:853:0:o;54927:140::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;55022:37:::1;::::0;54990:21:::1;::::0;55030:10:::1;::::0;55022:37;::::1;;;::::0;54990:21;;54975:12:::1;55022:37:::0;54975:12;55022:37;54990:21;55030:10;55022:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;33822:185:::0;33960:39;33977:4;33983:2;33987:7;33960:39;;;;;;;;;;;;:16;:39::i;43816:233::-;43891:7;43927:30;43714:10;:17;;43626:113;43927:30;43919:5;:38;43911:95;;;;-1:-1:-1;;;43911:95:0;;19026:2:1;43911:95:0;;;19008:21:1;19065:2;19045:18;;;19038:30;19104:34;19084:18;;;19077:62;-1:-1:-1;;;19155:18:1;;;19148:42;19207:19;;43911:95:0;18824:408:1;43911:95:0;44024:10;44035:5;44024:17;;;;;;;;:::i;:::-;;;;;;;;;44017:24;;43816:233;;;:::o;50393:97::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50464:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;30662:239::-:0;30734:7;30770:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30770:16:0;30805:19;30797:73;;;;-1:-1:-1;;;30797:73:0;;14668:2:1;30797:73:0;;;14650:21:1;14707:2;14687:18;;;14680:30;14746:34;14726:18;;;14719:62;-1:-1:-1;;;14797:18:1;;;14790:39;14846:19;;30797:73:0;14466:405:1;50700:101:0;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50779:14:::1;::::0;;-1:-1:-1;;50761:32:0;::::1;50779:14:::0;;;;::::1;;;50778:15;50761:32:::0;;::::1;;::::0;;50700:101::o;50498:104::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50579:15:::1;::::0;;-1:-1:-1;;50560:34:0;::::1;50579:15;::::0;;::::1;50578:16;50560:34;::::0;;50498:104::o;30392:208::-;30464:7;-1:-1:-1;;;;;30492:19:0;;30484:74;;;;-1:-1:-1;;;30484:74:0;;14257:2:1;30484:74:0;;;14239:21:1;14296:2;14276:18;;;14269:30;14335:34;14315:18;;;14308:62;-1:-1:-1;;;14386:18:1;;;14379:40;14436:19;;30484:74:0;14055:406:1;30484:74:0;-1:-1:-1;;;;;;30576:16:0;;;;;:9;:16;;;;;;;30392:208::o;29690:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54568:351::-;54628:16;54662:13;54678:17;54688:6;54678:9;:17::i;:::-;54662:33;;54706:23;54746:5;54732:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54732:20:0;;54706:46;;54768:13;54763:125;54795:5;54787;:13;54763:125;;;54842:34;54862:6;54870:5;54842:19;:34::i;:::-;54826:6;54833:5;54826:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;54802:7;;;;:::i;:::-;;;;54763:125;;;-1:-1:-1;54905:6:0;54568:351;-1:-1:-1;;;54568:351:0:o;31137:104::-;31193:13;31226:7;31219:14;;;;;:::i;32815:295::-;-1:-1:-1;;;;;32918:24:0;;26389:10;32918:24;;32910:62;;;;-1:-1:-1;;;32910:62:0;;12161:2:1;32910:62:0;;;12143:21:1;12200:2;12180:18;;;12173:30;12239:27;12219:18;;;12212:55;12284:18;;32910:62:0;11959:349:1;32910:62:0;26389:10;32985:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32985:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32985:53:0;;;;;;;;;;33054:48;;8152:41:1;;;32985:42:0;;26389:10;33054:48;;8125:18:1;33054:48:0;;;;;;;32815:295;;:::o;34078:328::-;34253:41;26389:10;34286:7;34253:18;:41::i;:::-;34245:103;;;;-1:-1:-1;;;34245:103:0;;;;;;;:::i;:::-;34359:39;34373:4;34379:2;34383:7;34392:5;34359:13;:39::i;:::-;34078:328;;;;:::o;31312:324::-;35981:4;36005:16;;;:7;:16;;;;;;31385:13;;-1:-1:-1;;;;;36005:16:0;31411:76;;;;-1:-1:-1;;;31411:76:0;;17790:2:1;31411:76:0;;;17772:21:1;17829:2;17809:18;;;17802:30;17868:34;17848:18;;;17841:62;-1:-1:-1;;;17919:18:1;;;17912:45;17974:19;;31411:76:0;17588:411:1;31411:76:0;31500:18;31521:9;:7;:9::i;:::-;31500:30;;31569:1;31554:4;31548:18;:22;:80;;;;;;;;;;;;;;;;;31597:4;31603:18;:7;:16;:18::i;:::-;31580:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31548:80;31541:87;31312:324;-1:-1:-1;;;31312:324:0:o;53899:652::-;53974:13;;;;;;;:22;53966:67;;;;-1:-1:-1;;;53966:67:0;;;;;;;:::i;:::-;54090:7;;54080:9;;:17;;;;:::i;:::-;54066:12;54052:13;43714:10;:17;;43626:113;54052:13;:26;;;;:::i;:::-;:45;;54044:95;;;;-1:-1:-1;;;54044:95:0;;;;;;;:::i;:::-;54173:1;54158:12;:16;54150:80;;;;-1:-1:-1;;;54150:80:0;;;;;;;:::i;:::-;54265:6;;54249:12;:22;;54241:67;;;;-1:-1:-1;;;54241:67:0;;;;;;;:::i;:::-;54327:10;;54359:9;;54327:28;;54342:12;54327:14;:28::i;:::-;:41;54319:83;;;;-1:-1:-1;;;54319:83:0;;;;;;;:::i;:::-;54418:6;54413:131;54434:12;54430:1;:16;54413:131;;;54468:36;54478:10;54490:13;55152:7;;;55073:94;54468:36;54519:7;:9;;;:7;:9;;;:::i;:::-;;;;;;54448:3;;;;;:::i;:::-;;;;54413:131;;50911:305;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50997:7:::1;;50985:8;:19;;50977:65;;;::::0;-1:-1:-1;;;50977:65:0;;11354:2:1;50977:65:0::1;::::0;::::1;11336:21:1::0;11393:2;11373:18;;;11366:30;11432:34;11412:18;;;11405:62;-1:-1:-1;;;11483:18:1;;;11476:31;11524:19;;50977:65:0::1;11152:397:1::0;50977:65:0::1;51064:8;51053:7;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;51088:6:0::1;::::0;-1:-1:-1;51083:126:0::1;51104:8;51100:1;:12;51083:126;;;51134:34;51144:10;51155:12;;51134:9;:34::i;:::-;51183:12;:14:::0;;;:12:::1;:14;::::0;::::1;:::i;:::-;;;;;;51114:3;;;;;:::i;:::-;;;;51083:126;;51222:467:::0;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;51340:6:::1;51335:343;51356:12;:19;51352:1;:23;51335:343;;;51417:13;:30;51431:12;51444:1;51431:15;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;51417:30:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;51417:30:0;;::::1;;51416:31;51408:64;;;::::0;-1:-1:-1;;;51408:64:0;;11004:2:1;51408:64:0::1;::::0;::::1;10986:21:1::0;11043:2;11023:18;;;11016:30;-1:-1:-1;;;11062:18:1;;;11055:51;11123:18;;51408:64:0::1;10802:345:1::0;51408:64:0::1;51511:110;;;;;;;;51558:12;51571:1;51558:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;51511:110:0::1;;;;;51596:7;51604:1;51596:10;;;;;;;;:::i;:::-;;;;;;;51511:110;;::::0;51483:10:::1;:27;51494:12;51507:1;51494:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;51483:27:0::1;-1:-1:-1::0;;;;;51483:27:0::1;;;;;;;;;;;;:138;;;;;;;;;;;;;-1:-1:-1::0;;;;;51483:138:0::1;;;;;-1:-1:-1::0;;;;;51483:138:0::1;;;;;;;;;;;;;;;;;51666:4;51635:13;:30;51649:12;51662:1;51649:15;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;51635:30:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;51635:30:0;:35;;-1:-1:-1;;51635:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51377:3;::::1;::::0;::::1;:::i;:::-;;;;51335:343;;53223:662:::0;53299:14;;;;;;;:23;53291:68;;;;-1:-1:-1;;;53291:68:0;;;;;;;:::i;:::-;53406:19;;:24;;53426:4;53406:24;:::i;:::-;53392:12;53378:13;43714:10;:17;;43626:113;53378:13;:26;;;;:::i;:::-;:52;;53370:102;;;;-1:-1:-1;;;53370:102:0;;;;;;;:::i;:::-;53506:1;53491:12;:16;53483:80;;;;-1:-1:-1;;;53483:80:0;;;;;;;:::i;:::-;53598:6;;53582:12;:22;;53574:67;;;;-1:-1:-1;;;53574:67:0;;;;;;;:::i;:::-;53660:11;;53693:9;;53660:29;;53676:12;53660:15;:29::i;:::-;:42;53652:84;;;;-1:-1:-1;;;53652:84:0;;;;;;;:::i;:::-;53752:6;53747:131;53768:12;53764:1;:16;53747:131;;;53802:36;53812:10;53824:13;55152:7;;;55073:94;53802:36;53853:7;:9;;;:7;:9;;;:::i;:::-;;;;;;53782:3;;;;;:::i;:::-;;;;53747:131;;28358:192;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28447:22:0;::::1;28439:73;;;::::0;-1:-1:-1;;;28439:73:0;;9881:2:1;28439:73:0::1;::::0;::::1;9863:21:1::0;9920:2;9900:18;;;9893:30;9959:34;9939:18;;;9932:62;-1:-1:-1;;;10010:18:1;;;10003:36;10056:19;;28439:73:0::1;9679:402:1::0;28439:73:0::1;28523:19;28533:8;28523:9;:19::i;:::-;28358:192:::0;:::o;50807:98::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50884:13:::1;::::0;;-1:-1:-1;;50867:30:0;::::1;50884:13:::0;;;;::::1;;;50883:14;50867:30:::0;;::::1;;::::0;;50807:98::o;50611:83::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50678:8:::1;::::0;;-1:-1:-1;;50666:20:0;::::1;50678:8;::::0;;;::::1;;;50677:9;50666:20:::0;;::::1;;::::0;;50611:83::o;30023:305::-;30125:4;-1:-1:-1;;;;;;30162:40:0;;-1:-1:-1;;;30162:40:0;;:105;;-1:-1:-1;;;;;;;30219:48:0;;-1:-1:-1;;;30219:48:0;30162:105;:158;;;-1:-1:-1;;;;;;;;;;19404:40:0;;;30284:36;19295:157;39898:174;39973:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39973:29:0;-1:-1:-1;;;;;39973:29:0;;;;;;;;:24;;40027:23;39973:24;40027:14;:23::i;:::-;-1:-1:-1;;;;;40018:46:0;;;;;;;;;;;39898:174;;:::o;36210:348::-;36303:4;36005:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36005:16:0;36320:73;;;;-1:-1:-1;;;36320:73:0;;12515:2:1;36320:73:0;;;12497:21:1;12554:2;12534:18;;;12527:30;12593:34;12573:18;;;12566:62;-1:-1:-1;;;12644:18:1;;;12637:42;12696:19;;36320:73:0;12313:408:1;36320:73:0;36404:13;36420:23;36435:7;36420:14;:23::i;:::-;36404:39;;36473:5;-1:-1:-1;;;;;36462:16:0;:7;-1:-1:-1;;;;;36462:16:0;;:51;;;;36506:7;-1:-1:-1;;;;;36482:31:0;:20;36494:7;36482:11;:20::i;:::-;-1:-1:-1;;;;;36482:31:0;;36462:51;:87;;;-1:-1:-1;;;;;;33302:25:0;;;33278:4;33302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36517:32;36454:96;36210:348;-1:-1:-1;;;;36210:348:0:o;39202:578::-;39361:4;-1:-1:-1;;;;;39334:31:0;:23;39349:7;39334:14;:23::i;:::-;-1:-1:-1;;;;;39334:31:0;;39326:85;;;;-1:-1:-1;;;39326:85:0;;17380:2:1;39326:85:0;;;17362:21:1;17419:2;17399:18;;;17392:30;17458:34;17438:18;;;17431:62;-1:-1:-1;;;17509:18:1;;;17502:39;17558:19;;39326:85:0;17178:405:1;39326:85:0;-1:-1:-1;;;;;39430:16:0;;39422:65;;;;-1:-1:-1;;;39422:65:0;;11756:2:1;39422:65:0;;;11738:21:1;11795:2;11775:18;;;11768:30;11834:34;11814:18;;;11807:62;-1:-1:-1;;;11885:18:1;;;11878:34;11929:19;;39422:65:0;11554:400:1;39422:65:0;39500:39;39521:4;39527:2;39531:7;39500:20;:39::i;:::-;39604:29;39621:1;39625:7;39604:8;:29::i;:::-;-1:-1:-1;;;;;39646:15:0;;;;;;:9;:15;;;;;:20;;39665:1;;39646:15;:20;;39665:1;;39646:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39677:13:0;;;;;;:9;:13;;;;;:18;;39694:1;;39677:13;:18;;39694:1;;39677:18;:::i;:::-;;;;-1:-1:-1;;39706:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39706:21:0;-1:-1:-1;;;;;39706:21:0;;;;;;;;;39745:27;;39706:16;;39745:27;;;;;;;39202:578;;;:::o;3643:98::-;3701:7;3728:5;3732:1;3728;:5;:::i;36900:110::-;36976:26;36986:2;36990:7;36976:26;;;;;;;;;;;;:9;:26::i;35288:315::-;35445:28;35455:4;35461:2;35465:7;35445:9;:28::i;:::-;35492:48;35515:4;35521:2;35525:7;35534:5;35492:22;:48::i;:::-;35484:111;;;;-1:-1:-1;;;35484:111:0;;;;;;;:::i;31884:99::-;31934:13;31967:8;31960:15;;;;;:::i;7323:723::-;7379:13;7600:10;7596:53;;-1:-1:-1;;7627:10:0;;;;;;;;;;;;-1:-1:-1;;;7627:10:0;;;;;7323:723::o;7596:53::-;7674:5;7659:12;7715:78;7722:9;;7715:78;;7748:8;;;;:::i;:::-;;-1:-1:-1;7771:10:0;;-1:-1:-1;7779:2:0;7771:10;;:::i;:::-;;;7715:78;;;7803:19;7835:6;7825:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7825:17:0;;7803:39;;7853:154;7860:10;;7853:154;;7887:11;7897:1;7887:11;;:::i;:::-;;-1:-1:-1;7956:10:0;7964:2;7956:5;:10;:::i;:::-;7943:24;;:2;:24;:::i;:::-;7930:39;;7913:6;7920;7913:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7913:56:0;;;;;;;;-1:-1:-1;7984:11:0;7993:2;7984:11;;:::i;:::-;;;7853:154;;28558:173;28633:6;;;-1:-1:-1;;;;;28650:17:0;;;-1:-1:-1;;;;;;28650:17:0;;;;;;;28683:40;;28633:6;;;28650:17;28633:6;;28683:40;;28614:16;;28683:40;28603:128;28558:173;:::o;44662:589::-;-1:-1:-1;;;;;44868:18:0;;44864:187;;44903:40;44935:7;46078:10;:17;;46051:24;;;;:15;:24;;;;;:44;;;46106:24;;;;;;;;;;;;45974:164;44903:40;44864:187;;;44973:2;-1:-1:-1;;;;;44965:10:0;:4;-1:-1:-1;;;;;44965:10:0;;44961:90;;44992:47;45025:4;45031:7;44992:32;:47::i;:::-;-1:-1:-1;;;;;45065:16:0;;45061:183;;45098:45;45135:7;45098:36;:45::i;45061:183::-;45171:4;-1:-1:-1;;;;;45165:10:0;:2;-1:-1:-1;;;;;45165:10:0;;45161:83;;45192:40;45220:2;45224:7;45192:27;:40::i;37237:321::-;37367:18;37373:2;37377:7;37367:5;:18::i;:::-;37418:54;37449:1;37453:2;37457:7;37466:5;37418:22;:54::i;:::-;37396:154;;;;-1:-1:-1;;;37396:154:0;;;;;;;:::i;40637:803::-;40792:4;-1:-1:-1;;;;;40813:13:0;;10113:20;10161:8;40809:624;;40849:72;;-1:-1:-1;;;40849:72:0;;-1:-1:-1;;;;;40849:36:0;;;;;:72;;26389:10;;40900:4;;40906:7;;40915:5;;40849:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40849:72:0;;;;;;;;-1:-1:-1;;40849:72:0;;;;;;;;;;;;:::i;:::-;;;40845:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41095:13:0;;41091:272;;41138:60;;-1:-1:-1;;;41138:60:0;;;;;;;:::i;41091:272::-;41313:6;41307:13;41298:6;41294:2;41290:15;41283:38;40845:533;-1:-1:-1;;;;;;40972:55:0;-1:-1:-1;;;40972:55:0;;-1:-1:-1;40965:62:0;;40809:624;-1:-1:-1;41417:4:0;40637:803;;;;;;:::o;46765:988::-;47031:22;47081:1;47056:22;47073:4;47056:16;:22::i;:::-;:26;;;;:::i;:::-;47093:18;47114:26;;;:17;:26;;;;;;47031:51;;-1:-1:-1;47247:28:0;;;47243:328;;-1:-1:-1;;;;;47314:18:0;;47292:19;47314:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47365:30;;;;;;:44;;;47482:30;;:17;:30;;;;;:43;;;47243:328;-1:-1:-1;47667:26:0;;;;:17;:26;;;;;;;;47660:33;;;-1:-1:-1;;;;;47711:18:0;;;;;:12;:18;;;;;:34;;;;;;;47704:41;46765:988::o;48048:1079::-;48326:10;:17;48301:22;;48326:21;;48346:1;;48326:21;:::i;:::-;48358:18;48379:24;;;:15;:24;;;;;;48752:10;:26;;48301:46;;-1:-1:-1;48379:24:0;;48301:46;;48752:26;;;;;;:::i;:::-;;;;;;;;;48730:48;;48816:11;48791:10;48802;48791:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48896:28;;;:15;:28;;;;;;;:41;;;49068:24;;;;;49061:31;49103:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48119:1008;;;48048:1079;:::o;45552:221::-;45637:14;45654:20;45671:2;45654:16;:20::i;:::-;-1:-1:-1;;;;;45685:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45730:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45552:221:0:o;37894:382::-;-1:-1:-1;;;;;37974:16:0;;37966:61;;;;-1:-1:-1;;;37966:61:0;;15436:2:1;37966:61:0;;;15418:21:1;;;15455:18;;;15448:30;15514:34;15494:18;;;15487:62;15566:18;;37966:61:0;15234:356:1;37966:61:0;35981:4;36005:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36005:16:0;:30;38038:58;;;;-1:-1:-1;;;38038:58:0;;10288:2:1;38038:58:0;;;10270:21:1;10327:2;10307:18;;;10300:30;10366;10346:18;;;10339:58;10414:18;;38038:58:0;10086:352:1;38038:58:0;38109:45;38138:1;38142:2;38146:7;38109:20;:45::i;:::-;-1:-1:-1;;;;;38167:13:0;;;;;;:9;:13;;;;;:18;;38184:1;;38167:13;:18;;38184:1;;38167:18;:::i;:::-;;;;-1:-1:-1;;38196:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38196:21:0;-1:-1:-1;;;;;38196:21:0;;;;;;;;38235:33;;38196:16;;;38235:33;;38196:16;;38235:33;37894:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:673::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:163;1098:2;1095:1;1092:9;1084:163;;;1155:17;;1143:30;;1193:12;;;;1225;;;;1116:1;1109:9;1084:163;;;-1:-1:-1;1265:5:1;;603:673;-1:-1:-1;;;;;;;603:673:1:o;1281:186::-;1340:6;1393:2;1381:9;1372:7;1368:23;1364:32;1361:52;;;1409:1;1406;1399:12;1361:52;1432:29;1451:9;1432:29;:::i;1472:260::-;1540:6;1548;1601:2;1589:9;1580:7;1576:23;1572:32;1569:52;;;1617:1;1614;1607:12;1569:52;1640:29;1659:9;1640:29;:::i;:::-;1630:39;;1688:38;1722:2;1711:9;1707:18;1688:38;:::i;:::-;1678:48;;1472:260;;;;;:::o;1737:328::-;1814:6;1822;1830;1883:2;1871:9;1862:7;1858:23;1854:32;1851:52;;;1899:1;1896;1889:12;1851:52;1922:29;1941:9;1922:29;:::i;:::-;1912:39;;1970:38;2004:2;1993:9;1989:18;1970:38;:::i;:::-;1960:48;;2055:2;2044:9;2040:18;2027:32;2017:42;;1737:328;;;;;:::o;2070:666::-;2165:6;2173;2181;2189;2242:3;2230:9;2221:7;2217:23;2213:33;2210:53;;;2259:1;2256;2249:12;2210:53;2282:29;2301:9;2282:29;:::i;:::-;2272:39;;2330:38;2364:2;2353:9;2349:18;2330:38;:::i;:::-;2320:48;;2415:2;2404:9;2400:18;2387:32;2377:42;;2470:2;2459:9;2455:18;2442:32;2497:18;2489:6;2486:30;2483:50;;;2529:1;2526;2519:12;2483:50;2552:22;;2605:4;2597:13;;2593:27;-1:-1:-1;2583:55:1;;2634:1;2631;2624:12;2583:55;2657:73;2722:7;2717:2;2704:16;2699:2;2695;2691:11;2657:73;:::i;:::-;2647:83;;;2070:666;;;;;;;:::o;2741:347::-;2806:6;2814;2867:2;2855:9;2846:7;2842:23;2838:32;2835:52;;;2883:1;2880;2873:12;2835:52;2906:29;2925:9;2906:29;:::i;:::-;2896:39;;2985:2;2974:9;2970:18;2957:32;3032:5;3025:13;3018:21;3011:5;3008:32;2998:60;;3054:1;3051;3044:12;2998:60;3077:5;3067:15;;;2741:347;;;;;:::o;3093:254::-;3161:6;3169;3222:2;3210:9;3201:7;3197:23;3193:32;3190:52;;;3238:1;3235;3228:12;3190:52;3261:29;3280:9;3261:29;:::i;:::-;3251:39;3337:2;3322:18;;;;3309:32;;-1:-1:-1;;;3093:254:1:o;3352:1157::-;3470:6;3478;3531:2;3519:9;3510:7;3506:23;3502:32;3499:52;;;3547:1;3544;3537:12;3499:52;3587:9;3574:23;3616:18;3657:2;3649:6;3646:14;3643:34;;;3673:1;3670;3663:12;3643:34;3711:6;3700:9;3696:22;3686:32;;3756:7;3749:4;3745:2;3741:13;3737:27;3727:55;;3778:1;3775;3768:12;3727:55;3814:2;3801:16;3836:4;3860:60;3876:43;3916:2;3876:43;:::i;3860:60::-;3942:3;3966:2;3961:3;3954:15;3994:2;3989:3;3985:12;3978:19;;4025:2;4021;4017:11;4073:7;4068:2;4062;4059:1;4055:10;4051:2;4047:19;4043:28;4040:41;4037:61;;;4094:1;4091;4084:12;4037:61;4116:1;4107:10;;4126:169;4140:2;4137:1;4134:9;4126:169;;;4197:23;4216:3;4197:23;:::i;:::-;4185:36;;4158:1;4151:9;;;;;4241:12;;;;4273;;4126:169;;;-1:-1:-1;4314:5:1;-1:-1:-1;;4357:18:1;;4344:32;;-1:-1:-1;;4388:16:1;;;4385:36;;;4417:1;4414;4407:12;4385:36;;4440:63;4495:7;4484:8;4473:9;4469:24;4440:63;:::i;:::-;4430:73;;;3352:1157;;;;;:::o;4514:245::-;4572:6;4625:2;4613:9;4604:7;4600:23;4596:32;4593:52;;;4641:1;4638;4631:12;4593:52;4680:9;4667:23;4699:30;4723:5;4699:30;:::i;4764:249::-;4833:6;4886:2;4874:9;4865:7;4861:23;4857:32;4854:52;;;4902:1;4899;4892:12;4854:52;4934:9;4928:16;4953:30;4977:5;4953:30;:::i;5018:450::-;5087:6;5140:2;5128:9;5119:7;5115:23;5111:32;5108:52;;;5156:1;5153;5146:12;5108:52;5196:9;5183:23;5229:18;5221:6;5218:30;5215:50;;;5261:1;5258;5251:12;5215:50;5284:22;;5337:4;5329:13;;5325:27;-1:-1:-1;5315:55:1;;5366:1;5363;5356:12;5315:55;5389:73;5454:7;5449:2;5436:16;5431:2;5427;5423:11;5389:73;:::i;5473:180::-;5532:6;5585:2;5573:9;5564:7;5560:23;5556:32;5553:52;;;5601:1;5598;5591:12;5553:52;-1:-1:-1;5624:23:1;;5473:180;-1:-1:-1;5473:180:1:o;5658:257::-;5699:3;5737:5;5731:12;5764:6;5759:3;5752:19;5780:63;5836:6;5829:4;5824:3;5820:14;5813:4;5806:5;5802:16;5780:63;:::i;:::-;5897:2;5876:15;-1:-1:-1;;5872:29:1;5863:39;;;;5904:4;5859:50;;5658:257;-1:-1:-1;;5658:257:1:o;5920:470::-;6099:3;6137:6;6131:13;6153:53;6199:6;6194:3;6187:4;6179:6;6175:17;6153:53;:::i;:::-;6269:13;;6228:16;;;;6291:57;6269:13;6228:16;6325:4;6313:17;;6291:57;:::i;:::-;6364:20;;5920:470;-1:-1:-1;;;;5920:470:1:o;6603:488::-;-1:-1:-1;;;;;6872:15:1;;;6854:34;;6924:15;;6919:2;6904:18;;6897:43;6971:2;6956:18;;6949:34;;;7019:3;7014:2;6999:18;;6992:31;;;6797:4;;7040:45;;7065:19;;7057:6;7040:45;:::i;:::-;7032:53;6603:488;-1:-1:-1;;;;;;6603:488:1:o;7375:632::-;7546:2;7598:21;;;7668:13;;7571:18;;;7690:22;;;7517:4;;7546:2;7769:15;;;;7743:2;7728:18;;;7517:4;7812:169;7826:6;7823:1;7820:13;7812:169;;;7887:13;;7875:26;;7956:15;;;;7921:12;;;;7848:1;7841:9;7812:169;;;-1:-1:-1;7998:3:1;;7375:632;-1:-1:-1;;;;;;7375:632:1:o;8204:219::-;8353:2;8342:9;8335:21;8316:4;8373:44;8413:2;8402:9;8398:18;8390:6;8373:44;:::i;8428:415::-;8630:2;8612:21;;;8669:2;8649:18;;;8642:30;8708:34;8703:2;8688:18;;8681:62;-1:-1:-1;;;8774:2:1;8759:18;;8752:49;8833:3;8818:19;;8428:415::o;9260:414::-;9462:2;9444:21;;;9501:2;9481:18;;;9474:30;9540:34;9535:2;9520:18;;9513:62;-1:-1:-1;;;9606:2:1;9591:18;;9584:48;9664:3;9649:19;;9260:414::o;14876:353::-;15078:2;15060:21;;;15117:2;15097:18;;;15090:30;15156:31;15151:2;15136:18;;15129:59;15220:2;15205:18;;14876:353::o;15595:397::-;15797:2;15779:21;;;15836:2;15816:18;;;15809:30;15875:34;15870:2;15855:18;;15848:62;-1:-1:-1;;;15941:2:1;15926:18;;15919:31;15982:3;15967:19;;15595:397::o;16410:356::-;16612:2;16594:21;;;16631:18;;;16624:30;16690:34;16685:2;16670:18;;16663:62;16757:2;16742:18;;16410:356::o;16771:402::-;16973:2;16955:21;;;17012:2;16992:18;;;16985:30;17051:34;17046:2;17031:18;;17024:62;-1:-1:-1;;;17117:2:1;17102:18;;17095:36;17163:3;17148:19;;16771:402::o;18406:413::-;18608:2;18590:21;;;18647:2;18627:18;;;18620:30;18686:34;18681:2;18666:18;;18659:62;-1:-1:-1;;;18752:2:1;18737:18;;18730:47;18809:3;18794:19;;18406:413::o;19237:356::-;19439:2;19421:21;;;19458:18;;;19451:30;19517:34;19512:2;19497:18;;19490:62;19584:2;19569:18;;19237:356::o;19780:275::-;19851:2;19845:9;19916:2;19897:13;;-1:-1:-1;;19893:27:1;19881:40;;19951:18;19936:34;;19972:22;;;19933:62;19930:88;;;19998:18;;:::i;:::-;20034:2;20027:22;19780:275;;-1:-1:-1;19780:275:1:o;20060:183::-;20120:4;20153:18;20145:6;20142:30;20139:56;;;20175:18;;:::i;:::-;-1:-1:-1;20220:1:1;20216:14;20232:4;20212:25;;20060:183::o;20248:128::-;20288:3;20319:1;20315:6;20312:1;20309:13;20306:39;;;20325:18;;:::i;:::-;-1:-1:-1;20361:9:1;;20248:128::o;20381:120::-;20421:1;20447;20437:35;;20452:18;;:::i;:::-;-1:-1:-1;20486:9:1;;20381:120::o;20506:168::-;20546:7;20612:1;20608;20604:6;20600:14;20597:1;20594:21;20589:1;20582:9;20575:17;20571:45;20568:71;;;20619:18;;:::i;:::-;-1:-1:-1;20659:9:1;;20506:168::o;20679:125::-;20719:4;20747:1;20744;20741:8;20738:34;;;20752:18;;:::i;:::-;-1:-1:-1;20789:9:1;;20679:125::o;20809:258::-;20881:1;20891:113;20905:6;20902:1;20899:13;20891:113;;;20981:11;;;20975:18;20962:11;;;20955:39;20927:2;20920:10;20891:113;;;21022:6;21019:1;21016:13;21013:48;;;-1:-1:-1;;21057:1:1;21039:16;;21032:27;20809:258::o;21072:380::-;21151:1;21147:12;;;;21194;;;21215:61;;21269:4;21261:6;21257:17;21247:27;;21215:61;21322:2;21314:6;21311:14;21291:18;21288:38;21285:161;;;21368:10;21363:3;21359:20;21356:1;21349:31;21403:4;21400:1;21393:15;21431:4;21428:1;21421:15;21285:161;;21072:380;;;:::o;21457:135::-;21496:3;-1:-1:-1;;21517:17:1;;21514:43;;;21537:18;;:::i;:::-;-1:-1:-1;21584:1:1;21573:13;;21457:135::o;21597:112::-;21629:1;21655;21645:35;;21660:18;;:::i;:::-;-1:-1:-1;21694:9:1;;21597:112::o;21714:127::-;21775:10;21770:3;21766:20;21763:1;21756:31;21806:4;21803:1;21796:15;21830:4;21827:1;21820:15;21846:127;21907:10;21902:3;21898:20;21895:1;21888:31;21938:4;21935:1;21928:15;21962:4;21959:1;21952:15;21978:127;22039:10;22034:3;22030:20;22027:1;22020:31;22070:4;22067:1;22060:15;22094:4;22091:1;22084:15;22110:127;22171:10;22166:3;22162:20;22159:1;22152:31;22202:4;22199:1;22192:15;22226:4;22223:1;22216:15;22242:127;22303:10;22298:3;22294:20;22291:1;22284:31;22334:4;22331:1;22324:15;22358:4;22355:1;22348:15;22374:131;-1:-1:-1;;;;;;22448:32:1;;22438:43;;22428:71;;22495:1;22492;22485:12

Swarm Source

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