{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/mocks/MockLensHubV2Storage.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "contract MockLensHubV2Storage {\n    bytes32 internal constant CREATE_PROFILE_WITH_SIG_TYPEHASH =\n        0x9ac3269d9abd6f8c5e850e07f21b199079e8a5cc4a55466d8c96ab0c4a5be403;\n    // keccak256(\n    // 'CreateProfileWithSig(string handle,string uri,address followModule,bytes followModuleData,uint256 nonce,uint256 deadline)'\n    // );\n    bytes32 internal constant SET_FOLLOW_MODULE_WITH_SIG_TYPEHASH =\n        0x6f3f6455a608af1cc57ef3e5c0a49deeb88bba264ec8865b798ff07358859d4b;\n    // keccak256(\n    // 'SetFollowModuleWithSig(uint256 profileId,address followModule,bytes followModuleData,uint256 nonce,uint256 deadline)'\n    // );\n    bytes32 internal constant SET_DISPATCHER_WITH_SIG_TYPEHASH =\n        0x77ba3e9f5fa75343bbad1241fb539a0064de97694b47d463d1eb5c54aba11f0f;\n    // keccak256(\n    // 'SetDispatcherWithSig(uint256 profileId,address dispatcher,uint256 nonce,uint256 deadline)'\n    // );\n    bytes32 internal constant SET_PROFILE_IMAGE_URI_WITH_SIG_TYPEHASH =\n        0x5b9860bd835e648945b22d053515bc1f53b7d9fab4b23b1b49db15722e945d14;\n    // keccak256(\n    // 'SetProfileImageURIWithSig(uint256 profileId,string imageURI,uint256 nonce,uint256 deadline)'\n    // );\n    bytes32 internal constant POST_WITH_SIG_TYPEHASH =\n        0xfb8f057542e7551386ead0b891a45f102af78c47f8cc58b4a919c7cfeccd0e1e;\n    // keccak256(\n    // 'PostWithSig(uint256 profileId,string contentURI,address collectModule,bytes collectModuleData,address referenceModule,bytes referenceModuleData,uint256 nonce,uint256 deadline)'\n    // );\n    bytes32 internal constant COMMENT_WITH_SIG_TYPEHASH =\n        0xb30910150df56294e05b2d03e181803697a2b935abb1b9bdddde9310f618fe9b;\n    // keccak256(\n    // 'CommentWithSig(uint256 profileId,string contentURI,uint256 profileIdPointed,uint256 pubIdPointed,address collectModule,bytes collectModuleData,address referenceModule,bytes referenceModuleData,uint256 nonce,uint256 deadline)'\n    // );\n    bytes32 internal constant MIRROR_WITH_SIG_TYPEHASH =\n        0x64f4578fc098f96a2450fbe601cb8c5318ebeb2ff72d2031a36be1ff6932d5ee;\n    // keccak256(\n    // 'MirrorWithSig(uint256 profileId,uint256 profileIdPointed,uint256 pubIdPointed,address referenceModule,bytes referenceModuleData,uint256 nonce,uint256 deadline)'\n    // );\n    bytes32 internal constant FOLLOW_WITH_SIG_TYPEHASH =\n        0xfb6b7f1cd1b38daf3822aff0abbe78124db5d62a4748bcff007c15ccd6d30bc5;\n    // keccak256(\n    // 'FollowWithSig(uint256[] profileIds,bytes[] datas,uint256 nonce,uint256 deadline)'\n    // );\n    bytes32 internal constant COLLECT_WITH_SIG_TYPEHASH =\n        0x7f9b4ea1fc678b4fda1611ac5cbd28f339e235d89b1540635e9b2e0223a3c101;\n    // keccak256(\n    // 'CollectWithSig(uint256 profileId,uint256 pubId,bytes data,uint256 nonce,uint256 deadline)'\n    // );\n\n    mapping(address => bool) internal _followModuleWhitelisted;\n    mapping(address => bool) internal _collectModuleWhitelisted;\n    mapping(address => bool) internal _referenceModuleWhitelisted;\n\n    mapping(uint256 => address) internal _dispatcherByProfile;\n    mapping(bytes32 => uint256) internal _profileIdByHandleHash;\n    mapping(uint256 => DataTypes.ProfileStruct) internal _profileById;\n    mapping(uint256 => mapping(uint256 => DataTypes.PublicationStruct)) internal _pubByIdByProfile;\n\n    uint256 internal _profileCounter;\n    address internal _governance;\n    address internal _emergencyAdmin;\n    uint256 internal _additionalValue;\n}"
}