ETH Price: $2,287.15 (-3.37%)
Gas: 1.86 Gwei

Contract

0x4FE12B27Af2D19516d670473310093900dd71A71
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve179853712023-08-24 15:11:23379 days ago1692889883IN
0x4FE12B27...00dd71A71
0 ETH0.0016840935.66251606
Transfer179503382023-08-19 17:34:35384 days ago1692466475IN
0x4FE12B27...00dd71A71
0 ETH0.0004980314.3438016
Approve179502992023-08-19 17:26:35384 days ago1692465995IN
0x4FE12B27...00dd71A71
0 ETH0.0008326717.74095193
Approve179469182023-08-19 6:03:59385 days ago1692425039IN
0x4FE12B27...00dd71A71
0 ETH0.0006126512.97368894
Approve179469112023-08-19 6:02:35385 days ago1692424955IN
0x4FE12B27...00dd71A71
0 ETH0.0006087412.89077156
Renounce Ownersh...179363172023-08-17 18:26:59386 days ago1692296819IN
0x4FE12B27...00dd71A71
0 ETH0.0007776433.11246878
Approve179351062023-08-17 14:22:35386 days ago1692282155IN
0x4FE12B27...00dd71A71
0 ETH0.0017683437.7151189
Approve179318562023-08-17 3:27:59387 days ago1692242879IN
0x4FE12B27...00dd71A71
0 ETH0.0011650224.70203979
Transfer179308812023-08-17 0:11:23387 days ago1692231083IN
0x4FE12B27...00dd71A71
0 ETH0.0016547530.41774106
Transfer179308172023-08-16 23:57:59387 days ago1692230279IN
0x4FE12B27...00dd71A71
0 ETH0.001460926.85436505
Transfer179308142023-08-16 23:57:23387 days ago1692230243IN
0x4FE12B27...00dd71A71
0 ETH0.0010892529.20174876
Transfer179308112023-08-16 23:56:47387 days ago1692230207IN
0x4FE12B27...00dd71A71
0 ETH0.0014983327.54237411
Transfer179308072023-08-16 23:55:59387 days ago1692230159IN
0x4FE12B27...00dd71A71
0 ETH0.0014728227.07353967
Approve179308052023-08-16 23:55:35387 days ago1692230135IN
0x4FE12B27...00dd71A71
0 ETH0.0026747556.64095353
Approve179308042023-08-16 23:55:23387 days ago1692230123IN
0x4FE12B27...00dd71A71
0 ETH0.0026957557.08568738
Approve179307892023-08-16 23:52:23387 days ago1692229943IN
0x4FE12B27...00dd71A71
0 ETH0.0019551541.40270133
Approve179307882023-08-16 23:52:11387 days ago1692229931IN
0x4FE12B27...00dd71A71
0 ETH0.0019673941.66188596
Approve179307772023-08-16 23:49:59387 days ago1692229799IN
0x4FE12B27...00dd71A71
0 ETH0.0014161730.02728261
Approve179307772023-08-16 23:49:59387 days ago1692229799IN
0x4FE12B27...00dd71A71
0 ETH0.0014161730.02728261
Approve179307772023-08-16 23:49:59387 days ago1692229799IN
0x4FE12B27...00dd71A71
0 ETH0.0019846542.02728261
Approve179307762023-08-16 23:49:47387 days ago1692229787IN
0x4FE12B27...00dd71A71
0 ETH0.0019334540.94309411
Approve179307752023-08-16 23:49:35387 days ago1692229775IN
0x4FE12B27...00dd71A71
0 ETH0.0014107829.91297144
Approve179307742023-08-16 23:49:23387 days ago1692229763IN
0x4FE12B27...00dd71A71
0 ETH0.0013986629.65606605
Approve179307742023-08-16 23:49:23387 days ago1692229763IN
0x4FE12B27...00dd71A71
0 ETH0.0013986629.65606605
Approve179307732023-08-16 23:49:11387 days ago1692229751IN
0x4FE12B27...00dd71A71
0 ETH0.001298327.52807619
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
GFYToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-16
*/

// File: @uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol


pragma solidity >=0.5.0;

/// @title Callback for IUniswapV3PoolActions#swap
/// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interface
interface IUniswapV3SwapCallback {
    /// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap.
    /// @dev In the implementation you must pay the pool tokens owed for the swap.
    /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory.
    /// amount0Delta and amount1Delta can both be 0 if no tokens were swapped.
    /// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token0 to the pool.
    /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token1 to the pool.
    /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call
    function uniswapV3SwapCallback(
        int256 amount0Delta,
        int256 amount1Delta,
        bytes calldata data
    ) external;
}

// File: @uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol


pragma solidity >=0.7.5;
pragma abicoder v2;


/// @title Router token swapping functionality
/// @notice Functions for swapping tokens via Uniswap V3
interface ISwapRouter is IUniswapV3SwapCallback {
    struct ExactInputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut);

    struct ExactInputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut);

    struct ExactOutputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn);

    struct ExactOutputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed)
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn);
}

// File: @uniswap/v3-periphery/contracts/libraries/PoolAddress.sol


pragma solidity >=0.8.0;

/// @title Provides functions for deriving a pool address from the factory, tokens, and the fee
library PoolAddress {
    bytes32 internal constant POOL_INIT_CODE_HASH = 0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54;

    /// @notice The identifying key of the pool
    struct PoolKey {
        address token0;
        address token1;
        uint24 fee;
    }

    /// @notice Returns PoolKey: the ordered tokens with the matched fee levels
    /// @param tokenA The first token of a pool, unsorted
    /// @param tokenB The second token of a pool, unsorted
    /// @param fee The fee level of the pool
    /// @return Poolkey The pool details with ordered token0 and token1 assignments
    function getPoolKey(
        address tokenA,
        address tokenB,
        uint24 fee
    ) internal pure returns (PoolKey memory) {
        if (tokenA > tokenB) (tokenA, tokenB) = (tokenB, tokenA);
        return PoolKey({token0: tokenA, token1: tokenB, fee: fee});
    }

    /// @notice Deterministically computes the pool address given the factory and PoolKey
    /// @param factory The Uniswap V3 factory contract address
    /// @param key The PoolKey
    /// @return pool The contract address of the V3 pool
    function computeAddress(address factory, PoolKey memory key) internal pure returns (address pool) {
        require(key.token0 < key.token1);
        pool = address(
            bytes20(
                uint160(
                    uint256(
                        keccak256(
                            abi.encodePacked(
                                hex'ff',
                                factory,
                                keccak256(abi.encode(key.token0, key.token1, key.fee)),
                                POOL_INIT_CODE_HASH
                            )
                        )
                    )
                )
            )
        );
    }
}

// File: @uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol


pragma solidity >=0.5.0;

/// @title Immutable state
/// @notice Functions that return immutable state of the router
interface IPeripheryImmutableState {
    /// @return Returns the address of the Uniswap V3 factory
    function factory() external view returns (address);

    /// @return Returns the address of WETH9
    function WETH9() external view returns (address);
}

// File: @uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol


pragma solidity >=0.7.5;

/// @title Periphery Payments
/// @notice Functions to ease deposits and withdrawals of ETH
interface IPeripheryPayments {
    /// @notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH.
    /// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users.
    /// @param amountMinimum The minimum amount of WETH9 to unwrap
    /// @param recipient The address receiving ETH
    function unwrapWETH9(uint256 amountMinimum, address recipient) external payable;

    /// @notice Refunds any ETH balance held by this contract to the `msg.sender`
    /// @dev Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps
    /// that use ether for the input amount
    function refundETH() external payable;

    /// @notice Transfers the full amount of a token held by this contract to recipient
    /// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users
    /// @param token The contract address of the token which will be transferred to `recipient`
    /// @param amountMinimum The minimum amount of token required for a transfer
    /// @param recipient The destination address of the token
    function sweepToken(
        address token,
        uint256 amountMinimum,
        address recipient
    ) external payable;
}

// File: @uniswap/v3-periphery/contracts/interfaces/IPoolInitializer.sol


pragma solidity >=0.7.5;

/// @title Creates and initializes V3 Pools
/// @notice Provides a method for creating and initializing a pool, if necessary, for bundling with other methods that
/// require the pool to exist.
interface IPoolInitializer {
    /// @notice Creates a new pool if it does not exist, then initializes if not initialized
    /// @dev This method can be bundled with others via IMulticall for the first action (e.g. mint) performed against a pool
    /// @param token0 The contract address of token0 of the pool
    /// @param token1 The contract address of token1 of the pool
    /// @param fee The fee amount of the v3 pool for the specified token pair
    /// @param sqrtPriceX96 The initial square root price of the pool as a Q64.96 value
    /// @return pool Returns the pool address based on the pair of tokens and fee, will return the newly created pool address if necessary
    function createAndInitializePoolIfNecessary(
        address token0,
        address token1,
        uint24 fee,
        uint160 sqrtPriceX96
    ) external payable returns (address pool);
}

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


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

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// File: @uniswap/v3-periphery/contracts/interfaces/IERC721Permit.sol


