{
    "Function": "uintMul",
    "File": "contracts/staking/libs/LibFixedMath.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert(string)",
        "_mul"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function uintMul(int256 f, uint256 u) internal pure returns (uint256) {\n        if (int256(u) < int256(0)) {\n            revert(\"out-of-bounds\");\n        }\n        int256 c = _mul(f, int256(u));\n        if (c <= 0) {\n            return 0;\n        }\n        return uint256(uint256(c) >> 127);\n    }"
}