{
    "Function": "initialize",
    "File": "contracts/abstracts/OwnableProxyDelegation.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [
        "StorageSlot"
    ],
    "Internal Calls": [
        "require(bool,string)",
        "require(bool,string)",
        "require(bool,string)",
        "_setOwner"
    ],
    "Library Calls": [
        "getAddressSlot"
    ],
    "Low-Level Calls": [],
    "Code": "function initialize(address ownerAddr) external {\n        require(ownerAddr != address(0), \"OPD: INVALID_ADDRESS\");\n        require(!initialized, \"OPD: INITIALIZED\");\n        require(StorageSlot.getAddressSlot(_ADMIN_SLOT).value == msg.sender, \"OPD: FORBIDDEN\");\n\n        _setOwner(ownerAddr);\n\n        initialized = true;\n    }"
}