pragma solidity >=0.7.5;


/// @title ERC721 with permit
/// @notice Extension to ERC721 that includes a permit function for signature based approvals
interface IERC721Permit is IERC721 {
    /// @notice The permit typehash used in the permit signature
    /// @return The typehash for the permit
    function PERMIT_TYPEHASH() external pure returns (bytes32);

    /// @notice The domain separator used in the permit signature
    /// @return The domain seperator used in encoding of permit signature
    function DOMAIN_SEPARATOR() external view returns (bytes32);

    /// @notice Approve of a specific token ID for spending by spender via signature
    /// @param spender The account that is being approved
    /// @param tokenId The ID of the token that is being approved for spending
    /// @param deadline The deadline timestamp by which the call must be mined for the approve to work
    /// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s`
    /// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s`
    /// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v`
    function permit(
        address spender,
        uint256 tokenId,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external payable;
}

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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


pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

// File: @uniswap/v3-periphery/contracts/interfaces/INonfungiblePositionManager.sol


pragma solidity >=0.7.5;








/// @title Non-fungible token for positions
/// @notice Wraps Uniswap V3 positions in a non-fungible token interface which allows for them to be transferred
/// and authorized.
interface INonfungiblePositionManager is
    IPoolInitializer,
    IPeripheryPayments,
    IPeripheryImmutableState,
    IERC721Metadata,
    IERC721Enumerable,
    IERC721Permit
{
    /// @notice Emitted when liquidity is increased for a position NFT
    /// @dev Also emitted when a token is minted
    /// @param tokenId The ID of the token for which liquidity was increased
    /// @param liquidity The amount by which liquidity for the NFT position was increased
    /// @param amount0 The amount of token0 that was paid for the increase in liquidity
    /// @param amount1 The amount of token1 that was paid for the increase in liquidity
    event IncreaseLiquidity(uint256 indexed tokenId, uint128 liquidity, uint256 amount0, uint256 amount1);
    /// @notice Emitted when liquidity is decreased for a position NFT
    /// @param tokenId The ID of the token for which liquidity was decreased
    /// @param liquidity The amount by which liquidity for the NFT position was decreased
    /// @param amount0 The amount of token0 that was accounted for the decrease in liquidity
    /// @param amount1 The amount of token1 that was accounted for the decrease in liquidity
    event DecreaseLiquidity(uint256 indexed tokenId, uint128 liquidity, uint256 amount0, uint256 amount1);
    /// @notice Emitted when tokens are collected for a position NFT
    /// @dev The amounts reported may not be exactly equivalent to the amounts transferred, due to rounding behavior
    /// @param tokenId The ID of the token for which underlying tokens were collected
    /// @param recipient The address of the account that received the collected tokens
    /// @param amount0 The amount of token0 owed to the position that was collected
    /// @param amount1 The amount of token1 owed to the position that was collected
    event Collect(uint256 indexed tokenId, address recipient, uint256 amount0, uint256 amount1);

    /// @notice Returns the position information associated with a given token ID.
    /// @dev Throws if the token ID is not valid.
    /// @param tokenId The ID of the token that represents the position
    /// @return nonce The nonce for permits
    /// @return operator The address that is approved for spending
    /// @return token0 The address of the token0 for a specific pool
    /// @return token1 The address of the token1 for a specific pool
    /// @return fee The fee associated with the pool
    /// @return tickLower The lower end of the tick range for the position
    /// @return tickUpper The higher end of the tick range for the position
    /// @return liquidity The liquidity of the position
    /// @return feeGrowthInside0LastX128 The fee growth of token0 as of the last action on the individual position
    /// @return feeGrowthInside1LastX128 The fee growth of token1 as of the last action on the individual position
    /// @return tokensOwed0 The uncollected amount of token0 owed to the position as of the last computation
    /// @return tokensOwed1 The uncollected amount of token1 owed to the position as of the last computation
    function positions(uint256 tokenId)
        external
        view
        returns (
            uint96 nonce,
            address operator,
            address token0,
            address token1,
            uint24 fee,
            int24 tickLower,
            int24 tickUpper,
            uint128 liquidity,
            uint256 feeGrowthInside0LastX128,
            uint256 feeGrowthInside1LastX128,
            uint128 tokensOwed0,
            uint128 tokensOwed1
        );

    struct MintParams {
        address token0;
        address token1;
        uint24 fee;
        int24 tickLower;
        int24 tickUpper;
        uint256 amount0Desired;
        uint256 amount1Desired;
        uint256 amount0Min;
        uint256 amount1Min;
        address recipient;
        uint256 deadline;
    }

    /// @notice Creates a new position wrapped in a NFT
    /// @dev Call this when the pool does exist and is initialized. Note that if the pool is created but not initialized
    /// a method does not exist, i.e. the pool is assumed to be initialized.
    /// @param params The params necessary to mint a position, encoded as `MintParams` in calldata
    /// @return tokenId The ID of the token that represents the minted position
    /// @return liquidity The amount of liquidity for this position
    /// @return amount0 The amount of token0
    /// @return amount1 The amount of token1
    function mint(MintParams calldata params)
        external
        payable
        returns (
            uint256 tokenId,
            uint128 liquidity,
            uint256 amount0,
            uint256 amount1
        );

    struct IncreaseLiquidityParams {
        uint256 tokenId;
        uint256 amount0Desired;
        uint256 amount1Desired;
        uint256 amount0Min;
        uint256 amount1Min;
        uint256 deadline;
    }

    /// @notice Increases the amount of liquidity in a position, with tokens paid by the `msg.sender`
    /// @param params tokenId The ID of the token for which liquidity is being increased,
    /// amount0Desired The desired amount of token0 to be spent,
    /// amount1Desired The desired amount of token1 to be spent,
    /// amount0Min The minimum amount of token0 to spend, which serves as a slippage check,
    /// amount1Min The minimum amount of token1 to spend, which serves as a slippage check,
    /// deadline The time by which the transaction must be included to effect the change
    /// @return liquidity The new liquidity amount as a result of the increase
    /// @return amount0 The amount of token0 to acheive resulting liquidity
    /// @return amount1 The amount of token1 to acheive resulting liquidity
    function increaseLiquidity(IncreaseLiquidityParams calldata params)
        external
        payable
        returns (
            uint128 liquidity,
            uint256 amount0,
            uint256 amount1
        );

    struct DecreaseLiquidityParams {
        uint256 tokenId;
        uint128 liquidity;
        uint256 amount0Min;
        uint256 amount1Min;
        uint256 deadline;
    }

    /// @notice Decreases the amount of liquidity in a position and accounts it to the position
    /// @param params tokenId The ID of the token for which liquidity is being decreased,
    /// amount The amount by which liquidity will be decreased,
    /// amount0Min The minimum amount of token0 that should be accounted for the burned liquidity,
    /// amount1Min The minimum amount of token1 that should be accounted for the burned liquidity,
    /// deadline The time by which the transaction must be included to effect the change
    /// @return amount0 The amount of token0 accounted to the position's tokens owed
    /// @return amount1 The amount of token1 accounted to the position's tokens owed
    function decreaseLiquidity(DecreaseLiquidityParams calldata params)
        external
        payable
        returns (uint256 amount0, uint256 amount1);

    struct CollectParams {
        uint256 tokenId;
        address recipient;
        uint128 amount0Max;
        uint128 amount1Max;
    }

    /// @notice Collects up to a maximum amount of fees owed to a specific position to the recipient
    /// @param params tokenId The ID of the NFT for which tokens are being collected,
    /// recipient The account that should receive the tokens,
    /// amount0Max The maximum amount of token0 to collect,
    /// amount1Max The maximum amount of token1 to collect
    /// @return amount0 The amount of fees collected in token0
    /// @return amount1 The amount of fees collected in token1
    function collect(CollectParams calldata params) external payable returns (uint256 amount0, uint256 amount1);

    /// @notice Burns a token ID, which deletes it from the NFT contract. The token must have 0 liquidity and all tokens
    /// must be collected first.
    /// @param tokenId The ID of the token that is being burned
    function burn(uint256 tokenId) external payable;
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// File: GoFuckYourselfv3.sol


pragma solidity ^0.8.0;






contract GFYToken is ERC20, Ownable {
    address public constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    
    INonfungiblePositionManager public nonfungiblePositionManager;
    ISwapRouter public swapRouter;
    IERC20 public weth9;  // We're using IERC20 instead of IWETH9 here

    bool public tradingEnabled = false;

    constructor(
        address _nonfungiblePositionManager,
        address _swapRouter,
        address _weth9
    ) ERC20("GFY Token", "GFY") {
        nonfungiblePositionManager = INonfungiblePositionManager(_nonfungiblePositionManager);
        swapRouter = ISwapRouter(_swapRouter);
        weth9 = IERC20(_weth9);  // We're using IERC20 instead of IWETH9 here
        _mint(msg.sender, 621311251521 * 10 ** decimals());
    }

    // Only the contract owner can enable trading
    function enableTrading() external onlyOwner {
        tradingEnabled = true;
    }

    // Only the contract owner can disable trading
    function disableTrading() external onlyOwner {
        tradingEnabled = false;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        if(from != owner() && to != owner()) {
            require(tradingEnabled, "GFYToken: Trading is currently disabled");
        }
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 wethAmount, int24 priceLower, int24 priceUpper) external onlyOwner {
        _approve(address(this), address(swapRouter), tokenAmount);
        
        swapRouter.exactInputSingle(
            ISwapRouter.ExactInputSingleParams({
                tokenIn: address(this),
                tokenOut: WETH,
                fee: 3000,
                recipient: address(this),
                deadline: block.timestamp + 600,
                amountIn: tokenAmount,
                amountOutMinimum: wethAmount,
                sqrtPriceLimitX96: 0
            })
        );
        
        INonfungiblePositionManager.MintParams memory params = 
            INonfungiblePositionManager.MintParams({
                token0: address(this),
                token1: WETH,
                fee: 3000,
                tickLower: priceLower,
                tickUpper: priceUpper,
                amount0Desired: tokenAmount,
                amount1Desired: wethAmount,
                amount0Min: 0,
                amount1Min: 0,
                recipient: msg.sender,
                deadline: block.timestamp + 600
            });
            
        nonfungiblePositionManager.mint(params);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_nonfungiblePositionManager","type":"address"},{"internalType":"address","name":"_swapRouter","type":"address"},{"internalType":"address","name":"_weth9","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"uint256","name":"wethAmount","type":"uint256"},{"internalType":"int24","name":"priceLower","type":"int24"},{"internalType":"int24","name":"priceUpper","type":"int24"}],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonfungiblePositionManager","outputs":[{"internalType":"contract INonfungiblePositionManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"contract ISwapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth9","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526000600860146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162002e2438038062002e248339818101604052810190620000529190620005d3565b6040518060400160405280600981526020017f47465920546f6b656e00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f47465900000000000000000000000000000000000000000000000000000000008152508160039081620000cf9190620008a9565b508060049081620000e19190620008a9565b50505062000104620000f86200021160201b60201c565b6200021960201b60201c565b82600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200020833620001dc620002df60201b60201c565b600a620001ea919062000b20565b6490a9095441620001fc919062000b71565b620002e860201b60201c565b50505062000d40565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200035a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003519062000c1d565b60405180910390fd5b6200036e600083836200045560201b60201c565b806002600082825462000382919062000c3f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000435919062000c8b565b60405180910390a362000451600083836200053a60201b60201c565b5050565b620004656200053f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015620004dc5750620004ac6200053f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156200053557600860149054906101000a900460ff1662000534576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200052b9062000d1e565b60405180910390fd5b5b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200059b826200056e565b9050919050565b620005ad816200058e565b8114620005b957600080fd5b50565b600081519050620005cd81620005a2565b92915050565b600080600060608486031215620005ef57620005ee62000569565b5b6000620005ff86828701620005bc565b93505060206200061286828701620005bc565b92505060406200062586828701620005bc565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006b157607f821691505b602082108103620006c757620006c662000669565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006f2565b6200073d8683620006f2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200078a620007846200077e8462000755565b6200075f565b62000755565b9050919050565b6000819050919050565b620007a68362000769565b620007be620007b58262000791565b848454620006ff565b825550505050565b600090565b620007d5620007c6565b620007e28184846200079b565b505050565b5b818110156200080a57620007fe600082620007cb565b600181019050620007e8565b5050565b601f82111562000859576200082381620006cd565b6200082e84620006e2565b810160208510156200083e578190505b620008566200084d85620006e2565b830182620007e7565b50505b505050565b600082821c905092915050565b60006200087e600019846008026200085e565b1980831691505092915050565b60006200089983836200086b565b9150826002028217905092915050565b620008b4826200062f565b67ffffffffffffffff811115620008d057620008cf6200063a565b5b620008dc825462000698565b620008e98282856200080e565b600060209050601f8311600181146200092157600084156200090c578287015190505b6200091885826200088b565b86555062000988565b601f1984166200093186620006cd565b60005b828110156200095b5784890151825560018201915060208501945060208101905062000934565b868310156200097b578489015162000977601f8916826200086b565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a1e57808604811115620009f657620009f562000990565b5b600185161562000a065780820291505b808102905062000a1685620009bf565b9450620009d6565b94509492505050565b60008262000a39576001905062000b0c565b8162000a49576000905062000b0c565b816001811462000a62576002811462000a6d5762000aa3565b600191505062000b0c565b60ff84111562000a825762000a8162000990565b5b8360020a91508482111562000a9c5762000a9b62000990565b5b5062000b0c565b5060208310610133831016604e8410600b841016171562000add5782820a90508381111562000ad75762000ad662000990565b5b62000b0c565b62000aec8484846001620009cc565b9250905081840481111562000b065762000b0562000990565b5b81810290505b9392505050565b600060ff82169050919050565b600062000b2d8262000755565b915062000b3a8362000b13565b925062000b697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a27565b905092915050565b600062000b7e8262000755565b915062000b8b8362000755565b925082820262000b9b8162000755565b9150828204841483151762000bb55762000bb462000990565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c05601f8362000bbc565b915062000c128262000bcd565b602082019050919050565b6000602082019050818103600083015262000c388162000bf6565b9050919050565b600062000c4c8262000755565b915062000c598362000755565b925082820190508082111562000c745762000c7362000990565b5b92915050565b62000c858162000755565b82525050565b600060208201905062000ca2600083018462000c7a565b92915050565b7f474659546f6b656e3a2054726164696e672069732063757272656e746c79206460008201527f697361626c656400000000000000000000000000000000000000000000000000602082015250565b600062000d0660278362000bbc565b915062000d138262000ca8565b604082019050919050565b6000602082019050818103600083015262000d398162000cf7565b9050919050565b6120d48062000d506000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a9059cbb1161007c578063a9059cbb14610343578063ad5c464814610373578063b44a272214610391578063c31c9c07146103af578063dd62ed3e146103cd578063f2fde38b146103fd57610142565b8063715018a6146102c35780638a8c523c146102cd5780638da5cb5b146102d757806395d89b41146102f5578063a457c2d71461031357610142565b8063313ce5671161010a578063313ce567146101ed578063395093511461020b57806348cce9f81461023b5780634ada218b1461025757806350879c1c1461027557806370a082311461029357610142565b806306fdde0314610147578063095ea7b31461016557806317700f011461019557806318160ddd1461019f57806323b872dd146101bd575b600080fd5b61014f610419565b60405161015c919061135f565b60405180910390f35b61017f600480360381019061017a919061141a565b6104ab565b60405161018c9190611475565b60405180910390f35b61019d6104ce565b005b6101a76104f3565b6040516101b4919061149f565b60405180910390f35b6101d760048036038101906101d291906114ba565b6104fd565b6040516101e49190611475565b60405180910390f35b6101f561052c565b6040516102029190611529565b60405180910390f35b6102256004803603810190610220919061141a565b610535565b6040516102329190611475565b60405180910390f35b6102556004803603810190610250919061157d565b61056c565b005b61025f610865565b60405161026c9190611475565b60405180910390f35b61027d610878565b60405161028a9190611643565b60405180910390f35b6102ad60048036038101906102a8919061165e565b61089e565b6040516102ba919061149f565b60405180910390f35b6102cb6108e6565b005b6102d56108fa565b005b6102df61091f565b6040516102ec919061169a565b60405180910390f35b6102fd610949565b60405161030a919061135f565b60405180910390f35b61032d6004803603810190610328919061141a565b6109db565b60405161033a9190611475565b60405180910390f35b61035d6004803603810190610358919061141a565b610a52565b60405161036a9190611475565b60405180910390f35b61037b610a75565b604051610388919061169a565b60405180910390f35b610399610a8d565b6040516103a691906116d6565b60405180910390f35b6103b7610ab3565b6040516103c49190611712565b60405180910390f35b6103e760048036038101906103e2919061172d565b610ad9565b6040516103f4919061149f565b60405180910390f35b6104176004803603810190610412919061165e565b610b60565b005b6060600380546104289061179c565b80601f01602080910402602001604051908101604052809291908181526020018280546104549061179c565b80156104a15780601f10610476576101008083540402835291602001916104a1565b820191906000526020600020905b81548152906001019060200180831161048457829003601f168201915b5050505050905090565b6000806104b6610be3565b90506104c3818585610beb565b600191505092915050565b6104d6610db4565b6000600860146101000a81548160ff021916908315150217905550565b6000600254905090565b600080610508610be3565b9050610515858285610e32565b610520858585610ebe565b60019150509392505050565b60006012905090565b600080610540610be3565b90506105618185856105528589610ad9565b61055c91906117fc565b610beb565b600191505092915050565b610574610db4565b6105a130600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610beb565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663414bf3896040518061010001604052803073ffffffffffffffffffffffffffffffffffffffff16815260200173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff168152602001610bb862ffffff1681526020013073ffffffffffffffffffffffffffffffffffffffff1681526020016102584261066e91906117fc565b8152602001878152602001868152602001600073ffffffffffffffffffffffffffffffffffffffff168152506040518263ffffffff1660e01b81526004016106b6919061191d565b6020604051808303816000875af11580156106d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f9919061194e565b5060006040518061016001604052803073ffffffffffffffffffffffffffffffffffffffff16815260200173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff168152602001610bb862ffffff1681526020018460020b81526020018360020b815260200186815260200185815260200160008152602001600081526020013373ffffffffffffffffffffffffffffffffffffffff168152602001610258426107b791906117fc565b8152509050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166388316456826040518263ffffffff1660e01b81526004016108179190611a6b565b6080604051808303816000875af1158015610836573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085a9190611acf565b505050505050505050565b600860149054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ee610db4565b6108f86000611134565b565b610902610db4565b6001600860146101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109589061179c565b80601f01602080910402602001604051908101604052809291908181526020018280546109849061179c565b80156109d15780601f106109a6576101008083540402835291602001916109d1565b820191906000526020600020905b8154815290600101906020018083116109b457829003601f168201915b5050505050905090565b6000806109e6610be3565b905060006109f48286610ad9565b905083811015610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090611ba8565b60405180910390fd5b610a468286868403610beb565b60019250505092915050565b600080610a5d610be3565b9050610a6a818585610ebe565b600191505092915050565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b68610db4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90611c3a565b60405180910390fd5b610be081611134565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190611ccc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc090611d5e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610da7919061149f565b60405180910390a3505050565b610dbc610be3565b73ffffffffffffffffffffffffffffffffffffffff16610dda61091f565b73ffffffffffffffffffffffffffffffffffffffff1614610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790611dca565b60405180910390fd5b565b6000610e3e8484610ad9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eb85781811015610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190611e36565b60405180910390fd5b610eb78484848403610beb565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490611ec8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390611f5a565b60405180910390fd5b610fa78383836111fa565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490611fec565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111b919061149f565b60405180910390a361112e8484846112ca565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61120261091f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611270575061124061091f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156112c557600860149054906101000a900460ff166112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb9061207e565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113095780820151818401526020810190506112ee565b60008484015250505050565b6000601f19601f8301169050919050565b6000611331826112cf565b61133b81856112da565b935061134b8185602086016112eb565b61135481611315565b840191505092915050565b600060208201905081810360008301526113798184611326565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113b182611386565b9050919050565b6113c1816113a6565b81146113cc57600080fd5b50565b6000813590506113de816113b8565b92915050565b6000819050919050565b6113f7816113e4565b811461140257600080fd5b50565b600081359050611414816113ee565b92915050565b6000806040838503121561143157611430611381565b5b600061143f858286016113cf565b925050602061145085828601611405565b9150509250929050565b60008115159050919050565b61146f8161145a565b82525050565b600060208201905061148a6000830184611466565b92915050565b611499816113e4565b82525050565b60006020820190506114b46000830184611490565b92915050565b6000806000606084860312156114d3576114d2611381565b5b60006114e1868287016113cf565b93505060206114f2868287016113cf565b925050604061150386828701611405565b9150509250925092565b600060ff82169050919050565b6115238161150d565b82525050565b600060208201905061153e600083018461151a565b92915050565b60008160020b9050919050565b61155a81611544565b811461156557600080fd5b50565b60008135905061157781611551565b92915050565b6000806000806080858703121561159757611596611381565b5b60006115a587828801611405565b94505060206115b687828801611405565b93505060406115c787828801611568565b92505060606115d887828801611568565b91505092959194509250565b6000819050919050565b60006116096116046115ff84611386565b6115e4565b611386565b9050919050565b600061161b826115ee565b9050919050565b600061162d82611610565b9050919050565b61163d81611622565b82525050565b60006020820190506116586000830184611634565b92915050565b60006020828403121561167457611673611381565b5b6000611682848285016113cf565b91505092915050565b611694816113a6565b82525050565b60006020820190506116af600083018461168b565b92915050565b60006116c082611610565b9050919050565b6116d0816116b5565b82525050565b60006020820190506116eb60008301846116c7565b92915050565b60006116fc82611610565b9050919050565b61170c816116f1565b82525050565b60006020820190506117276000830184611703565b92915050565b6000806040838503121561174457611743611381565b5b6000611752858286016113cf565b9250506020611763858286016113cf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117b457607f821691505b6020821081036117c7576117c661176d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611807826113e4565b9150611812836113e4565b925082820190508082111561182a576118296117cd565b5b92915050565b611839816113a6565b82525050565b600062ffffff82169050919050565b6118578161183f565b82525050565b611866816113e4565b82525050565b61187581611386565b82525050565b610100820160008201516118926000850182611830565b5060208201516118a56020850182611830565b5060408201516118b8604085018261184e565b5060608201516118cb6060850182611830565b5060808201516118de608085018261185d565b5060a08201516118f160a085018261185d565b5060c082015161190460c085018261185d565b5060e082015161191760e085018261186c565b50505050565b600061010082019050611933600083018461187b565b92915050565b600081519050611948816113ee565b92915050565b60006020828403121561196457611963611381565b5b600061197284828501611939565b91505092915050565b61198481611544565b82525050565b610160820160008201516119a16000850182611830565b5060208201516119b46020850182611830565b5060408201516119c7604085018261184e565b5060608201516119da606085018261197b565b5060808201516119ed608085018261197b565b5060a0820151611a0060a085018261185d565b5060c0820151611a1360c085018261185d565b5060e0820151611a2660e085018261185d565b50610100820151611a3b61010085018261185d565b50610120820151611a50610120850182611830565b50610140820151611a6561014085018261185d565b50505050565b600061016082019050611a81600083018461198a565b92915050565b60006fffffffffffffffffffffffffffffffff82169050919050565b611aac81611a87565b8114611ab757600080fd5b50565b600081519050611ac981611aa3565b92915050565b60008060008060808587031215611ae957611ae8611381565b5b6000611af787828801611939565b9450506020611b0887828801611aba565b9350506040611b1987828801611939565b9250506060611b2a87828801611939565b91505092959194509250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b926025836112da565b9150611b9d82611b36565b604082019050919050565b60006020820190508181036000830152611bc181611b85565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c246026836112da565b9150611c2f82611bc8565b604082019050919050565b60006020820190508181036000830152611c5381611c17565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cb66024836112da565b9150611cc182611c5a565b604082019050919050565b60006020820190508181036000830152611ce581611ca9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d486022836112da565b9150611d5382611cec565b604082019050919050565b60006020820190508181036000830152611d7781611d3b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611db46020836112da565b9150611dbf82611d7e565b602082019050919050565b60006020820190508181036000830152611de381611da7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e20601d836112da565b9150611e2b82611dea565b602082019050919050565b60006020820190508181036000830152611e4f81611e13565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611eb26025836112da565b9150611ebd82611e56565b604082019050919050565b60006020820190508181036000830152611ee181611ea5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f446023836112da565b9150611f4f82611ee8565b604082019050919050565b60006020820190508181036000830152611f7381611f37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fd66026836112da565b9150611fe182611f7a565b604082019050919050565b6000602082019050818103600083015261200581611fc9565b9050919050565b7f474659546f6b656e3a2054726164696e672069732063757272656e746c79206460008201527f697361626c656400000000000000000000000000000000000000000000000000602082015250565b60006120686027836112da565b91506120738261200c565b604082019050919050565b600060208201905081810360008301526120978161205b565b905091905056fea26469706673582212200433c000163252fe284b97bf092bca64de1680ccdfd6a76e045f9d8bd20a342364736f6c63430008120033000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a9059cbb1161007c578063a9059cbb14610343578063ad5c464814610373578063b44a272214610391578063c31c9c07146103af578063dd62ed3e146103cd578063f2fde38b146103fd57610142565b8063715018a6146102c35780638a8c523c146102cd5780638da5cb5b146102d757806395d89b41146102f5578063a457c2d71461031357610142565b8063313ce5671161010a578063313ce567146101ed578063395093511461020b57806348cce9f81461023b5780634ada218b1461025757806350879c1c1461027557806370a082311461029357610142565b806306fdde0314610147578063095ea7b31461016557806317700f011461019557806318160ddd1461019f57806323b872dd146101bd575b600080fd5b61014f610419565b60405161015c919061135f565b60405180910390f35b61017f600480360381019061017a919061141a565b6104ab565b60405161018c9190611475565b60405180910390f35b61019d6104ce565b005b6101a76104f3565b6040516101b4919061149f565b60405180910390f35b6101d760048036038101906101d291906114ba565b6104fd565b6040516101e49190611475565b60405180910390f35b6101f561052c565b6040516102029190611529565b60405180910390f35b6102256004803603810190610220919061141a565b610535565b6040516102329190611475565b60405180910390f35b6102556004803603810190610250919061157d565b61056c565b005b61025f610865565b60405161026c9190611475565b60405180910390f35b61027d610878565b60405161028a9190611643565b60405180910390f35b6102ad60048036038101906102a8919061165e565b61089e565b6040516102ba919061149f565b60405180910390f35b6102cb6108e6565b005b6102d56108fa565b005b6102df61091f565b6040516102ec919061169a565b60405180910390f35b6102fd610949565b60405161030a919061135f565b60405180910390f35b61032d6004803603810190610328919061141a565b6109db565b60405161033a9190611475565b60405180910390f35b61035d6004803603810190610358919061141a565b610a52565b60405161036a9190611475565b60405180910390f35b61037b610a75565b604051610388919061169a565b60405180910390f35b610399610a8d565b6040516103a691906116d6565b60405180910390f35b6103b7610ab3565b6040516103c49190611712565b60405180910390f35b6103e760048036038101906103e2919061172d565b610ad9565b6040516103f4919061149f565b60405180910390f35b6104176004803603810190610412919061165e565b610b60565b005b6060600380546104289061179c565b80601f01602080910402602001604051908101604052809291908181526020018280546104549061179c565b80156104a15780601f10610476576101008083540402835291602001916104a1565b820191906000526020600020905b81548152906001019060200180831161048457829003601f168201915b5050505050905090565b6000806104b6610be3565b90506104c3818585610beb565b600191505092915050565b6104d6610db4565b6000600860146101000a81548160ff021916908315150217905550565b6000600254905090565b600080610508610be3565b9050610515858285610e32565b610520858585610ebe565b60019150509392505050565b60006012905090565b600080610540610be3565b90506105618185856105528589610ad9565b61055c91906117fc565b610beb565b600191505092915050565b610574610db4565b6105a130600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610beb565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663414bf3896040518061010001604052803073ffffffffffffffffffffffffffffffffffffffff16815260200173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff168152602001610bb862ffffff1681526020013073ffffffffffffffffffffffffffffffffffffffff1681526020016102584261066e91906117fc565b8152602001878152602001868152602001600073ffffffffffffffffffffffffffffffffffffffff168152506040518263ffffffff1660e01b81526004016106b6919061191d565b6020604051808303816000875af11580156106d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f9919061194e565b5060006040518061016001604052803073ffffffffffffffffffffffffffffffffffffffff16815260200173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff168152602001610bb862ffffff1681526020018460020b81526020018360020b815260200186815260200185815260200160008152602001600081526020013373ffffffffffffffffffffffffffffffffffffffff168152602001610258426107b791906117fc565b8152509050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166388316456826040518263ffffffff1660e01b81526004016108179190611a6b565b6080604051808303816000875af1158015610836573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085a9190611acf565b505050505050505050565b600860149054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ee610db4565b6108f86000611134565b565b610902610db4565b6001600860146101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109589061179c565b80601f01602080910402602001604051908101604052809291908181526020018280546109849061179c565b80156109d15780601f106109a6576101008083540402835291602001916109d1565b820191906000526020600020905b8154815290600101906020018083116109b457829003601f168201915b5050505050905090565b6000806109e6610be3565b905060006109f48286610ad9565b905083811015610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090611ba8565b60405180910390fd5b610a468286868403610beb565b60019250505092915050565b600080610a5d610be3565b9050610a6a818585610ebe565b600191505092915050565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b68610db4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90611c3a565b60405180910390fd5b610be081611134565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190611ccc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc090611d5e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610da7919061149f565b60405180910390a3505050565b610dbc610be3565b73ffffffffffffffffffffffffffffffffffffffff16610dda61091f565b73ffffffffffffffffffffffffffffffffffffffff1614610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790611dca565b60405180910390fd5b565b6000610e3e8484610ad9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eb85781811015610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190611e36565b60405180910390fd5b610eb78484848403610beb565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490611ec8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390611f5a565b60405180910390fd5b610fa78383836111fa565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490611fec565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111b919061149f565b60405180910390a361112e8484846112ca565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61120261091f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611270575061124061091f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156112c557600860149054906101000a900460ff166112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb9061207e565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113095780820151818401526020810190506112ee565b60008484015250505050565b6000601f19601f8301169050919050565b6000611331826112cf565b61133b81856112da565b935061134b8185602086016112eb565b61135481611315565b840191505092915050565b600060208201905081810360008301526113798184611326565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113b182611386565b9050919050565b6113c1816113a6565b81146113cc57600080fd5b50565b6000813590506113de816113b8565b92915050565b6000819050919050565b6113f7816113e4565b811461140257600080fd5b50565b600081359050611414816113ee565b92915050565b6000806040838503121561143157611430611381565b5b600061143f858286016113cf565b925050602061145085828601611405565b9150509250929050565b60008115159050919050565b61146f8161145a565b82525050565b600060208201905061148a6000830184611466565b92915050565b611499816113e4565b82525050565b60006020820190506114b46000830184611490565b92915050565b6000806000606084860312156114d3576114d2611381565b5b60006114e1868287016113cf565b93505060206114f2868287016113cf565b925050604061150386828701611405565b9150509250925092565b600060ff82169050919050565b6115238161150d565b82525050565b600060208201905061153e600083018461151a565b92915050565b60008160020b9050919050565b61155a81611544565b811461156557600080fd5b50565b60008135905061157781611551565b92915050565b6000806000806080858703121561159757611596611381565b5b60006115a587828801611405565b94505060206115b687828801611405565b93505060406115c787828801611568565b92505060606115d887828801611568565b91505092959194509250565b6000819050919050565b60006116096116046115ff84611386565b6115e4565b611386565b9050919050565b600061161b826115ee565b9050919050565b600061162d82611610565b9050919050565b61163d81611622565b82525050565b60006020820190506116586000830184611634565b92915050565b60006020828403121561167457611673611381565b5b6000611682848285016113cf565b91505092915050565b611694816113a6565b82525050565b60006020820190506116af600083018461168b565b92915050565b60006116c082611610565b9050919050565b6116d0816116b5565b82525050565b60006020820190506116eb60008301846116c7565b92915050565b60006116fc82611610565b9050919050565b61170c816116f1565b82525050565b60006020820190506117276000830184611703565b92915050565b6000806040838503121561174457611743611381565b5b6000611752858286016113cf565b9250506020611763858286016113cf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117b457607f821691505b6020821081036117c7576117c661176d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611807826113e4565b9150611812836113e4565b925082820190508082111561182a576118296117cd565b5b92915050565b611839816113a6565b82525050565b600062ffffff82169050919050565b6118578161183f565b82525050565b611866816113e4565b82525050565b61187581611386565b82525050565b610100820160008201516118926000850182611830565b5060208201516118a56020850182611830565b5060408201516118b8604085018261184e565b5060608201516118cb6060850182611830565b5060808201516118de608085018261185d565b5060a08201516118f160a085018261185d565b5060c082015161190460c085018261185d565b5060e082015161191760e085018261186c565b50505050565b600061010082019050611933600083018461187b565b92915050565b600081519050611948816113ee565b92915050565b60006020828403121561196457611963611381565b5b600061197284828501611939565b91505092915050565b61198481611544565b82525050565b610160820160008201516119a16000850182611830565b5060208201516119b46020850182611830565b5060408201516119c7604085018261184e565b5060608201516119da606085018261197b565b5060808201516119ed608085018261197b565b5060a0820151611a0060a085018261185d565b5060c0820151611a1360c085018261185d565b5060e0820151611a2660e085018261185d565b50610100820151611a3b61010085018261185d565b50610120820151611a50610120850182611830565b50610140820151611a6561014085018261185d565b50505050565b600061016082019050611a81600083018461198a565b92915050565b60006fffffffffffffffffffffffffffffffff82169050919050565b611aac81611a87565b8114611ab757600080fd5b50565b600081519050611ac981611aa3565b92915050565b60008060008060808587031215611ae957611ae8611381565b5b6000611af787828801611939565b9450506020611b0887828801611aba565b9350506040611b1987828801611939565b9250506060611b2a87828801611939565b91505092959194509250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b926025836112da565b9150611b9d82611b36565b604082019050919050565b60006020820190508181036000830152611bc181611b85565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c246026836112da565b9150611c2f82611bc8565b604082019050919050565b60006020820190508181036000830152611c5381611c17565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cb66024836112da565b9150611cc182611c5a565b604082019050919050565b60006020820190508181036000830152611ce581611ca9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d486022836112da565b9150611d5382611cec565b604082019050919050565b60006020820190508181036000830152611d7781611d3b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611db46020836112da565b9150611dbf82611d7e565b602082019050919050565b60006020820190508181036000830152611de381611da7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e20601d836112da565b9150611e2b82611dea565b602082019050919050565b60006020820190508181036000830152611e4f81611e13565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611eb26025836112da565b9150611ebd82611e56565b604082019050919050565b60006020820190508181036000830152611ee181611ea5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f446023836112da565b9150611f4f82611ee8565b604082019050919050565b60006020820190508181036000830152611f7381611f37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fd66026836112da565b9150611fe182611f7a565b604082019050919050565b6000602082019050818103600083015261200581611fc9565b9050919050565b7f474659546f6b656e3a2054726164696e672069732063757272656e746c79206460008201527f697361626c656400000000000000000000000000000000000000000000000000602082015250565b60006120686027836112da565b91506120738261200c565b604082019050919050565b600060208201905081810360008301526120978161205b565b905091905056fea26469706673582212200433c000163252fe284b97bf092bca64de1680ccdfd6a76e045f9d8bd20a342364736f6c63430008120033

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

000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

-----Decoded View---------------
Arg [0] : _nonfungiblePositionManager (address): 0xC36442b4a4522E871399CD717aBDD847Ab11FE88
Arg [1] : _swapRouter (address): 0xE592427A0AEce92De3Edee1F18E0157C05861564
Arg [2] : _weth9 (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88
Arg [1] : 000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564
Arg [2] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2


Deployed Bytecode Sourcemap

47256:2634:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36191:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38551:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48247:86;;;:::i;:::-;;37320:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39332:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37162:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40002:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48614:1273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47563:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47489:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37491:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29646:103;;;:::i;:::-;;48103:84;;;:::i;:::-;;29005:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36410:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40743:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37824:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47299:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47385:61;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47453:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38080:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29904:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36191:100;36245:13;36278:5;36271:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36191:100;:::o;38551:201::-;38634:4;38651:13;38667:12;:10;:12::i;:::-;38651:28;;38690:32;38699:5;38706:7;38715:6;38690:8;:32::i;:::-;38740:4;38733:11;;;38551:201;;;;:::o;48247:86::-;28891:13;:11;:13::i;:::-;48320:5:::1;48303:14;;:22;;;;;;;;;;;;;;;;;;48247:86::o:0;37320:108::-;37381:7;37408:12;;37401:19;;37320:108;:::o;39332:261::-;39429:4;39446:15;39464:12;:10;:12::i;:::-;39446:30;;39487:38;39503:4;39509:7;39518:6;39487:15;:38::i;:::-;39536:27;39546:4;39552:2;39556:6;39536:9;:27::i;:::-;39581:4;39574:11;;;39332:261;;;;;:::o;37162:93::-;37220:5;37245:2;37238:9;;37162:93;:::o;40002:238::-;40090:4;40107:13;40123:12;:10;:12::i;:::-;40107:28;;40146:64;40155:5;40162:7;40199:10;40171:25;40181:5;40188:7;40171:9;:25::i;:::-;:38;;;;:::i;:::-;40146:8;:64::i;:::-;40228:4;40221:11;;;40002:238;;;;:::o;48614:1273::-;28891:13;:11;:13::i;:::-;48743:57:::1;48760:4;48775:10;;;;;;;;;;;48788:11;48743:8;:57::i;:::-;48821:10;;;;;;;;;;;:27;;;48863:372;;;;;;;;48934:4;48863:372;;;;;;47330:42;48863:372;;;;;;48996:4;48863:372;;;;;;49038:4;48863:372;;;;;;49090:3;49072:15;:21;;;;:::i;:::-;48863:372;;;;49122:11;48863:372;;;;49170:10;48863:372;;;;49218:1;48863:372;;;;::::0;48821:425:::1;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49267:52;49336:479;;;;;;;;49410:4;49336:479;;;;;;47330:42;49336:479;;;;;;49470:4;49336:479;;;;;;49504:10;49336:479;;;;;;49544:10;49336:479;;;;;;49589:11;49336:479;;;;49635:10;49336:479;;;;49676:1;49336:479;;;;49708:1;49336:479;;;;49739:10;49336:479;;;;;;49796:3;49778:15;:21;;;;:::i;:::-;49336:479;;::::0;49267:548:::1;;49840:26;;;;;;;;;;;:31;;;49872:6;49840:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;48732:1155;48614:1273:::0;;;;:::o;47563:34::-;;;;;;;;;;;;;:::o;47489:19::-;;;;;;;;;;;;;:::o;37491:127::-;37565:7;37592:9;:18;37602:7;37592:18;;;;;;;;;;;;;;;;37585:25;;37491:127;;;:::o;29646:103::-;28891:13;:11;:13::i;:::-;29711:30:::1;29738:1;29711:18;:30::i;:::-;29646:103::o:0;48103:84::-;28891:13;:11;:13::i;:::-;48175:4:::1;48158:14;;:21;;;;;;;;;;;;;;;;;;48103:84::o:0;29005:87::-;29051:7;29078:6;;;;;;;;;;;29071:13;;29005:87;:::o;36410:104::-;36466:13;36499:7;36492:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36410:104;:::o;40743:436::-;40836:4;40853:13;40869:12;:10;:12::i;:::-;40853:28;;40892:24;40919:25;40929:5;40936:7;40919:9;:25::i;:::-;40892:52;;40983:15;40963:16;:35;;40955:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;41076:60;41085:5;41092:7;41120:15;41101:16;:34;41076:8;:60::i;:::-;41167:4;41160:11;;;;40743:436;;;;:::o;37824:193::-;37903:4;37920:13;37936:12;:10;:12::i;:::-;37920:28;;37959;37969:5;37976:2;37980:6;37959:9;:28::i;:::-;38005:4;37998:11;;;37824:193;;;;:::o;47299:73::-;47330:42;47299:73;:::o;47385:61::-;;;;;;;;;;;;;:::o;47453:29::-;;;;;;;;;;;;;:::o;38080:151::-;38169:7;38196:11;:18;38208:5;38196:18;;;;;;;;;;;;;;;:27;38215:7;38196:27;;;;;;;;;;;;;;;;38189:34;;38080:151;;;;:::o;29904:201::-;28891:13;:11;:13::i;:::-;30013:1:::1;29993:22;;:8;:22;;::::0;29985:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30069:28;30088:8;30069:18;:28::i;:::-;29904:201:::0;:::o;27556:98::-;27609:7;27636:10;27629:17;;27556:98;:::o;44736:346::-;44855:1;44838:19;;:5;:19;;;44830:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44936:1;44917:21;;:7;:21;;;44909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45020:6;44990:11;:18;45002:5;44990:18;;;;;;;;;;;;;;;:27;45009:7;44990:27;;;;;;;;;;;;;;;:36;;;;45058:7;45042:32;;45051:5;45042:32;;;45067:6;45042:32;;;;;;:::i;:::-;;;;;;;;44736:346;;;:::o;29170:132::-;29245:12;:10;:12::i;:::-;29234:23;;:7;:5;:7::i;:::-;:23;;;29226:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29170:132::o;45373:419::-;45474:24;45501:25;45511:5;45518:7;45501:9;:25::i;:::-;45474:52;;45561:17;45541:16;:37;45537:248;;45623:6;45603:16;:26;;45595:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45707:51;45716:5;45723:7;45751:6;45732:16;:25;45707:8;:51::i;:::-;45537:248;45463:329;45373:419;;;:::o;41649:806::-;41762:1;41746:18;;:4;:18;;;41738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41839:1;41825:16;;:2;:16;;;41817:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41894:38;41915:4;41921:2;41925:6;41894:20;:38::i;:::-;41945:19;41967:9;:15;41977:4;41967:15;;;;;;;;;;;;;;;;41945:37;;42016:6;42001:11;:21;;41993:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;42133:6;42119:11;:20;42101:9;:15;42111:4;42101:15;;;;;;;;;;;;;;;:38;;;;42336:6;42319:9;:13;42329:2;42319:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;42386:2;42371:26;;42380:4;42371:26;;;42390:6;42371:26;;;;;;:::i;:::-;;;;;;;;42410:37;42430:4;42436:2;42440:6;42410:19;:37::i;:::-;41727:728;41649:806;;;:::o;30265:191::-;30339:16;30358:6;;;;;;;;;;;30339:25;;30384:8;30375:6;;:17;;;;;;;;;;;;;;;;;;30439:8;30408:40;;30429:8;30408:40;;;;;;;;;;;;30328:128;30265:191;:::o;48341:261::-;48476:7;:5;:7::i;:::-;48468:15;;:4;:15;;;;:32;;;;;48493:7;:5;:7::i;:::-;48487:13;;:2;:13;;;;48468:32;48465:130;;;48525:14;;;;;;;;;;;48517:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48465:130;48341:261;;;:::o;47087:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:90::-;4888:7;4931:5;4928:1;4917:20;4906:31;;4853:90;;;:::o;4949:118::-;5020:22;5036:5;5020:22;:::i;:::-;5013:5;5010:33;5000:61;;5057:1;5054;5047:12;5000:61;4949:118;:::o;5073:135::-;5117:5;5155:6;5142:20;5133:29;;5171:31;5196:5;5171:31;:::i;:::-;5073:135;;;;:::o;5214:757::-;5296:6;5304;5312;5320;5369:3;5357:9;5348:7;5344:23;5340:33;5337:120;;;5376:79;;:::i;:::-;5337:120;5496:1;5521:53;5566:7;5557:6;5546:9;5542:22;5521:53;:::i;:::-;5511:63;;5467:117;5623:2;5649:53;5694:7;5685:6;5674:9;5670:22;5649:53;:::i;:::-;5639:63;;5594:118;5751:2;5777:51;5820:7;5811:6;5800:9;5796:22;5777:51;:::i;:::-;5767:61;;5722:116;5877:2;5903:51;5946:7;5937:6;5926:9;5922:22;5903:51;:::i;:::-;5893:61;;5848:116;5214:757;;;;;;;:::o;5977:60::-;6005:3;6026:5;6019:12;;5977:60;;;:::o;6043:142::-;6093:9;6126:53;6144:34;6153:24;6171:5;6153:24;:::i;:::-;6144:34;:::i;:::-;6126:53;:::i;:::-;6113:66;;6043:142;;;:::o;6191:126::-;6241:9;6274:37;6305:5;6274:37;:::i;:::-;6261:50;;6191:126;;;:::o;6323:140::-;6387:9;6420:37;6451:5;6420:37;:::i;:::-;6407:50;;6323:140;;;:::o;6469:159::-;6570:51;6615:5;6570:51;:::i;:::-;6565:3;6558:64;6469:159;;:::o;6634:250::-;6741:4;6779:2;6768:9;6764:18;6756:26;;6792:85;6874:1;6863:9;6859:17;6850:6;6792:85;:::i;:::-;6634:250;;;;:::o;6890:329::-;6949:6;6998:2;6986:9;6977:7;6973:23;6969:32;6966:119;;;7004:79;;:::i;:::-;6966:119;7124:1;7149:53;7194:7;7185:6;7174:9;7170:22;7149:53;:::i;:::-;7139:63;;7095:117;6890:329;;;;:::o;7225:118::-;7312:24;7330:5;7312:24;:::i;:::-;7307:3;7300:37;7225:118;;:::o;7349:222::-;7442:4;7480:2;7469:9;7465:18;7457:26;;7493:71;7561:1;7550:9;7546:17;7537:6;7493:71;:::i;:::-;7349:222;;;;:::o;7577:161::-;7662:9;7695:37;7726:5;7695:37;:::i;:::-;7682:50;;7577:161;;;:::o;7744:201::-;7866:72;7932:5;7866:72;:::i;:::-;7861:3;7854:85;7744:201;;:::o;7951:292::-;8079:4;8117:2;8106:9;8102:18;8094:26;;8130:106;8233:1;8222:9;8218:17;8209:6;8130:106;:::i;:::-;7951:292;;;;:::o;8249:145::-;8318:9;8351:37;8382:5;8351:37;:::i;:::-;8338:50;;8249:145;;;:::o;8400:169::-;8506:56;8556:5;8506:56;:::i;:::-;8501:3;8494:69;8400:169;;:::o;8575:260::-;8687:4;8725:2;8714:9;8710:18;8702:26;;8738:90;8825:1;8814:9;8810:17;8801:6;8738:90;:::i;:::-;8575:260;;;;:::o;8841:474::-;8909:6;8917;8966:2;8954:9;8945:7;8941:23;8937:32;8934:119;;;8972:79;;:::i;:::-;8934:119;9092:1;9117:53;9162:7;9153:6;9142:9;9138:22;9117:53;:::i;:::-;9107:63;;9063:117;9219:2;9245:53;9290:7;9281:6;9270:9;9266:22;9245:53;:::i;:::-;9235:63;;9190:118;8841:474;;;;;:::o;9321:180::-;9369:77;9366:1;9359:88;9466:4;9463:1;9456:15;9490:4;9487:1;9480:15;9507:320;9551:6;9588:1;9582:4;9578:12;9568:22;;9635:1;9629:4;9625:12;9656:18;9646:81;;9712:4;9704:6;9700:17;9690:27;;9646:81;9774:2;9766:6;9763:14;9743:18;9740:38;9737:84;;9793:18;;:::i;:::-;9737:84;9558:269;9507:320;;;:::o;9833:180::-;9881:77;9878:1;9871:88;9978:4;9975:1;9968:15;10002:4;9999:1;9992:15;10019:191;10059:3;10078:20;10096:1;10078:20;:::i;:::-;10073:25;;10112:20;10130:1;10112:20;:::i;:::-;10107:25;;10155:1;10152;10148:9;10141:16;;10176:3;10173:1;10170:10;10167:36;;;10183:18;;:::i;:::-;10167:36;10019:191;;;;:::o;10216:108::-;10293:24;10311:5;10293:24;:::i;:::-;10288:3;10281:37;10216:108;;:::o;10330:91::-;10366:7;10406:8;10399:5;10395:20;10384:31;;10330:91;;;:::o;10427:105::-;10502:23;10519:5;10502:23;:::i;:::-;10497:3;10490:36;10427:105;;:::o;10538:108::-;10615:24;10633:5;10615:24;:::i;:::-;10610:3;10603:37;10538:108;;:::o;10652:::-;10729:24;10747:5;10729:24;:::i;:::-;10724:3;10717:37;10652:108;;:::o;10860:1621::-;11033:6;11028:3;11024:16;11125:4;11118:5;11114:16;11108:23;11144:63;11201:4;11196:3;11192:14;11178:12;11144:63;:::i;:::-;11050:167;11303:4;11296:5;11292:16;11286:23;11322:63;11379:4;11374:3;11370:14;11356:12;11322:63;:::i;:::-;11227:168;11476:4;11469:5;11465:16;11459:23;11495:61;11550:4;11545:3;11541:14;11527:12;11495:61;:::i;:::-;11405:161;11653:4;11646:5;11642:16;11636:23;11672:63;11729:4;11724:3;11720:14;11706:12;11672:63;:::i;:::-;11576:169;11831:4;11824:5;11820:16;11814:23;11850:63;11907:4;11902:3;11898:14;11884:12;11850:63;:::i;:::-;11755:168;12009:4;12002:5;11998:16;11992:23;12028:63;12085:4;12080:3;12076:14;12062:12;12028:63;:::i;:::-;11933:168;12195:4;12188:5;12184:16;12178:23;12214:63;12271:4;12266:3;12262:14;12248:12;12214:63;:::i;:::-;12111:176;12382:4;12375:5;12371:16;12365:23;12401:63;12458:4;12453:3;12449:14;12435:12;12401:63;:::i;:::-;12297:177;11002:1479;10860:1621;;:::o;12487:375::-;12656:4;12694:3;12683:9;12679:19;12671:27;;12708:147;12852:1;12841:9;12837:17;12828:6;12708:147;:::i;:::-;12487:375;;;;:::o;12868:143::-;12925:5;12956:6;12950:13;12941:22;;12972:33;12999:5;12972:33;:::i;:::-;12868:143;;;;:::o;13017:351::-;13087:6;13136:2;13124:9;13115:7;13111:23;13107:32;13104:119;;;13142:79;;:::i;:::-;13104:119;13262:1;13287:64;13343:7;13334:6;13323:9;13319:22;13287:64;:::i;:::-;13277:74;;13233:128;13017:351;;;;:::o;13374:102::-;13447:22;13463:5;13447:22;:::i;:::-;13442:3;13435:35;13374:102;;:::o;13584:2135::-;13735:6;13730:3;13726:16;13826:4;13819:5;13815:16;13809:23;13845:63;13902:4;13897:3;13893:14;13879:12;13845:63;:::i;:::-;13752:166;14002:4;13995:5;13991:16;13985:23;14021:63;14078:4;14073:3;14069:14;14055:12;14021:63;:::i;:::-;13928:166;14175:4;14168:5;14164:16;14158:23;14194:61;14249:4;14244:3;14240:14;14226:12;14194:61;:::i;:::-;14104:161;14352:4;14345:5;14341:16;14335:23;14371:59;14424:4;14419:3;14415:14;14401:12;14371:59;:::i;:::-;14275:165;14527:4;14520:5;14516:16;14510:23;14546:59;14599:4;14594:3;14590:14;14576:12;14546:59;:::i;:::-;14450:165;14707:4;14700:5;14696:16;14690:23;14726:63;14783:4;14778:3;14774:14;14760:12;14726:63;:::i;:::-;14625:174;14891:4;14884:5;14880:16;14874:23;14910:63;14967:4;14962:3;14958:14;14944:12;14910:63;:::i;:::-;14809:174;15071:4;15064:5;15060:16;15054:23;15090:63;15147:4;15142:3;15138:14;15124:12;15090:63;:::i;:::-;14993:170;15251:6;15244:5;15240:18;15234:25;15272:65;15329:6;15324:3;15320:16;15306:12;15272:65;:::i;:::-;15173:174;15434:6;15427:5;15423:18;15417:25;15455:65;15512:6;15507:3;15503:16;15489:12;15455:65;:::i;:::-;15357:173;15616:6;15609:5;15605:18;15599:25;15637:65;15694:6;15689:3;15685:16;15671:12;15637:65;:::i;:::-;15540:172;13704:2015;13584:2135;;:::o;15725:331::-;15872:4;15910:3;15899:9;15895:19;15887:27;;15924:125;16046:1;16035:9;16031:17;16022:6;15924:125;:::i;:::-;15725:331;;;;:::o;16062:118::-;16099:7;16139:34;16132:5;16128:46;16117:57;;16062:118;;;:::o;16186:122::-;16259:24;16277:5;16259:24;:::i;:::-;16252:5;16249:35;16239:63;;16298:1;16295;16288:12;16239:63;16186:122;:::o;16314:143::-;16371:5;16402:6;16396:13;16387:22;;16418:33;16445:5;16418:33;:::i;:::-;16314:143;;;;:::o;16463:820::-;16560:6;16568;16576;16584;16633:3;16621:9;16612:7;16608:23;16604:33;16601:120;;;16640:79;;:::i;:::-;16601:120;16760:1;16785:64;16841:7;16832:6;16821:9;16817:22;16785:64;:::i;:::-;16775:74;;16731:128;16898:2;16924:64;16980:7;16971:6;16960:9;16956:22;16924:64;:::i;:::-;16914:74;;16869:129;17037:2;17063:64;17119:7;17110:6;17099:9;17095:22;17063:64;:::i;:::-;17053:74;;17008:129;17176:2;17202:64;17258:7;17249:6;17238:9;17234:22;17202:64;:::i;:::-;17192:74;;17147:129;16463:820;;;;;;;:::o;17289:224::-;17429:34;17425:1;17417:6;17413:14;17406:58;17498:7;17493:2;17485:6;17481:15;17474:32;17289:224;:::o;17519:366::-;17661:3;17682:67;17746:2;17741:3;17682:67;:::i;:::-;17675:74;;17758:93;17847:3;17758:93;:::i;:::-;17876:2;17871:3;17867:12;17860:19;;17519:366;;;:::o;17891:419::-;18057:4;18095:2;18084:9;18080:18;18072:26;;18144:9;18138:4;18134:20;18130:1;18119:9;18115:17;18108:47;18172:131;18298:4;18172:131;:::i;:::-;18164:139;;17891:419;;;:::o;18316:225::-;18456:34;18452:1;18444:6;18440:14;18433:58;18525:8;18520:2;18512:6;18508:15;18501:33;18316:225;:::o;18547:366::-;18689:3;18710:67;18774:2;18769:3;18710:67;:::i;:::-;18703:74;;18786:93;18875:3;18786:93;:::i;:::-;18904:2;18899:3;18895:12;18888:19;;18547:366;;;:::o;18919:419::-;19085:4;19123:2;19112:9;19108:18;19100:26;;19172:9;19166:4;19162:20;19158:1;19147:9;19143:17;19136:47;19200:131;19326:4;19200:131;:::i;:::-;19192:139;;18919:419;;;:::o;19344:223::-;19484:34;19480:1;19472:6;19468:14;19461:58;19553:6;19548:2;19540:6;19536:15;19529:31;19344:223;:::o;19573:366::-;19715:3;19736:67;19800:2;19795:3;19736:67;:::i;:::-;19729:74;;19812:93;19901:3;19812:93;:::i;:::-;19930:2;19925:3;19921:12;19914:19;;19573:366;;;:::o;19945:419::-;20111:4;20149:2;20138:9;20134:18;20126:26;;20198:9;20192:4;20188:20;20184:1;20173:9;20169:17;20162:47;20226:131;20352:4;20226:131;:::i;:::-;20218:139;;19945:419;;;:::o;20370:221::-;20510:34;20506:1;20498:6;20494:14;20487:58;20579:4;20574:2;20566:6;20562:15;20555:29;20370:221;:::o;20597:366::-;20739:3;20760:67;20824:2;20819:3;20760:67;:::i;:::-;20753:74;;20836:93;20925:3;20836:93;:::i;:::-;20954:2;20949:3;20945:12;20938:19;;20597:366;;;:::o;20969:419::-;21135:4;21173:2;21162:9;21158:18;21150:26;;21222:9;21216:4;21212:20;21208:1;21197:9;21193:17;21186:47;21250:131;21376:4;21250:131;:::i;:::-;21242:139;;20969:419;;;:::o;21394:182::-;21534:34;21530:1;21522:6;21518:14;21511:58;21394:182;:::o;21582:366::-;21724:3;21745:67;21809:2;21804:3;21745:67;:::i;:::-;21738:74;;21821:93;21910:3;21821:93;:::i;:::-;21939:2;21934:3;21930:12;21923:19;;21582:366;;;:::o;21954:419::-;22120:4;22158:2;22147:9;22143:18;22135:26;;22207:9;22201:4;22197:20;22193:1;22182:9;22178:17;22171:47;22235:131;22361:4;22235:131;:::i;:::-;22227:139;;21954:419;;;:::o;22379:179::-;22519:31;22515:1;22507:6;22503:14;22496:55;22379:179;:::o;22564:366::-;22706:3;22727:67;22791:2;22786:3;22727:67;:::i;:::-;22720:74;;22803:93;22892:3;22803:93;:::i;:::-;22921:2;22916:3;22912:12;22905:19;;22564:366;;;:::o;22936:419::-;23102:4;23140:2;23129:9;23125:18;23117:26;;23189:9;23183:4;23179:20;23175:1;23164:9;23160:17;23153:47;23217:131;23343:4;23217:131;:::i;:::-;23209:139;;22936:419;;;:::o;23361:224::-;23501:34;23497:1;23489:6;23485:14;23478:58;23570:7;23565:2;23557:6;23553:15;23546:32;23361:224;:::o;23591:366::-;23733:3;23754:67;23818:2;23813:3;23754:67;:::i;:::-;23747:74;;23830:93;23919:3;23830:93;:::i;:::-;23948:2;23943:3;23939:12;23932:19;;23591:366;;;:::o;23963:419::-;24129:4;24167:2;24156:9;24152:18;24144:26;;24216:9;24210:4;24206:20;24202:1;24191:9;24187:17;24180:47;24244:131;24370:4;24244:131;:::i;:::-;24236:139;;23963:419;;;:::o;24388:222::-;24528:34;24524:1;24516:6;24512:14;24505:58;24597:5;24592:2;24584:6;24580:15;24573:30;24388:222;:::o;24616:366::-;24758:3;24779:67;24843:2;24838:3;24779:67;:::i;:::-;24772:74;;24855:93;24944:3;24855:93;:::i;:::-;24973:2;24968:3;24964:12;24957:19;;24616:366;;;:::o;24988:419::-;25154:4;25192:2;25181:9;25177:18;25169:26;;25241:9;25235:4;25231:20;25227:1;25216:9;25212:17;25205:47;25269:131;25395:4;25269:131;:::i;:::-;25261:139;;24988:419;;;:::o;25413:225::-;25553:34;25549:1;25541:6;25537:14;25530:58;25622:8;25617:2;25609:6;25605:15;25598:33;25413:225;:::o;25644:366::-;25786:3;25807:67;25871:2;25866:3;25807:67;:::i;:::-;25800:74;;25883:93;25972:3;25883:93;:::i;:::-;26001:2;25996:3;25992:12;25985:19;;25644:366;;;:::o;26016:419::-;26182:4;26220:2;26209:9;26205:18;26197:26;;26269:9;26263:4;26259:20;26255:1;26244:9;26240:17;26233:47;26297:131;26423:4;26297:131;:::i;:::-;26289:139;;26016:419;;;:::o;26441:226::-;26581:34;26577:1;26569:6;26565:14;26558:58;26650:9;26645:2;26637:6;26633:15;26626:34;26441:226;:::o;26673:366::-;26815:3;26836:67;26900:2;26895:3;26836:67;:::i;:::-;26829:74;;26912:93;27001:3;26912:93;:::i;:::-;27030:2;27025:3;27021:12;27014:19;;26673:366;;;:::o;27045:419::-;27211:4;27249:2;27238:9;27234:18;27226:26;;27298:9;27292:4;27288:20;27284:1;27273:9;27269:17;27262:47;27326:131;27452:4;27326:131;:::i;:::-;27318:139;;27045:419;;;:::o

Swarm Source

ipfs://0433c000163252fe284b97bf092bca64de1680ccdfd6a76e045f9d8bd20a3423

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.