{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/abstracts/OwnableProxyDelegation.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "keccak256(bytes)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "abstract contract OwnableProxyDelegation is Context {\n    /// @dev The contract owner\n    address private _owner;\n\n    /// @dev Storage slot with the proxy admin (see TransparentUpgradeableProxy from OZ)\n    bytes32 internal constant _ADMIN_SLOT = bytes32(uint256(keccak256(\"eip1967.proxy.admin\")) - 1);\n\n    /// @dev True if the owner is setted\n    bool public initialized;\n\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n    /// @notice Initialize the owner (by the proxy admin)\n    /// @param ownerAddr The owner address\n    function initialize(address ownerAddr) external {\n        require(!initialized, \"OFP: INITIALIZED\");\n        require(StorageSlot.getAddressSlot(_ADMIN_SLOT).value == msg.sender, \"OFP: FORBIDDEN\");\n\n        _setOwner(ownerAddr);\n\n        initialized = true;\n    }\n\n    /// @dev Returns the address of the current owner.\n    function owner() public view virtual returns (address) {\n        return _owner;\n    }\n\n    /// @dev Throws if called by any account other than the owner.\n    modifier onlyOwner() {\n        require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n        _;\n    }\n\n    /// @dev Leaves the contract without owner. It will not be possible to call\n    /// `onlyOwner` functions anymore. Can only be called by the current owner.\n    ///\n    /// NOTE: Renouncing ownership will leave the contract without an owner,\n    /// thereby removing any functionality that is only available to the owner.\n    function renounceOwnership() public virtual onlyOwner {\n        _setOwner(address(0));\n    }\n\n    /// @dev Transfers ownership of the contract to a new account (`newOwner`).\n    /// Can only be called by the current owner.\n    function transferOwnership(address newOwner) public virtual onlyOwner {\n        require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n        _setOwner(newOwner);\n    }\n\n    /// @dev Update the owner address\n    /// @param newOwner The new owner address\n    function _setOwner(address newOwner) private {\n        address oldOwner = _owner;\n        _owner = newOwner;\n        emit OwnershipTransferred(oldOwner, newOwner);\n    }\n}"
}