{
    "Function": "divWadDown",
    "File": "contracts/lib/solmate/src/utils/FixedPointMathLib.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "mulDivDown"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function divWadDown(uint256 x, uint256 y) internal pure returns (uint256) {\n        return mulDivDown(x, WAD, y); // Equivalent to (x * WAD) / y rounded down.\n    }"
}