{
    "Function": "_checkOwner",
    "File": "src/SmartWallet/MultiOwnable.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert Unauthorized()",
        "isOwnerAddress"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _checkOwner() internal view virtual {\n        if (isOwnerAddress(msg.sender) || (msg.sender == address(this))) {\n            return;\n        }\n\n        revert Unauthorized();\n    }"
}