        [109194] MultiStrategyVault::removeStrategy(0) [delegatecall]
...
            [Revert] panic: division or modulo by zero (0x12)
         [Revert] panic: division or modulo by zero (0x12)    
    function removeStrategy(
        uint256 index
    ) external onlyRole(VAULT_MANAGER_ROLE) {
        // Validate the index to ensure it is within bounds
        if (index >= _strategies.length) revert InvalidStrategyIndex(index);

        // Retrieve the total assets managed by the strategy to be removed
        uint256 strategyAssets = _strategies[index].totalAssets();

        // Update the total weight and mark the weight of the removed strategy as zero
        _totalWeight -= _weights[index];
        _weights[index] = 0;

        IStrategy cache_strategy = _strategies[index];

        // Move the last strategy to the index of the removed strategy to maintain array integrity
        uint256 lastIndex = _strategies.length - 1;
        if (index < lastIndex) {
            _strategies[index] = _strategies[lastIndex];
            _weights[index] = _weights[lastIndex];
        }

        emit RemoveStrategy(address(_strategies[lastIndex]));
        // Remove the last strategy and weight from the arrays
        _strategies.pop();
        _weights.pop();

        // If the strategy has assets, undeploy them and allocate accordingly
        if (strategyAssets > 0) {
            IStrategy(cache_strategy).undeploy(strategyAssets);
            _allocateAssets(strategyAssets);
        }
    }3
