{
    "Function": "_div",
    "File": "contracts/staking/libs/LibFixedMath.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert(string)",
        "revert(string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _div(int256 a, int256 b) private pure returns (int256 c) {\n        if (b == 0) {\n            revert(\"overflow\");\n        }\n        if (a == MIN_FIXED_VAL && b == -1) {\n            revert(\"overflow\");\n        }\n        c = a / b;\n    }"
}