{
    "Function": "withdrawFor",
    "File": "contracts/mixins/SendValueWithFallbackWithdraw.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol",
        "node_modules/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"
    ],
    "High-Level Calls": [
        "AddressUpgradeable"
    ],
    "Internal Calls": [
        "nonReentrant",
        "revert SendValueWithFallbackWithdraw_No_Funds_Available()"
    ],
    "Library Calls": [
        "sendValue"
    ],
    "Low-Level Calls": [],
    "Code": "function withdrawFor(address payable user) public nonReentrant {\n    uint256 amount = pendingWithdrawals[user];\n    if (amount == 0) {\n      revert SendValueWithFallbackWithdraw_No_Funds_Available();\n    }\n    pendingWithdrawals[user] = 0;\n    user.sendValue(amount);\n    emit Withdrawal(user, amount);\n  }"
}