Strategy

Description:

Multi-signature wallet contract requiring multiple confirmations for transaction execution.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

{{
  "language": "Solidity",
  "sources": {
    "contracts/Strategy.sol": {
      "content": "// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.24;

import { AccessControl } from "@solidstate/contracts/access/access_control/AccessControl.sol";
import { ITraderV0, TraderV0InitializerParams } from "./modules/Trader.sol";
import { ID2_Module } from "./modules/D2.sol";
import { IWETH_Module } from "./modules/WETH.sol";
import { IInch_Module } from "./modules/Inch.sol";
import { IAave_Module } from "./modules/Aave.sol";
import { IHypurrfi_Module } from "./modules/Hypurrfi.sol";
import { IPendle_Module } from "./modules/Pendle.sol";
import { IGMXV2_Module } from "./modules/GMXV2.sol";
import { IDolomite_Module } from "./modules/Dolomite.sol";
import { ISilo_Module } from "./modules/Silo.sol";
import { ICamelot_LP_Module, ICamelot_NFTPool_Module, ICamelot_NitroPool_Module, ICamelot_Swap_Module, ICamelot_V3LP_Module, ICamelot_V3Swap_Module, ICamelot_Storage_Module } from "./modules/Camelot.sol";
import { IBera_Module } from "./modules/Bera.sol";
import { IHype_Module } from "./modules/Hype.sol";
import { IHyperbeat_Module } from "./modules/Hyperbeat.sol";

contract Strategy is AccessControl {
    struct State {
        bool claimed;
        bool frozen;
        mapping(bytes4 => address) selectors;
    }

    bytes32 internal constant STATE_SLOT = keccak256("strategy");

    constructor(address[] memory targets, address[] memory allowedTokens, address[] memory allowedSpenders) {
        State storage s;
        bytes32 slot = STATE_SLOT;
        assembly { s.slot := slot }

        if (block.chainid == 42161) {
            address t = targets[0];
            s.selectors[ITraderV0.setVault.selector] = t;
            s.selectors[ITraderV0.approve.selector] = t;
            s.selectors[ITraderV0.custodyFunds.selector] = t;
            s.selectors[ITraderV0.returnFunds.selector] = t;
            s.selectors[ITraderV0.withdrawFees.selector] = t;
            s.selectors[ITraderV0.setFeeRates.selector] = t;
            s.selectors[ITraderV0.setFeeReceiver.selector] = t;
            s.selectors[ITraderV0.getAllowedTokens.selector] = t;
            s.selectors[ITraderV0.getAllowedSpenders.selector] = t;
            s.selectors[ITraderV0.name.selector] = t;
            s.selectors[ITraderV0.feeReceiver.selector] = t;
            s.selectors[ITraderV0.vault.selector] = t;
            s.selectors[ITraderV0.baseAsset.selector] = t;
            s.selectors[ITraderV0.performanceFeeRate.selector] = t;
            s.selectors[ITraderV0.managementFeeRate.selector] = t;
            s.selectors[ITraderV0.custodyTime.selector] = t;
            s.selectors[ITraderV0.custodiedAmount.selector] = t;
            s.selectors[ITraderV0.totalFees.selector] = t;
            s.selectors[ITraderV0.MAX_PERFORMANCE_FEE_RATE.selector] = t;
            s.selectors[ITraderV0.MAX_MANAGEMENT_FEE_RATE.selector] = t;
            initialize(t, abi.encodeWithSelector(ITraderV0.initializeTraderV0.selector, TraderV0InitializerParams({
                _name: "",
                _allowedTokens: allowedTokens,
                _allowedSpenders: allowedSpenders,
                _initialPerformanceFeeRate: 0.2e18,
                _initialManagementFeeRate: 0.02e18
            })));

            t = targets[1];
            s.selectors[ID2_Module.d2_deposit.selector] = t;
            s.selectors[ID2_Module.d2_withdraw.selector] = t;
            t = targets[2];
            s.selectors[IWETH_Module.weth_deposit.selector] = t;
            s.selectors[IWETH_Module.weth_withdraw.selector] = t;
            t = targets[3];
            s.selectors[IInch_Module.inch_swap.selector] = t;
            s.selectors[IInch_Module.inch_uniswapV3Swap.selector] = t;
            s.selectors[IInch_Module.inch_clipperSwap.selector] = t;
            t = targets[4];
            s.selectors[IAave_Module.aave_supply.selector] = t;
            s.selectors[IAave_Module.aave_withdraw.selector] = t;
            s.selectors[IAave_Module.aave_borrow.selector] = t;
            s.selectors[IAave_Module.aave_repay.selector] = t;
            s.selectors[IAave_Module.aave_setUserEMode.selector] = t;
            s.selectors[IAave_Module.aave_claimRewards.selector] = t;
            t = targets[5];
            s.selectors[IPendle_Module.pendle_deposit.selector] = t;
            s.selectors[IPendle_Module.pendle_withdraw.selector] = t;
            s.selectors[IPendle_Module.pendle_swap.selector] = t;
            s.selectors[IPendle_Module.pendle_claim.selector] = t;
            s.selectors[IPendle_Module.pendle_exit.selector] = t;
            t = targets[6];
            s.selectors[IGMXV2_Module.gmxv2_create.selector] = t;
            s.selectors[IGMXV2_Module.gmxv2_update.selector] = t;
            s.selectors[IGMXV2_Module.gmxv2_cancel.selector] = t;
            s.selectors[IGMXV2_Module.gmxv2_claimFees.selector] = t;
            s.selectors[IGMXV2_Module.gmxv2_deposit.selector] = t;
            s.selectors[IGMXV2_Module.gmxv2_withdraw.selector] = t;
            s.selectors[IGMXV2_Module.gmxv2_glvDeposit.selector] = t;
            s.selectors[IGMXV2_Module.gmxv2_glvCancelDeposit.selector] = t;
            s.selectors[IGMXV2_Module.gmxv2_glvWithdraw.selector] = t;
            s.selectors[IGMXV2_Module.gmxv2_glvCancelWithdraw.selector] = t;
            t = targets[7];
            s.selectors[IDolomite_Module.dolomite_depositWei.selector] = t;
            s.selectors[IDolomite_Module.dolomite_depositWeiIntoDefaultAccount.selector] = t;
            s.selectors[IDolomite_Module.dolomite_withdrawWei.selector] = t;
            s.selectors[IDolomite_Module.dolomite_withdrawWeiFromDefaultAccount.selector] = t;
            s.selectors[IDolomite_Module.dolomite_depositPar.selector] = t;
            s.selectors[IDolomite_Module.dolomite_depositParIntoDefaultAccount.selector] = t;
            s.selectors[IDolomite_Module.dolomite_withdrawPar.selector] = t;
            s.selectors[IDolomite_Module.dolomite_withdrawParFromDefaultAccount.selector] = t;
            s.selectors[IDolomite_Module.dolomite_openBorrowPosition.selector] = t;
            s.selectors[IDolomite_Module.dolomite_closeBorrowPosition.selector] = t;
            s.selectors[IDolomite_Module.dolomite_transferBetweenAccounts.selector] = t;
            s.selectors[IDolomite_Module.dolomite_repayAllForBorrowPosition.selector] = t;
            t = targets[8];
            s.selectors[ISilo_Module.silo_deposit.selector] = t;
            s.selectors[ISilo_Module.silo_withdraw.selector] = t;
            s.selectors[ISilo_Module.silo_borrow.selector] = t;
            s.selectors[ISilo_Module.silo_repay.selector] = t;
            s.selectors[ISilo_Module.silo_execute.selector] = t;
            t = targets[9];
            s.selectors[ICamelot_LP_Module.camelot_addLiquidity.selector] = t;
            s.selectors[ICamelot_LP_Module.camelot_addLiquidityETH.selector] = t;
            s.selectors[ICamelot_LP_Module.camelot_removeLiquidity.selector] = t;
            s.selectors[ICamelot_LP_Module.camelot_removeLiquidityETH.selector] = t;
            t = targets[10];
            s.selectors[ICamelot_NFTPool_Module.camelot_nftpool_createPosition.selector] = t;
            s.selectors[ICamelot_NFTPool_Module.camelot_nftpool_addToPosition.selector] = t;
            s.selectors[ICamelot_NFTPool_Module.camelot_nftpool_harvestPosition.selector] = t;
            s.selectors[ICamelot_NFTPool_Module.camelot_nftpool_withdrawFromPosition.selector] = t;
            s.selectors[ICamelot_NFTPool_Module.camelot_nftpool_renewLockPosition.selector] = t;
            s.selectors[ICamelot_NFTPool_Module.camelot_nftpool_lockPosition.selector] = t;
            s.selectors[ICamelot_NFTPool_Module.camelot_nftpool_splitPosition.selector] = t;
            s.selectors[ICamelot_NFTPool_Module.camelot_nftpool_mergePositions.selector] = t;
            s.selectors[ICamelot_NFTPool_Module.camelot_nftpool_emergencyWithdraw.selector] = t;
            s.selectors[ICamelot_NFTPool_Module.onERC721Received.selector] = t;
            s.selectors[ICamelot_NFTPool_Module.onNFTHarvest.selector] = t;
            s.selectors[ICamelot_NFTPool_Module.onNFTAddToPosition.selector] = t;
            s.selectors[ICamelot_NFTPool_Module.onNFTWithdraw.selector] = t;
            t = targets[11];
            s.selectors[ICamelot_NitroPool_Module.camelot_nitropool_transfer.selector] = t;
            s.selectors[ICamelot_NitroPool_Module.camelot_nitropool_withdraw.selector] = t;
            s.selectors[ICamelot_NitroPool_Module.camelot_nitropool_emergencyWithdraw.selector] = t;
            s.selectors[ICamelot_NitroPool_Module.camelot_nitropool_harvest.selector] = t;
            t = targets[12];
            s.selectors[ICamelot_Swap_Module.camelot_swapExactTokensForTokens.selector] = t;
            s.selectors[ICamelot_Swap_Module.camelot_swapExactETHForTokens.selector] = t;
            s.selectors[ICamelot_Swap_Module.camelot_swapExactTokensForETH.selector] = t;
            t = targets[13];
            s.selectors[ICamelot_V3LP_Module.camelot_v3_mint.selector] = t;
            s.selectors[ICamelot_V3LP_Module.camelot_v3_burn.selector] = t;
            s.selectors[ICamelot_V3LP_Module.camelot_v3_collect.selector] = t;
            s.selectors[ICamelot_V3LP_Module.camelot_v3_increaseLiquidity.selector] = t;
            s.selectors[ICamelot_V3LP_Module.camelot_v3_decreaseLiquidity.selector] = t;
            s.selectors[ICamelot_V3LP_Module.camelot_v3_decreaseLiquidityAndCollect.selector] = t;
            s.selectors[ICamelot_V3LP_Module.camelot_v3_decreaseLiquidityCollectAndBurn.selector] = t;
            t = targets[14];
            s.selectors[ICamelot_V3Swap_Module.camelot_v3_swap.selector] = t;
            t = targets[15];
            s.selectors[ICamelot_Storage_Module.manageNFTPools.selector] = t;
            s.selectors[ICamelot_Storage_Module.manageNitroPools.selector] = t;
            s.selectors[ICamelot_Storage_Module.manageExecutors.selector] = t;
            s.selectors[ICamelot_Storage_Module.manageReceivers.selector] = t;
            s.selectors[ICamelot_Storage_Module.getAllowedNFTPools.selector] = t;
            s.selectors[ICamelot_Storage_Module.getAllowedNitroPools.selector] = t;
            s.selectors[ICamelot_Storage_Module.getAllowedExecutors.selector] = t;
            s.selectors[ICamelot_Storage_Module.getAllowedReceivers.selector] = t;
        } else if (block.chainid == 8453) {
            address t = targets[0];
            s.selectors[ITraderV0.setVault.selector] = t;
            s.selectors[ITraderV0.approve.selector] = t;
            s.selectors[ITraderV0.custodyFunds.selector] = t;
            s.selectors[ITraderV0.returnFunds.selector] = t;
            s.selectors[ITraderV0.withdrawFees.selector] = t;
            s.selectors[ITraderV0.setFeeRates.selector] = t;
            s.selectors[ITraderV0.setFeeReceiver.selector] = t;
            s.selectors[ITraderV0.getAllowedTokens.selector] = t;
            s.selectors[ITraderV0.getAllowedSpenders.selector] = t;
            s.selectors[ITraderV0.name.selector] = t;
            s.selectors[ITraderV0.feeReceiver.selector] = t;
            s.selectors[ITraderV0.vault.selector] = t;
            s.selectors[ITraderV0.baseAsset.selector] = t;
            s.selectors[ITraderV0.performanceFeeRate.selector] = t;
            s.selectors[ITraderV0.managementFeeRate.selector] = t;
            s.selectors[ITraderV0.custodyTime.selector] = t;
            s.selectors[ITraderV0.custodiedAmount.selector] = t;
            s.selectors[ITraderV0.totalFees.selector] = t;
            s.selectors[ITraderV0.MAX_PERFORMANCE_FEE_RATE.selector] = t;
            s.selectors[ITraderV0.MAX_MANAGEMENT_FEE_RATE.selector] = t;
            initialize(t, abi.encodeWithSelector(ITraderV0.initializeTraderV0.selector, TraderV0InitializerParams({
                _name: "",
                _allowedTokens: allowedTokens,
                _allowedSpenders: allowedSpenders,
                _initialPerformanceFeeRate: 0.2e18,
                _initialManagementFeeRate: 0.02e18
            })));
            t = targets[1];
            s.selectors[ID2_Module.d2_deposit.selector] = t;
            s.selectors[ID2_Module.d2_withdraw.selector] = t;
            t = targets[2];
            s.selectors[IWETH_Module.weth_deposit.selector] = t;
            s.selectors[IWETH_Module.weth_withdraw.selector] = t;
            t = targets[3];
            s.selectors[IInch_Module.inch_swap.selector] = t;
            s.selectors[IInch_Module.inch_uniswapV3Swap.selector] = t;
            s.selectors[IInch_Module.inch_clipperSwap.selector] = t;
            t = targets[4];
            s.selectors[IAave_Module.aave_supply.selector] = t;
            s.selectors[IAave_Module.aave_withdraw.selector] = t;
            s.selectors[IAave_Module.aave_borrow.selector] = t;
            s.selectors[IAave_Module.aave_repay.selector] = t;
            s.selectors[IAave_Module.aave_setUserEMode.selector] = t;
            s.selectors[IAave_Module.aave_claimRewards.selector] = t;
            t = targets[5];
            s.selectors[IPendle_Module.pendle_deposit.selector] = t;
            s.selectors[IPendle_Module.pendle_withdraw.selector] = t;
            s.selectors[IPendle_Module.pendle_swap.selector] = t;
            s.selectors[IPendle_Module.pendle_claim.selector] = t;
            s.selectors[IPendle_Module.pendle_exit.selector] = t;
        } else if (block.chainid == 80094) {
            address t = targets[0];
            s.selectors[ITraderV0.setVault.selector] = t;
            s.selectors[ITraderV0.approve.selector] = t;
            s.selectors[ITraderV0.custodyFunds.selector] = t;
            s.selectors[ITraderV0.returnFunds.selector] = t;
            s.selectors[ITraderV0.withdrawFees.selector] = t;
            s.selectors[ITraderV0.setFeeRates.selector] = t;
            s.selectors[ITraderV0.setFeeReceiver.selector] = t;
            s.selectors[ITraderV0.getAllowedTokens.selector] = t;
            s.selectors[ITraderV0.getAllowedSpenders.selector] = t;
            s.selectors[ITraderV0.name.selector] = t;
            s.selectors[ITraderV0.feeReceiver.selector] = t;
            s.selectors[ITraderV0.vault.selector] = t;
            s.selectors[ITraderV0.baseAsset.selector] = t;
            s.selectors[ITraderV0.performanceFeeRate.selector] = t;
            s.selectors[ITraderV0.managementFeeRate.selector] = t;
            s.selectors[ITraderV0.custodyTime.selector] = t;
            s.selectors[ITraderV0.custodiedAmount.selector] = t;
            s.selectors[ITraderV0.totalFees.selector] = t;
            s.selectors[ITraderV0.MAX_PERFORMANCE_FEE_RATE.selector] = t;
            s.selectors[ITraderV0.MAX_MANAGEMENT_FEE_RATE.selector] = t;
            initialize(t, abi.encodeWithSelector(ITraderV0.initializeTraderV0.selector, TraderV0InitializerParams({
                _name: "",
                _allowedTokens: allowedTokens,
                _allowedSpenders: allowedSpenders,
                _initialPerformanceFeeRate: 0.2e18,
                _initialManagementFeeRate: 0.02e18
            })));
            t = targets[1];
            s.selectors[ID2_Module.d2_deposit.selector] = t;
            s.selectors[ID2_Module.d2_withdraw.selector] = t;
            t = targets[2];
            s.selectors[IWETH_Module.weth_deposit.selector] = t;
            s.selectors[IWETH_Module.weth_withdraw.selector] = t;
            t = targets[3];
            s.selectors[IBera_Module.bera_bgt_redeem.selector] = t;
            s.selectors[IBera_Module.bera_bgt_act.selector] = t;
            s.selectors[IBera_Module.bera_bgt_get_reward.selector] = t;
            s.selectors[IBera_Module.bera_vault_stake.selector] = t;
            s.selectors[IBera_Module.bera_vault_withdraw.selector] = t;
            s.selectors[IBera_Module.bera_vault_get_reward.selector] = t;
            s.selectors[IBera_Module.bera_infrared_stake.selector] = t;
            s.selectors[IBera_Module.bera_infrared_withdraw.selector] = t;
            s.selectors[IBera_Module.bera_infrared_get_reward.selector] = t;
            s.selectors[IBera_Module.bera_oogabooga_swap.selector] = t;
            s.selectors[IBera_Module.bera_kodiakv2_add.selector] = t;
            s.selectors[IBera_Module.bera_kodiakv2_remove.selector] = t;
            s.selectors[IBera_Module.bera_kodiakv2_swap.selector] = t;
            s.selectors[IBera_Module.bera_kodiakv3_mint.selector] = t;
            s.selectors[IBera_Module.bera_kodiakv3_increase.selector] = t;
            s.selectors[IBera_Module.bera_kodiakv3_decrease.selector] = t;
            s.selectors[IBera_Module.bera_kodiakv3_collect.selector] = t;
            s.selectors[IBera_Module.bera_kodiakv3_burn.selector] = t;
            s.selectors[IBera_Module.bera_kodiakv3_swap.selector] = t;
            s.selectors[IBera_Module.bera_kodiakv3_islands_mint.selector] = t;
            s.selectors[IBera_Module.bera_kodiakv3_islands_burn.selector] = t;
            s.selectors[IBera_Module.bera_kodiakv3_islands_deploy.selector] = t;
            t = targets[4];
            s.selectors[IDolomite_Module.dolomite_depositWei.selector] = t;
            s.selectors[IDolomite_Module.dolomite_depositWeiIntoDefaultAccount.selector] = t;
            s.selectors[IDolomite_Module.dolomite_withdrawWei.selector] = t;
            s.selectors[IDolomite_Module.dolomite_withdrawWeiFromDefaultAccount.selector] = t;
            s.selectors[IDolomite_Module.dolomite_depositPar.selector] = t;
            s.selectors[IDolomite_Module.dolomite_depositParIntoDefaultAccount.selector] = t;
            s.selectors[IDolomite_Module.dolomite_withdrawPar.selector] = t;
            s.selectors[IDolomite_Module.dolomite_withdrawParFromDefaultAccount.selector] = t;
            s.selectors[IDolomite_Module.dolomite_openBorrowPosition.selector] = t;
            s.selectors[IDolomite_Module.dolomite_closeBorrowPosition.selector] = t;
            s.selectors[IDolomite_Module.dolomite_transferBetweenAccounts.selector] = t;
            s.selectors[IDolomite_Module.dolomite_repayAllForBorrowPosition.selector] = t;
        } else if (block.chainid == 1) {
            address t = targets[0];
            s.selectors[ITraderV0.setVault.selector] = t;
            s.selectors[ITraderV0.approve.selector] = t;
            s.selectors[ITraderV0.custodyFunds.selector] = t;
            s.selectors[ITraderV0.returnFunds.selector] = t;
            s.selectors[ITraderV0.withdrawFees.selector] = t;
            s.selectors[ITraderV0.setFeeRates.selector] = t;
            s.selectors[ITraderV0.setFeeReceiver.selector] = t;
            s.selectors[ITraderV0.getAllowedTokens.selector] = t;
            s.selectors[ITraderV0.getAllowedSpenders.selector] = t;
            s.selectors[ITraderV0.name.selector] = t;
            s.selectors[ITraderV0.feeReceiver.selector] = t;
            s.selectors[ITraderV0.vault.selector] = t;
            s.selectors[ITraderV0.baseAsset.selector] = t;
            s.selectors[ITraderV0.performanceFeeRate.selector] = t;
            s.selectors[ITraderV0.managementFeeRate.selector] = t;
            s.selectors[ITraderV0.custodyTime.selector] = t;
            s.selectors[ITraderV0.custodiedAmount.selector] = t;
            s.selectors[ITraderV0.totalFees.selector] = t;
            s.selectors[ITraderV0.MAX_PERFORMANCE_FEE_RATE.selector] = t;
            s.selectors[ITraderV0.MAX_MANAGEMENT_FEE_RATE.selector] = t;
            initialize(t, abi.encodeWithSelector(ITraderV0.initializeTraderV0.selector, TraderV0InitializerParams({
                _name: "",
                _allowedTokens: allowedTokens,
                _allowedSpenders: allowedSpenders,
                _initialPerformanceFeeRate: 0.2e18,
                _initialManagementFeeRate: 0.02e18
            })));
            t = targets[1];
            s.selectors[ID2_Module.d2_deposit.selector] = t;
            s.selectors[ID2_Module.d2_withdraw.selector] = t;
            t = targets[2];
            s.selectors[IWETH_Module.weth_deposit.selector] = t;
            s.selectors[IWETH_Module.weth_withdraw.selector] = t;
            t = targets[3];
            s.selectors[IInch_Module.inch_swap.selector] = t;
            s.selectors[IInch_Module.inch_uniswapV3Swap.selector] = t;
            s.selectors[IInch_Module.inch_clipperSwap.selector] = t;
            t = targets[4];
            s.selectors[IAave_Module.aave_supply.selector] = t;
            s.selectors[IAave_Module.aave_withdraw.selector] = t;
            s.selectors[IAave_Module.aave_borrow.selector] = t;
            s.selectors[IAave_Module.aave_repay.selector] = t;
            s.selectors[IAave_Module.aave_setUserEMode.selector] = t;
            s.selectors[IAave_Module.aave_claimRewards.selector] = t;
            t = targets[5];
            s.selectors[IPendle_Module.pendle_deposit.selector] = t;
            s.selectors[IPendle_Module.pendle_withdraw.selector] = t;
            s.selectors[IPendle_Module.pendle_swap.selector] = t;
            s.selectors[IPendle_Module.pendle_claim.selector] = t;
            s.selectors[IPendle_Module.pendle_exit.selector] = t;
        } else if (block.chainid == 999 || block.chainid == 998) {
            address t = targets[0];
            s.selectors[ITraderV0.setVault.selector] = t;
            s.selectors[ITraderV0.approve.selector] = t;
            s.selectors[ITraderV0.custodyFunds.selector] = t;
            s.selectors[ITraderV0.returnFunds.selector] = t;
            s.selectors[ITraderV0.withdrawFees.selector] = t;
            s.selectors[ITraderV0.setFeeRates.selector] = t;
            s.selectors[ITraderV0.setFeeReceiver.selector] = t;
            s.selectors[ITraderV0.getAllowedTokens.selector] = t;
            s.selectors[ITraderV0.getAllowedSpenders.selector] = t;
            s.selectors[ITraderV0.name.selector] = t;
            s.selectors[ITraderV0.feeReceiver.selector] = t;
            s.selectors[ITraderV0.vault.selector] = t;
            s.selectors[ITraderV0.baseAsset.selector] = t;
            s.selectors[ITraderV0.performanceFeeRate.selector] = t;
            s.selectors[ITraderV0.managementFeeRate.selector] = t;
            s.selectors[ITraderV0.custodyTime.selector] = t;
            s.selectors[ITraderV0.custodiedAmount.selector] = t;
            s.selectors[ITraderV0.totalFees.selector] = t;
            s.selectors[ITraderV0.MAX_PERFORMANCE_FEE_RATE.selector] = t;
            s.selectors[ITraderV0.MAX_MANAGEMENT_FEE_RATE.selector] = t;
            initialize(t, abi.encodeWithSelector(ITraderV0.initializeTraderV0.selector, TraderV0InitializerParams({
                _name: "",
                _allowedTokens: allowedTokens,
                _allowedSpenders: allowedSpenders,
                _initialPerformanceFeeRate: 0.2e18,
                _initialManagementFeeRate: 0.02e18
            })));
            t = targets[1];
            s.selectors[ID2_Module.d2_deposit.selector] = t;
            s.selectors[ID2_Module.d2_withdraw.selector] = t;
            t = targets[2];
            s.selectors[IHype_Module.hyper_sendOrder.selector] = t;
            s.selectors[IHype_Module.hyper_cancelOrderOid.selector] = t;
            s.selectors[IHype_Module.hyper_cancelOrderCloid.selector] = t;
            s.selectors[IHype_Module.hyper_depositSpot.selector] = t;
            s.selectors[IHype_Module.hyper_sendSpot.selector] = t;
            s.selectors[IHype_Module.hyper_sendUsdClassTransfer.selector] = t;
            s.selectors[IHype_Module.hyper_addApiWallet.selector] = t;
            t = targets[3];
            s.selectors[IHyperbeat_Module.hyperbeat_deposit.selector] = t;
            s.selectors[IHyperbeat_Module.hyperbeat_withdraw.selector] = t;
            s.selectors[IHyperbeat_Module.hyperbeat_depositInstant.selector] = t;
            s.selectors[IHyperbeat_Module.hyperbeat_depositRequest.selector] = t;
            s.selectors[IHyperbeat_Module.hyperbeat_redeemInstant.selector] = t;
            s.selectors[IHyperbeat_Module.hyperbeat_redeemRequest.selector] = t;
            s.selectors[IHyperbeat_Module.hyperbeat_redeemFiatRequest.selector] = t;
            t = targets[4];
            s.selectors[IBera_Module.bera_oogabooga_swap.selector] = t;
            t = targets[5];
            s.selectors[IPendle_Module.pendle_deposit.selector] = t;
            s.selectors[IPendle_Module.pendle_withdraw.selector] = t;
            s.selectors[IPendle_Module.pendle_swap.selector] = t;
            s.selectors[IPendle_Module.pendle_claim.selector] = t;
            s.selectors[IPendle_Module.pendle_exit.selector] = t;
            t = targets[6];
            s.selectors[IHypurrfi_Module.hypurrfi_supply.selector] = t;
            s.selectors[IHypurrfi_Module.hypurrfi_withdraw.selector] = t;
            s.selectors[IHypurrfi_Module.hypurrfi_borrow.selector] = t;
            s.selectors[IHypurrfi_Module.hypurrfi_repay.selector] = t;
            s.selectors[IHypurrfi_Module.hypurrfi_setUserEMode.selector] = t;
        } else if (block.chainid == 1116) {
            address t = targets[0];
            s.selectors[ITraderV0.setVault.selector] = t;
            s.selectors[ITraderV0.approve.selector] = t;
            s.selectors[ITraderV0.custodyFunds.selector] = t;
            s.selectors[ITraderV0.returnFunds.selector] = t;
            s.selectors[ITraderV0.withdrawFees.selector] = t;
            s.selectors[ITraderV0.setFeeRates.selector] = t;
            s.selectors[ITraderV0.setFeeReceiver.selector] = t;
            s.selectors[ITraderV0.getAllowedTokens.selector] = t;
            s.selectors[ITraderV0.getAllowedSpenders.selector] = t;
            s.selectors[ITraderV0.name.selector] = t;
            s.selectors[ITraderV0.feeReceiver.selector] = t;
            s.selectors[ITraderV0.vault.selector] = t;
            s.selectors[ITraderV0.baseAsset.selector] = t;
            s.selectors[ITraderV0.performanceFeeRate.selector] = t;
            s.selectors[ITraderV0.managementFeeRate.selector] = t;
            s.selectors[ITraderV0.custodyTime.selector] = t;
            s.selectors[ITraderV0.custodiedAmount.selector] = t;
            s.selectors[ITraderV0.totalFees.selector] = t;
            s.selectors[ITraderV0.MAX_PERFORMANCE_FEE_RATE.selector] = t;
            s.selectors[ITraderV0.MAX_MANAGEMENT_FEE_RATE.selector] = t;
            initialize(t, abi.encodeWithSelector(ITraderV0.initializeTraderV0.selector, TraderV0InitializerParams({
                _name: "",
                _allowedTokens: allowedTokens,
                _allowedSpenders: allowedSpenders,
                _initialPerformanceFeeRate: 0.2e18,
                _initialManagementFeeRate: 0.02e18
            })));
            t = targets[1];
            s.selectors[ID2_Module.d2_deposit.selector] = t;
            s.selectors[ID2_Module.d2_withdraw.selector] = t;
        }
    }

    function initialize(address target, bytes memory data) internal {
        (bool success,) = target.delegatecall(data);
        if (!success) {
            assembly {
                returndatacopy(0, 0, returndatasize())
                revert(0, returndatasize())
            }
        }
    }

    function setFrozen() public onlyRole(0x00) {
        State storage s;
        bytes32 slot = STATE_SLOT;
        assembly { s.slot := slot }
        s.frozen = true;
    }

    function setSelector(bytes4 selector, address target) public onlyRole(0x00) {
        State storage s;
        bytes32 slot = STATE_SLOT;
        assembly { s.slot := slot }
        require(!s.frozen, "frozen");
        s.selectors[selector] = target;
    }

    function claim() public {
        State storage s;
        bytes32 slot = STATE_SLOT;
        assembly { s.slot := slot }
        require(!s.claimed, "claimed");
        s.claimed = true;
        _grantRole(0x00, msg.sender);
        _grantRole(keccak256("EXECUTOR_ROLE"), msg.sender);
    }

    fallback() external payable {
        State storage s;
        bytes32 slot = STATE_SLOT;
        assembly { s.slot := slot }
        address target = s.selectors[msg.sig];
        if (target == address(0)) {
            revert("unknown signature");
        }
        assembly {
            calldatacopy(0, 0, calldatasize())
            let result := delegatecall(gas(), target, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            switch result
            case 0 { revert(0, returndatasize()) }
            default { return(0, returndatasize()) }
        }
    }

    receive() external payable {}
}
"
    },
    "node_modules/@solidstate/contracts/access/access_control/AccessControl.sol": {
      "content": "// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import { IAccessControl } from './IAccessControl.sol';
import { AccessControlInternal } from './AccessControlInternal.sol';

/**
 * @title Role-based access control system
 * @dev derived from https://github.com/OpenZeppelin/openzeppelin-contracts (MIT license)
 */
abstract contract AccessControl is IAccessControl, AccessControlInternal {
    /**
     * @inheritdoc IAccessControl
     */
    function grantRole(
        bytes32 role,
        address account
    ) external onlyRole(_getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @inheritdoc IAccessControl
     */
    function hasRole(
        bytes32 role,
        address account
    ) external view returns (bool) {
        return _hasRole(role, account);
    }

    /**
     * @inheritdoc IAccessControl
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32) {
        return _getRoleAdmin(role);
    }

    /**
     * @inheritdoc IAccessControl
     */
    function revokeRole(
        bytes32 role,
        address account
    ) external onlyRole(_getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @inheritdoc IAccessControl
     */
    function renounceRole(bytes32 role) external {
        _renounceRole(role);
    }
}
"
    },
    "contracts/modules/Trader.sol": {
      "content": "// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.24;

// contracts/interfaces/IVault.sol

struct Epoch {
    uint256 fundingStart;
    uint256 epochStart;
    uint256 epochEnd;
}

interface IVault {
    function custodyFunds() external returns (uint256);

    function returnFunds(uint256 _amount) external;
    function emergencyEndEpoch(uint256 _amount) external;

    function asset() external returns (address);

    function getCurrentEpochInfo() external view returns (Epoch memory);
}

// contracts/trader/modules/dsq/DSQ_Common_Roles.sol

/**
 * @title   DSquared Common Roles
 * @notice  Access control roles available to all strategy contracts
 * @author  HessianX
 * @custom:developer    BowTiedPickle
 * @custom:developer    BowTiedOriole
 */
abstract contract DSQ_Common_Roles {
    bytes32 public constant EXECUTOR_ROLE = keccak256("EXECUTOR_ROLE");
    bytes32 internal constant DEFAULT_ADMIN_ROLE = 0x00;
}

// node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol

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

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

// node_modules/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol

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

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// node_modules/@openzeppelin/contracts/utils/Address.sol

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// node_modules/@openzeppelin/contracts/utils/structs/EnumerableSet.sol

// OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```solidity
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet_0 {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

// node_modules/@solidstate/contracts/access/access_control/IAccessControlInternal.sol

/**
 * @title Partial AccessControl interface needed by internal functions
 */
interface IAccessControlInternal {
    event RoleAdminChanged(
        bytes32 indexed role,
        bytes32 indexed previousAdminRole,
        bytes32 indexed newAdminRole
    );

    event RoleGranted(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    event RoleRevoked(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );
}

// node_modules/@solidstate/contracts/data/EnumerableSet.sol

/**
 * @title Set implementation with enumeration functions
 * @dev derived from https://github.com/OpenZeppelin/openzeppelin-contracts (MIT license)
 */
library EnumerableSet_1 {
    error EnumerableSet__IndexOutOfBounds();

    struct Set {
        bytes32[] _values;
        // 1-indexed to allow 0 to signify nonexistence
        mapping(bytes32 => uint256) _indexes;
    }

    struct Bytes32Set {
        Set _inner;
    }

    struct AddressSet {
        Set _inner;
    }

    struct UintSet {
        Set _inner;
    }

    function at(
        Bytes32Set storage set,
        uint256 index
    ) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    function at(
        AddressSet storage set,
        uint256 index
    ) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    function at(
        UintSet storage set,
        uint256 index
    ) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    function contains(
        Bytes32Set storage set,
        bytes32 value
    ) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    function contains(
        AddressSet storage set,
        address value
    ) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    function contains(
        UintSet storage set,
        uint256 value
    ) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    function indexOf(
        Bytes32Set storage set,
        bytes32 value
    ) internal view returns (uint256) {
        return _indexOf(set._inner, value);
    }

    function indexOf(
        AddressSet storage set,
        address value
    ) internal view returns (uint256) {
        return _indexOf(set._inner, bytes32(uint256(uint160(value))));
    }

    function indexOf(
        UintSet storage set,
        uint256 value
    ) internal view returns (uint256) {
        return _indexOf(set._inner, bytes32(value));
    }

    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    function add(
        Bytes32Set storage set,
        bytes32 value
    ) internal returns (bool) {
        return _add(set._inner, value);
    }

    function add(
        AddressSet storage set,
        address value
    ) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    function remove(
        Bytes32Set storage set,
        bytes32 value
    ) internal returns (bool) {
        return _remove(set._inner, value);
    }

    function remove(
        AddressSet storage set,
        address value
    ) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    function remove(
        UintSet storage set,
        uint256 value
    ) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    function toArray(
        Bytes32Set storage set
    ) internal view returns (bytes32[] memory) {
        return set._inner._values;
    }

    function toArray(
        AddressSet storage set
    ) internal view returns (address[] memory) {
        bytes32[] storage values = set._inner._values;
        address[] storage array;

        assembly {
            array.slot := values.slot
        }

        return array;
    }

    function toArray(
        UintSet storage set
    ) internal view returns (uint256[] memory) {
        bytes32[] storage values = set._inner._values;
        uint256[] storage array;

        assembly {
            array.slot := values.slot
        }

        return array;
    }

    function _at(
        Set storage set,
        uint256 index
    ) private view returns (bytes32) {
        if (index >= set._values.length)
            revert EnumerableSet__IndexOutOfBounds();
        return set._values[index];
    }

    function _contains(
        Set storage set,
        bytes32 value
    ) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    function _indexOf(
        Set storage set,
        bytes32 value
    ) private view returns (uint256) {
        unchecked {
            return set._indexes[value] - 1;
        }
    }

    function _length(Set storage set) private view returns (uint256) {
      

Tags:
ERC20, Multisig, Mintable, Burnable, Swap, Liquidity, Staking, Upgradeable, Multi-Signature, Factory, Oracle|addr:0x3b565eccb9c3efd124d57d66b9b2aa7177803675|verified:true|block:23429215|tx:0xc14f22efed6a936e1e2c0f7248c9fcc5a7902325fc54f2be3c92fead1781f5d4|first_check:1758729919

Submitted on: 2025-09-24 18:05:23

Comments

Log in to comment.

No comments yet.