{
    "Function": "to32",
    "File": "contracts/AuraMath.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function to32(uint256 a) internal pure returns (uint32 c) {\n        require(a <= type(uint32).max, \"AuraMath: uint32 Overflow\");\n        c = uint32(a);\n    }"
}