{
    "Function": "toUint128",
    "File": "contracts/libraries/Math.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert CastingError()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function toUint128(uint256 toDowncast) internal pure returns (uint128 downcastedInt) {\n        if ((downcastedInt = uint128(toDowncast)) != toDowncast) revert Errors.CastingError();\n    }"
}