{
    "Function": "withdrawAll",
    "File": "contracts/v3/strategies/BaseStrategy.sol",
    "Parent Contracts": [
        "contracts/v3/interfaces/IStrategy.sol"
    ],
    "High-Level Calls": [
        "SafeERC20",
        "IERC20"
    ],
    "Internal Calls": [
        "_withdrawAll",
        "onlyController"
    ],
    "Library Calls": [
        "safeTransfer"
    ],
    "Low-Level Calls": [],
    "Code": "function withdrawAll()\n        external\n        override\n        onlyController\n    {\n        _withdrawAll();\n\n        uint256 _balance = IERC20(want).balanceOf(address(this));\n\n        IERC20(want).safeTransfer(controller, _balance);\n    }"
}