{
    "Function": "slitherConstructorConstantVariables",
    "File": "src/libraries/AddressLib.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "library AddressLib {\n    uint256 private constant _LOW_160_BIT_MASK = (1 << 160) - 1;\n\n    /**\n     * @notice Returns the address representation of a uint256.\n     * @param a The uint256 value to convert to an address.\n     * @return The address representation of the provided uint256 value.\n     */\n    function get(Address a) internal pure returns (address) {\n        return address(uint160(Address.unwrap(a) & _LOW_160_BIT_MASK));\n    }\n\n    /**\n     * @notice Checks if a given flag is set for the provided address.\n     * @param a The address to check for the flag.\n     * @param flag The flag to check for in the provided address.\n     * @return True if the provided flag is set in the address, false otherwise.\n     */\n    function getFlag(Address a, uint256 flag) internal pure returns (bool) {\n        return (Address.unwrap(a) & flag) != 0;\n    }\n\n    /**\n     * @notice Returns a uint32 value stored at a specific bit offset in the provided address.\n     * @param a The address containing the uint32 value.\n     * @param offset The bit offset at which the uint32 value is stored.\n     * @return The uint32 value stored in the address at the specified bit offset.\n     */\n    function getUint32(Address a, uint256 offset) internal pure returns (uint32) {\n        return uint32(Address.unwrap(a) >> offset);\n    }\n\n    /**\n     * @notice Returns a uint64 value stored at a specific bit offset in the provided address.\n     * @param a The address containing the uint64 value.\n     * @param offset The bit offset at which the uint64 value is stored.\n     * @return The uint64 value stored in the address at the specified bit offset.\n     */\n    function getUint64(Address a, uint256 offset) internal pure returns (uint64) {\n        return uint64(Address.unwrap(a) >> offset);\n    }\n}"
}